1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00
matomocamp-companion-android/app/build.gradle

52 lines
1.6 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
2018-10-17 01:14:27 +02:00
compileSdkVersion 28
2018-09-26 23:13:30 +02:00
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "be.digitalia.fosdem"
minSdkVersion 16
2018-10-17 01:14:27 +02:00
targetSdkVersion 28
2019-02-02 12:09:04 +01:00
versionCode 1600162
versionName "1.6.2"
// Supported languages
resConfigs "en"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
postprocessing {
removeUnusedCode true
removeUnusedResources true
obfuscate true
optimizeCode true
proguardFiles 'proguard-rules.pro'
}
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
def room_version = "2.1.0"
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'com.google.android.material:material:1.0.0'
2019-08-25 19:25:03 +02:00
implementation 'androidx.recyclerview:recyclerview:1.1.0-beta03'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.preference:preference:1.1.0-rc01'
implementation 'androidx.browser:browser:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0-rc01'
implementation 'androidx.paging:paging-runtime:2.1.0'
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
implementation 'com.squareup.okhttp3:okhttp:3.12.4'
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
}