Files
JustTrustMe/app/build.gradle
Konrad Kollnig 78a4fd5084 Update gradle
2022-05-27 18:12:10 +01:00

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'
}