59 lines
1.7 KiB
Groovy
59 lines
1.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "com.vsmartcard.remotesmartcardreader.app"
|
|
// NFC reader mode was added in KitKat
|
|
minSdkVersion 19
|
|
targetSdkVersion 23
|
|
versionCode 6
|
|
versionName "2.2"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
android.applicationVariants.all { variant ->
|
|
def appName
|
|
//Check if an applicationName property is supplied; if not use the name of the parent project.
|
|
if (project.hasProperty("applicationName")) {
|
|
appName = applicationName
|
|
} else {
|
|
appName = parent.name
|
|
}
|
|
|
|
variant.outputs.each { output ->
|
|
def newApkName
|
|
//If there's no ZipAlign task it means that our artifact will be unaligned and we need to mark it as such.
|
|
if (output.zipAlign) {
|
|
newApkName = "${appName}-${output.baseName}-${variant.versionName}.apk"
|
|
} else {
|
|
newApkName = "${appName}-${output.baseName}-${variant.versionName}-unaligned.apk"
|
|
}
|
|
output.outputFile = new File(output.outputFile.parent, newApkName)
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:23.2.1'
|
|
compile 'com.android.support:design:23.2.1'
|
|
compile 'com.android.support:support-v4:23.2.1'
|
|
|
|
compile 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
|
|
compile 'com.google.zxing:core:3.2.1'
|
|
}
|