You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
389 B
22 lines
389 B
buildscript { |
|
repositories { |
|
jcenter() |
|
} |
|
dependencies { |
|
classpath 'com.android.tools.build:gradle:2.3.2' |
|
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.3' |
|
} |
|
} |
|
|
|
allprojects { |
|
repositories { |
|
jcenter() |
|
mavenCentral() |
|
} |
|
} |
|
|
|
ext { |
|
minSdkVersion = 14 |
|
targetSdkVersion = 25 |
|
buildToolsVersion = '25.0.2' |
|
}
|
|
|