build.gradle 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdkVersion 33
  6. signingConfigs {
  7. release {
  8. storeFile file('DeleteAllContacts.jks')
  9. storePassword 'pee2ueC7'
  10. keyAlias 'key0'
  11. keyPassword 'pee2ueC7'
  12. }
  13. }
  14. defaultConfig {
  15. applicationId "me.yoqi.deleteallcontacts"
  16. minSdkVersion 16
  17. targetSdkVersion 33
  18. versionCode 100001
  19. versionName "1.0.1"
  20. multiDexEnabled true
  21. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  22. }
  23. buildTypes {
  24. debug {
  25. minifyEnabled false
  26. multiDexEnabled false
  27. }
  28. release {
  29. minifyEnabled true
  30. shrinkResources true
  31. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  32. multiDexEnabled true
  33. }
  34. }
  35. compileOptions {
  36. sourceCompatibility JavaVersion.VERSION_11
  37. targetCompatibility JavaVersion.VERSION_11
  38. }
  39. flavorDimensions 'flavor1'
  40. productFlavors {
  41. produdctflavor {
  42. dimension 'flavor1'
  43. }
  44. }
  45. }
  46. dependencies {
  47. implementation fileTree(dir: 'libs', include: ['*.jar'])
  48. implementation 'androidx.appcompat:appcompat:1.6.1'
  49. implementation 'com.google.android.material:material:1.9.0'
  50. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  51. testImplementation 'junit:junit:4.13.2'
  52. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  53. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  54. }