build.gradle 402 B

12345678910111213141516171819202122
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 27
  4. defaultConfig {
  5. minSdkVersion 14
  6. targetSdkVersion 27
  7. }
  8. buildTypes {
  9. release {
  10. minifyEnabled false
  11. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  12. }
  13. }
  14. }
  15. dependencies {
  16. compile 'com.android.support:support-v4:27.+'
  17. }