51 lines
1.7 KiB
Groovy
51 lines
1.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '25.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "org.shadowice.flocke.andotp"
|
|
minSdkVersion 18
|
|
targetSdkVersion 25
|
|
versionCode 1
|
|
versionName "0.1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
testCoverageEnabled = true
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
compile 'com.android.support:design:25.3.1'
|
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
|
compile 'com.android.support:cardview-v7:25.3.1'
|
|
compile 'com.journeyapps:zxing-android-embedded:3.0.3@aar'
|
|
compile 'com.google.zxing:core:3.2.1'
|
|
compile 'commons-codec:commons-codec:1.5'
|
|
compile 'me.zhanghai.android.materialprogressbar:library:1.4.1'
|
|
|
|
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'
|
|
|
|
androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
|
|
|
|
}
|