build.gradle 435 B

12345678910111213141516171819202122
  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. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  13. }
  14. }
  15. }
  16. dependencies {
  17. compile 'com.android.support:appcompat-v7:24.2.1'
  18. }