Skip to content

Commit 6c33300

Browse files
committed
QPython alpha version is released
1 parent 9f84aff commit 6c33300

File tree

1,152 files changed

+127686
-63956
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,152 files changed

+127686
-63956
lines changed

.classpath

Lines changed: 0 additions & 9 deletions
This file was deleted.

.gitignore

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
bin/
2-
gen/
3-
obj/
4-
.classpath
5-
.project
6-
.settings/
7-
examples/widget/assets/
8-
9-
# Generated by tools/update.sh
10-
build.xml
11-
local.properties
1+
*.iml
2+
.gradle
3+
build
4+
.idea
5+
gradle

.project

Lines changed: 0 additions & 33 deletions
This file was deleted.

AndroidManifest.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
QSL4A
2-
=====
3-
4-
SL4A Library in QPython
1+
#qpy2

assets/need_network.html

Lines changed: 0 additions & 7 deletions
This file was deleted.

assets/splash.html

Lines changed: 0 additions & 4 deletions
This file was deleted.

build.gradle

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2+
3+
//task wrapper(type: Wrapper) {
4+
// ersion = '2.2.1'
5+
// gradleV
6+
// distributionUrl = 'https://services.gradle.org/distributions/gradle-2.2.1-all.zip'
7+
//}
8+
9+
buildscript {
10+
repositories {
11+
jcenter()
12+
mavenCentral()
13+
}
14+
dependencies {
15+
classpath 'com.android.tools.build:gradle:2.3.0'
16+
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
17+
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.0'
18+
classpath "io.realm:realm-gradle-plugin:1.1.1"
19+
classpath 'com.jakewharton:butterknife-gradle-plugin:8.5.1'
20+
classpath "io.realm:realm-gradle-plugin:3.0.0"
21+
}
22+
}
23+
24+
allprojects {
25+
repositories {
26+
jcenter()
27+
maven { url "https://jitpack.io" }
28+
maven { url 'https://dl.bintray.com/azeesoft/maven' }
29+
}
30+
}
31+
32+
task clean(type: Delete) {
33+
delete rootProject.buildDir
34+
}
35+
36+
37+
subprojects {
38+
def androidHome
39+
40+
if ((androidHome = System.env.'ANDROID_HOME')
41+
&& (androidHome = androidHome as File).exists()
42+
&& androidHome.canWrite())
43+
apply plugin: 'android-sdk-manager'
44+
}

0 commit comments

Comments
 (0)