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