build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 33
  4. defaultConfig {
  5. applicationId "com.chinaappsremover"
  6. minSdkVersion 16
  7. targetSdkVersion 33
  8. versionCode 100001
  9. versionName "1.0.1"
  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. buildTypes.each {
  19. it.buildConfigField "String", "BLACKLISTED_APP_JSON_URL", "\"https://raw.githubusercontent.com/Bloody-Badboy/Remove-China-Apps/master/china_apps.json\""
  20. }
  21. }
  22. dependencies {
  23. implementation fileTree(dir: "libs", include: ["*.jar"])
  24. implementation 'androidx.appcompat:appcompat:1.6.1'
  25. implementation 'com.google.android.material:material:1.9.0'
  26. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  27. testImplementation 'junit:junit:4.13.2'
  28. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  29. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  30. implementation "androidx.recyclerview:recyclerview:1.1.0"
  31. implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
  32. implementation 'com.google.android.play:core:1.7.3'
  33. implementation 'com.squareup.okhttp3:okhttp:4.7.2'
  34. }