1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 33
- defaultConfig {
- applicationId "com.chinaappsremover"
- minSdkVersion 16
- targetSdkVersion 33
- versionCode 100001
- versionName "1.0.1"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- buildTypes.each {
- it.buildConfigField "String", "BLACKLISTED_APP_JSON_URL", "\"https://raw.githubusercontent.com/Bloody-Badboy/Remove-China-Apps/master/china_apps.json\""
- }
- }
- dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'com.google.android.material:material:1.9.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
-
- implementation "androidx.recyclerview:recyclerview:1.1.0"
- implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
- implementation 'com.google.android.play:core:1.7.3'
- implementation 'com.squareup.okhttp3:okhttp:4.7.2'
- }
|