build.gradle 566 B

1234567891011121314151617181920212223242526
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. apply from: 'script.gradle', to: buildscript
  4. }
  5. allprojects {
  6. repositories {
  7. // maven {
  8. // url 'http://maven.oschina.net/content/groups/public/'
  9. // }
  10. jcenter()
  11. }
  12. }
  13. ext {
  14. compileSdkVersion = 25
  15. buildToolsVersion = '25.0.3'
  16. minSdkVersion = 14
  17. targetSdkVersion = 25
  18. versionCode = 36
  19. versionName = '4.0.0'
  20. targetCompatibility = 1.7
  21. sourceCompatibility = 1.7
  22. }