2015-11-23 21:20:14 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-06-28 08:15:01 +00:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion '25.0.3'
|
2015-11-23 21:20:14 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.bierbaumer.otp_authenticator"
|
2017-06-28 08:15:01 +00:00
|
|
|
minSdkVersion 18
|
|
|
|
targetSdkVersion 25
|
2015-12-21 19:57:19 +00:00
|
|
|
versionCode 3
|
|
|
|
versionName "0.1.2"
|
2015-11-23 21:20:14 +00:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
debug {
|
|
|
|
testCoverageEnabled = true
|
|
|
|
}
|
|
|
|
}
|
2015-11-23 22:18:56 +00:00
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
2015-11-23 22:21:38 +00:00
|
|
|
}
|
2015-11-23 21:20:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
testCompile 'junit:junit:4.12'
|
2017-06-28 08:15:01 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
|
|
compile 'com.android.support:design:25.3.1'
|
2015-11-23 21:20:14 +00:00
|
|
|
compile 'com.journeyapps:zxing-android-embedded:3.0.3@aar'
|
2015-12-23 18:59:05 +00:00
|
|
|
compile 'com.google.zxing:core:3.2.1'
|
2015-11-23 21:20:14 +00:00
|
|
|
compile 'commons-codec:commons-codec:1.5'
|
|
|
|
|
2017-06-28 08:15:01 +00:00
|
|
|
androidTestCompile 'com.android.support:support-annotations:25.3.1'
|
|
|
|
androidTestCompile 'com.android.support.test:runner:0.5'
|
|
|
|
androidTestCompile 'com.android.support.test:rules:0.5'
|
|
|
|
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
|
|
|
|
androidTestCompile 'com.android.support.test.espresso:espresso-intents:2.2.2'
|
|
|
|
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
|
2015-11-23 21:20:14 +00:00
|
|
|
|
|
|
|
androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
|
|
|
|
|
|
|
|
}
|