build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.3"
  5. defaultConfig {
  6. applicationId "com.chinaappsremover"
  7. minSdkVersion 15
  8. targetSdkVersion 29
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. buildTypes.each {
  20. it.buildConfigField "String", "BLACKLISTED_APP_JSON_URL", "\"https://raw.githubusercontent.com/Bloody-Badboy/Remove-China-Apps/master/china_apps.json\""
  21. }
  22. }
  23. dependencies {
  24. implementation fileTree(dir: "libs", include: ["*.jar"])
  25. implementation 'androidx.appcompat:appcompat:1.1.0'
  26. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  27. implementation 'com.google.android.material:material:1.1.0'
  28. implementation "androidx.recyclerview:recyclerview:1.1.0"
  29. implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
  30. implementation 'com.google.android.play:core:1.7.3'
  31. implementation 'com.squareup.okhttp3:okhttp:4.7.2'
  32. testImplementation 'junit:junit:4.13'
  33. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  34. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  35. }