build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. apply plugin: 'com.android.application'
  2. configurations.all {
  3. resolutionStrategy.force 'com.android.support:support-annotations:27.1.1'
  4. }
  5. android {
  6. compileSdkVersion 30
  7. signingConfigs {
  8. release {
  9. storeFile file('LiZiHelper.jks')
  10. storePassword 'dQxdTrha'
  11. keyAlias 'key0'
  12. keyPassword 'dQxdTrha'
  13. }
  14. }
  15. defaultConfig {
  16. applicationId "me.yoqi.app.lizihelper"
  17. minSdkVersion 16
  18. targetSdkVersion 30
  19. versionCode 1
  20. versionName "1.0"
  21. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  22. }
  23. buildTypes {
  24. release {
  25. minifyEnabled true
  26. shrinkResources true
  27. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  28. }
  29. }
  30. }
  31. dependencies {
  32. implementation fileTree(dir: 'libs', include: ['*.jar'])
  33. implementation 'com.android.support:appcompat-v7:26.1.0'
  34. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  35. testImplementation 'junit:junit:4.12'
  36. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  37. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  38. }