andOTP/app/build.gradle

49 lines
1.5 KiB
Groovy
Raw Normal View History

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
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
}
}
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'
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'
}