build.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 false
  26. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  27. }
  28. }
  29. }
  30. dependencies {
  31. implementation fileTree(dir: 'libs', include: ['*.jar'])
  32. implementation 'com.android.support:appcompat-v7:26.1.0'
  33. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  34. testImplementation 'junit:junit:4.12'
  35. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  36. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  37. }