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

41 lines
1.3 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 15
2018-10-17 01:14:27 +02:00
targetSdkVersion 28
versionCode 1500151
versionName "1.5.1"
// 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-alpha01') {
// 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'
}