build.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 33
  4. signingConfigs {
  5. release {
  6. storeFile file('YellowPages.jks')
  7. storePassword 'MrjAaNt5'
  8. keyAlias 'key0'
  9. keyPassword 'MrjAaNt5'
  10. }
  11. }
  12. defaultConfig {
  13. applicationId "me.yoqi.android.yellowpage"
  14. minSdkVersion 16
  15. targetSdkVersion 33
  16. versionCode 10001
  17. versionName "1.0.1"
  18. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  19. }
  20. buildTypes {
  21. release {
  22. minifyEnabled true
  23. shrinkResources true
  24. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  25. }
  26. }
  27. }
  28. dependencies {
  29. implementation fileTree(dir: "libs", include: ["*.jar"])
  30. implementation 'androidx.appcompat:appcompat:1.6.1'
  31. implementation 'com.google.android.material:material:1.9.0'
  32. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  33. testImplementation 'junit:junit:4.13.2'
  34. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  35. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  36. }