File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ apply plugin: 'kotlin-android'
5
5
apply plugin : ' kotlin-android-extensions'
6
6
7
7
repositories {
8
+ google()
9
+ jcenter()
8
10
maven { url " https://jitpack.io" }
9
11
}
10
12
@@ -22,17 +24,23 @@ android {
22
24
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
23
25
}
24
26
}
25
-
26
27
buildToolsVersion ' 28.0.3'
27
28
}
28
29
29
-
30
-
31
-
32
30
dependencies {
33
31
implementation fileTree(include : [' *.jar' ], dir : ' libs' )
34
32
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
35
33
implementation ' androidx.constraintlayout:constraintlayout:1.1.3'
36
34
implementation ' androidx.appcompat:appcompat:1.1.0'
37
35
38
36
}
37
+
38
+
39
+
40
+ task classesJar (type : Jar ) {
41
+ from " $buildDir /intermediates/classes/release"
42
+ }
43
+
44
+ artifacts {
45
+ archives classesJar
46
+ }
You can’t perform that action at this time.
0 commit comments