1
0
mirror of https://github.com/rom1v/sndcpy.git synced 2025-02-18 21:43:34 +03:00
Files
sndcpy-android-sound/app/build.gradle
Romain Vimont 00d8471408 Initial commit
2020-06-09 21:45:39 +02:00

36 lines
974 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.rom1v.sndcpy"
minSdkVersion 29
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
if (project.hasProperty("SNDCPY_STORE_FILE")) {
android.signingConfigs {
release {
// to be defined in ~/.gradle/gradle.properties
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
android.buildTypes.release.signingConfig = android.signingConfigs.release
}