build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. applicationId "com.chinaappsremover"
  6. minSdkVersion 15
  7. targetSdkVersion 28
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. implementation fileTree(dir: "libs", include: ["*.jar"])
  21. implementation 'androidx.appcompat:appcompat:1.1.0'
  22. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  23. implementation 'com.google.android.material:material:1.1.0'
  24. implementation "androidx.recyclerview:recyclerview:1.1.0"
  25. implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
  26. implementation 'com.google.android.play:core:1.7.3'
  27. testImplementation 'junit:junit:4.13'
  28. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  29. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  30. }