SimpleCloudNotifier/android/app/build.gradle

47 lines
1.4 KiB
Groovy
Raw Normal View History

2018-09-21 22:21:24 +02:00
apply plugin: 'com.android.application'
android {
2018-09-27 02:30:12 +02:00
compileSdkVersion 28
2018-09-21 22:21:24 +02:00
defaultConfig {
applicationId "com.blackforestbytes.simplecloudnotifier"
2018-09-23 16:23:49 +02:00
minSdkVersion 21
2018-09-27 02:30:12 +02:00
targetSdkVersion 28
2018-09-21 23:15:37 +02:00
versionCode 2
versionName "0.2"
2018-09-21 22:21:24 +02:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2018-09-23 20:00:10 +02:00
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
2018-09-21 22:21:24 +02:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2018-09-21 23:15:37 +02:00
2018-09-27 02:30:12 +02:00
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
2018-09-21 22:21:24 +02:00
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
2018-09-27 02:30:12 +02:00
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.takisoft.fix:preference-v7:28.0.0.0'
implementation 'com.takisoft.fix:preference-v7-extras:28.0.0.0'
2018-09-21 23:15:37 +02:00
implementation 'com.google.firebase:firebase-core:16.0.3'
implementation 'com.google.firebase:firebase-messaging:17.3.2'
2018-09-23 20:00:10 +02:00
2018-09-27 01:38:56 +02:00
implementation "android.arch.lifecycle:extensions:1.1.1"
2018-09-23 20:00:10 +02:00
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
implementation 'com.github.kenglxn.QRGen:android:2.5.0'
2018-09-21 22:21:24 +02:00
}
2018-09-21 23:15:37 +02:00
apply plugin: 'com.google.gms.google-services'