43 lines
1017 B
Groovy
43 lines
1017 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral() // add repository
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.3.2'
|
|
classpath 'com.novoda:bintray-release:0.3.4'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
ext {
|
|
minSdkVersion = 15
|
|
targetSdkVersion = 25
|
|
compileSdkVersion = 25
|
|
buildToolsVersion = "25.0.2"
|
|
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
|
|
targetCompatibilityVersion = JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
ext.deps = [
|
|
//Junit
|
|
junit : 'junit:junit:4.12',
|
|
//v
|
|
appcompat_v7: 'com.android.support:appcompat-v7:25.3.1'
|
|
]
|