1
1
/*
2
+ * Copyright (C) 2021 HyperDevs
3
+ *
2
4
* Copyright (C) 2019 BQ
3
5
*
4
6
* Licensed under the Apache License, Version 2.0 (the "License");
14
16
* limitations under the License.
15
17
*/
16
18
17
- apply plugin : ' com.android.application'
19
+ apply plugin : " com.android.application"
18
20
19
- apply plugin : ' kotlin-android'
20
- apply plugin : ' kotlin-android-extensions'
21
+ apply plugin : " kotlin-android"
22
+ apply plugin : " kotlin-android-extensions"
21
23
22
- apply plugin : ' com.gladed.androidgitversion'
24
+ apply plugin : " com.gladed.androidgitversion"
23
25
24
26
apply from : " $rootDir /gradle/properties_utils.gradle"
25
27
@@ -82,7 +84,7 @@ android {
82
84
83
85
release {
84
86
minifyEnabled false
85
- proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
87
+ proguardFiles getDefaultProguardFile(" proguard-android-optimize.txt" ), " proguard-rules.pro"
86
88
signingConfig signingConfigs. localRelease
87
89
}
88
90
}
@@ -103,17 +105,17 @@ android {
103
105
104
106
dependencies {
105
107
implementation project(" :lib" )
106
- implementation fileTree(dir : ' libs' , include : [' *.jar' ])
108
+ implementation fileTree(dir : " libs" , include : [" *.jar" ])
107
109
108
110
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
109
111
110
- implementation ' androidx.appcompat:appcompat:1.2.0'
111
- implementation ' androidx.core:core-ktx:1.3.2'
112
- implementation ' androidx.constraintlayout:constraintlayout:2.0.2 '
112
+ implementation " androidx.appcompat:appcompat:1.2.0"
113
+ implementation " androidx.core:core-ktx:1.3.2"
114
+ implementation " androidx.constraintlayout:constraintlayout:2.0.4 "
113
115
114
- testImplementation ' junit:junit:4.13'
116
+ testImplementation " junit:junit:4.13.2 "
115
117
116
- androidTestImplementation ' androidx.test:runner:1.3.0'
117
- androidTestImplementation ' androidx.test.espresso:espresso-core:3.3.0'
118
- implementation ' com.google.android.material:material:1.2.1 '
118
+ androidTestImplementation " androidx.test:runner:1.3.0"
119
+ androidTestImplementation " androidx.test.espresso:espresso-core:3.3.0"
120
+ implementation " com.google.android.material:material:1.3.0 "
119
121
}
0 commit comments