55 lines
2 KiB
Groovy
55 lines
2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.github.axet.audiorecorder"
|
|
minSdkVersion 9
|
|
targetSdkVersion 23
|
|
versionCode 102
|
|
versionName "1.4.0"
|
|
}
|
|
signingConfigs {
|
|
release {
|
|
storeFile file(RELEASE_STORE_FILE)
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
}
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
debuggable true
|
|
jniDebuggable true
|
|
minifyEnabled false
|
|
}
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
applicationVariants.all { variant ->
|
|
variant.outputs.each { output ->
|
|
def file = output.packageApplication.outputFile
|
|
def fileName = org.apache.commons.io.FilenameUtils.getExtension(android.defaultConfig.applicationId) + "-" + android.defaultConfig.versionName + "-" + variant.buildType.name + ".apk"
|
|
output.packageApplication.outputFile = new File(file.parent, fileName)
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:25.1.1'
|
|
compile 'com.android.support:support-v4:25.1.1'
|
|
compile 'com.android.support:design:25.1.1'
|
|
compile 'com.google.android.gms:play-services-appindexing:9.8.0'
|
|
compile 'org.apache.commons:commons-math3:3.6.1'
|
|
compile 'com.github.axet:android-library:1.9.1' // compile project(':android-library')
|
|
compile 'com.github.axet:jebml:0.0.2' // compile project(':jebml')
|
|
debugCompile project(path: ':vorbis', configuration: "libraryDebug")
|
|
releaseCompile project(path: ':vorbis', configuration: "libraryRelease")
|
|
}
|