build.gradle 1.0 KB

12345678910111213141516171819202122232425262728293031
  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. defaultConfig {
  8. applicationId "me.yoqi.app.lizihelper"
  9. minSdkVersion 16
  10. targetSdkVersion 30
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. }
  22. dependencies {
  23. implementation fileTree(dir: 'libs', include: ['*.jar'])
  24. implementation 'com.android.support:appcompat-v7:26.1.0'
  25. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  26. testImplementation 'junit:junit:4.12'
  27. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  28. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  29. }