mirror of
https://github.com/Fuzion24/JustTrustMe.git
synced 2026-03-15 04:43:17 +08:00
26 lines
457 B
Groovy
26 lines
457 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion '25.0.2'
|
|
defaultConfig {
|
|
applicationId 'just.trust.me'
|
|
minSdkVersion 16
|
|
targetSdkVersion 23
|
|
versionCode 3
|
|
versionName '.3'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
provided fileTree(dir: 'libs', include: ['*.jar'])
|
|
}
|