build.gradle 492 B

1234567891011121314151617181920212223
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 24
  4. buildToolsVersion '25.0.0'
  5. defaultConfig {
  6. minSdkVersion 9
  7. targetSdkVersion 24
  8. versionCode 8
  9. versionName "1.2.3"
  10. }
  11. compileOptions {
  12. sourceCompatibility JavaVersion.VERSION_1_7
  13. targetCompatibility JavaVersion.VERSION_1_7
  14. }
  15. }
  16. dependencies {
  17. compile fileTree(include: ['*.jar'], dir: 'libs')
  18. compile 'com.android.support:appcompat-v7:24.2.1'
  19. }