1234567891011121314151617181920212223242526 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- apply from: 'script.gradle', to: buildscript
- }
- allprojects {
- repositories {
- // maven {
- // url 'http://maven.oschina.net/content/groups/public/'
- // }
- jcenter()
- }
- }
- ext {
- compileSdkVersion = 25
- buildToolsVersion = '25.0.3'
- minSdkVersion = 14
- targetSdkVersion = 25
- versionCode = 36
- versionName = '4.0.0'
- targetCompatibility = 1.7
- sourceCompatibility = 1.7
- }
|