0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-20 12:02:17 +02:00
BinaryEye/app/build.gradle

75 lines
2.0 KiB
Groovy
Raw Normal View History

2017-08-27 15:03:22 +02:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdkVersion sdk_version
buildToolsVersion build_tools_version
defaultConfig {
minSdkVersion 9
targetSdkVersion sdk_version
2019-05-14 19:27:43 +02:00
versionCode 24
versionName '1.7.2'
2017-08-27 15:03:22 +02:00
// it's recommended to set this value to the lowest API level
// able to provide all the functionality
renderscriptTargetApi 24
2017-08-27 15:03:22 +02:00
renderscriptSupportModeEnabled true
2018-05-29 21:00:26 +02:00
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
}
signingConfigs {
config {
keyAlias System.getenv('ANDROID_KEY_ALIAS')
keyPassword System.getenv('ANDROID_KEY_PASSWORD')
storePassword System.getenv('ANDROID_STORE_PASSWORD')
def filePath = System.getenv('ANDROID_KEYFILE')
storeFile filePath ? file(filePath) : null
}
}
2018-05-29 21:00:26 +02:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
2018-05-29 21:00:26 +02:00
androidTest.java.srcDirs += 'src/androidTest/kotlin'
2017-08-27 15:03:22 +02:00
}
buildTypes {
debug {
applicationIdSuffix '.debug'
}
release {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2017-08-27 15:03:22 +02:00
minifyEnabled true
shrinkResources true
2019-05-14 19:27:27 +02:00
signingConfig signingConfigs.config
2017-08-27 15:03:22 +02:00
}
}
lintOptions {
// because at the time of writing, even the latest version
// of RenderScript is raising this error no matter if
// renderscriptTargetApi matches targetSdkVersion
disable 'GradleCompatible'
}
}
dependencies {
2018-05-29 21:00:26 +02:00
androidTestImplementation ('com.android.support.test:runner:1.0.2') {
exclude module: 'support-annotations'
}
androidTestImplementation ('com.android.support.test:rules:1.0.2') {
exclude module: 'support-annotations'
}
testImplementation 'junit:junit:4.12'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.1"
implementation "com.android.support:appcompat-v7:$support_version"
implementation "com.android.support:design:$support_version"
implementation 'com.google.zxing:core:3.3.3'
implementation 'com.github.markusfisch:CameraView:1.8.3'
2017-08-27 15:03:22 +02:00
}