2019-04-29 19:27:51 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
apply plugin: 'kotlin-android'
|
2019-05-26 18:40:02 +02:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2019-10-12 21:03:34 +02:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2019-08-14 12:36:54 +02:00
|
|
|
apply plugin: 'io.fabric'
|
2019-04-29 19:27:51 +02:00
|
|
|
|
|
|
|
|
android {
|
2019-10-12 21:03:34 +02:00
|
|
|
compileSdkVersion 29
|
2019-04-29 19:27:51 +02:00
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "com.denizd.substitutionplan"
|
|
|
|
|
minSdkVersion 21
|
2019-10-12 21:03:34 +02:00
|
|
|
targetSdkVersion 29
|
2019-10-29 16:41:07 +01:00
|
|
|
versionCode 44
|
|
|
|
|
versionName "2.4.1"
|
2019-04-29 19:27:51 +02:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
2019-05-16 16:14:03 +02:00
|
|
|
minifyEnabled true
|
2019-05-17 11:10:59 +02:00
|
|
|
shrinkResources true
|
2019-04-29 19:27:51 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-12 21:03:34 +02:00
|
|
|
viewBinding.enabled = true
|
2019-04-29 19:27:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2019-09-11 20:59:55 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
2019-10-12 21:03:34 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2019-04-29 19:27:51 +02:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2019-10-12 21:03:34 +02:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0-beta05'
|
|
|
|
|
implementation 'androidx.browser:browser:1.0.0'
|
|
|
|
|
implementation 'androidx.preference:preference-ktx:1.1.0'
|
|
|
|
|
|
|
|
|
|
implementation 'com.google.android.material:material:1.1.0-beta01'
|
2019-05-09 07:48:17 +02:00
|
|
|
|
2019-09-19 07:33:16 +02:00
|
|
|
implementation 'com.google.firebase:firebase-core:17.2.0'
|
2019-08-21 10:26:54 +02:00
|
|
|
implementation 'com.google.firebase:firebase-messaging:20.0.0'
|
2019-08-25 13:19:11 +02:00
|
|
|
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
|
2019-05-26 18:40:02 +02:00
|
|
|
|
2019-08-25 13:19:11 +02:00
|
|
|
implementation 'org.jsoup:jsoup:1.11.3'
|
2019-04-29 19:27:51 +02:00
|
|
|
|
2019-08-25 13:19:11 +02:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2019-04-29 19:27:51 +02:00
|
|
|
def lifecycle_version = "2.0.0"
|
|
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
|
2019-10-12 21:03:34 +02:00
|
|
|
kapt "androidx.lifecycle:lifecycle-compiler:$lifecycle_version"
|
2019-04-29 19:27:51 +02:00
|
|
|
def room_version = "2.1.0-alpha04"
|
|
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
2019-05-26 18:40:02 +02:00
|
|
|
kapt "androidx.room:room-compiler:$room_version"
|
2019-10-23 21:15:12 +02:00
|
|
|
|
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0'
|
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0'
|
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0-beta01'
|
2019-04-29 19:27:51 +02:00
|
|
|
}
|
2019-05-04 20:51:31 +02:00
|
|
|
|
2019-04-29 19:27:51 +02:00
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
2019-08-12 13:10:05 +02:00
|
|
|
|
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|