build.gradle 609 B

123456789101112131415161718192021222324252627282930
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 30
  4. buildToolsVersion '31.0.0-rc3'
  5. defaultConfig {
  6. applicationId "com.shanp.library"
  7. minSdkVersion 14
  8. targetSdkVersion 30
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. debug{
  18. }
  19. }
  20. }
  21. dependencies {
  22. implementation fileTree(dir: 'libs', include: ['*.jar'])
  23. testImplementation 'junit:junit:4.12'
  24. }