Simple-Flashlight/app/build.gradle

34 lines
881 B
Groovy
Raw Normal View History

2016-01-06 13:43:35 +01:00
apply plugin: 'com.android.application'
android {
2016-01-06 22:52:16 +01:00
signingConfigs {
config {
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
storeFile file('../release.keystore')
storePassword RELEASE_STORE_PASSWORD
}
}
2016-01-06 13:43:35 +01:00
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "flashlight.simplemobiletools.com"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
2016-01-06 22:52:16 +01:00
minifyEnabled true
2016-01-06 13:43:35 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2016-01-06 22:52:16 +01:00
signingConfig signingConfigs.config
2016-01-06 13:43:35 +01:00
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
}