1
+ apply plugin : ' com.android.application'
2
+ apply plugin : ' kotlin-android'
3
+ apply plugin : ' kotlin-android-extensions'
4
+ apply plugin : ' kotlin-kapt'
5
+
6
+ android {
7
+ compileSdkVersion 30
8
+ buildToolsVersion " 30.0.3"
9
+
10
+ defaultConfig {
11
+ applicationId " corewala.gemini.buran"
12
+ minSdkVersion 21
13
+ targetSdkVersion 30
14
+ versionCode 4
15
+ versionName " v1.3"
16
+ testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
17
+ }
18
+
19
+ // see: ~/.gradle/gradle.properties
20
+
21
+ buildTypes {
22
+ release {
23
+ minifyEnabled true
24
+ proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
25
+ }
26
+ }
27
+
28
+ buildFeatures{
29
+ dataBinding true
30
+ }
31
+
32
+ compileOptions{
33
+ sourceCompatibility JavaVersion . VERSION_1_8
34
+ targetCompatibility JavaVersion . VERSION_1_8
35
+ }
36
+ kotlinOptions{
37
+ jvmTarget = JavaVersion . VERSION_1_8 . toString()
38
+ }
39
+ }
40
+
41
+ dependencies {
42
+ implementation fileTree(dir : " libs" , include : [" *.jar" ])
43
+
44
+ implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
45
+ implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2'
46
+ implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9'
47
+
48
+ implementation ' androidx.core:core-ktx:1.3.2'
49
+ implementation " androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
50
+ implementation ' androidx.lifecycle:lifecycle-extensions:2.2.0'
51
+ implementation ' androidx.activity:activity-ktx:1.1.0'
52
+ implementation " androidx.recyclerview:recyclerview:1.1.0"
53
+ implementation ' androidx.coordinatorlayout:coordinatorlayout:1.1.0'
54
+ implementation ' androidx.preference:preference-ktx:1.1.1'
55
+ implementation " androidx.browser:browser:1.3.0"
56
+ implementation ' androidx.appcompat:appcompat:1.2.0'
57
+ implementation ' androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
58
+ implementation ' com.google.android.material:material:1.3.0-rc01'
59
+
60
+ // ROOM DB
61
+ def room_version = " 2.2.6"
62
+ implementation " androidx.room:room-runtime:$room_version "
63
+ kapt " androidx.room:room-compiler:$room_version "
64
+ implementation " androidx.room:room-ktx:$room_version "
65
+
66
+ testImplementation ' junit:junit:4.13.1'
67
+
68
+ androidTestImplementation ' androidx.test.ext:junit:1.1.2'
69
+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.3.0'
70
+ androidTestImplementation ' androidx.test:runner:1.3.0'
71
+ androidTestImplementation ' androidx.test:rules:1.3.0'
72
+ androidTestImplementation ' com.google.truth:truth:1.0'
73
+ }
0 commit comments