34 lines
887 B
Groovy
34 lines
887 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
/*signingConfigs {
|
|
config {
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
storeFile file('../release.keystore')
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
}
|
|
}*/
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.2"
|
|
defaultConfig {
|
|
applicationId "com.simplemobiletools.flashlight"
|
|
minSdkVersion 16
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
//signingConfig signingConfigs.config
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:23.3.0'
|
|
}
|