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
2019-01-06 00:44:57 +01:00

40 lines
1.3 KiB
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "be.digitalia.fosdem"
minSdkVersion 15
targetSdkVersion 28
versionCode 1500160
versionName "1.6.0"
// Supported languages
resConfigs "en"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation ('androidx.preference:preference:1.1.0-alpha02') {
// Alpha versions of these dependencies are unstable
exclude group: 'androidx.fragment', module: 'fragment'
exclude group: 'androidx.core', module: 'core'
}
implementation 'androidx.browser:browser:1.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
}