build.gradle 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  31. multiDexEnabled true
  32. }
  33. }
  34. compileOptions {
  35. sourceCompatibility JavaVersion.VERSION_11
  36. targetCompatibility JavaVersion.VERSION_11
  37. }
  38. flavorDimensions 'flavor1'
  39. productFlavors {
  40. produdctflavor {
  41. dimension 'flavor1'
  42. }
  43. }
  44. }
  45. dependencies {
  46. implementation fileTree(dir: 'libs', include: ['*.jar'])
  47. implementation 'androidx.appcompat:appcompat:1.6.1'
  48. implementation 'com.google.android.material:material:1.9.0'
  49. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  50. testImplementation 'junit:junit:4.13.2'
  51. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  52. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  53. }