mirror of
https://github.com/Fuzion24/JustTrustMe.git
synced 2026-03-19 05:39:46 +08:00
27 lines
531 B
Groovy
27 lines
531 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
defaultConfig {
|
|
applicationId 'just.trust.me'
|
|
minSdkVersion 16
|
|
targetSdkVersion 30
|
|
versionCode 3
|
|
versionName '.3'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
useLibrary 'org.apache.http.legacy'
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'org.apache.httpcomponents:httpcore:4.4.2'
|
|
}
|