File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,14 @@ android {
19
19
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
20
20
}
21
21
}
22
+ lintOptions {
23
+ abortOnError false
24
+ }
22
25
}
23
26
24
27
dependencies {
25
28
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
26
- implementation" org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
29
+ implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
27
30
implementation ' com.android.support:appcompat-v7:27.1.1'
28
31
implementation ' com.android.support.constraint:constraint-layout:1.1.2'
29
32
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ buildscript {
9
9
dependencies {
10
10
classpath ' com.android.tools.build:gradle:3.1.3'
11
11
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
12
+ classpath ' com.github.dcendents:android-maven-gradle-plugin:2.1'
12
13
13
14
// NOTE: Do not place your application dependencies here; they belong
14
15
// in the individual module build.gradle files
@@ -19,6 +20,7 @@ allprojects {
19
20
repositories {
20
21
google()
21
22
jcenter()
23
+ maven { url ' https://jitpack.io' }
22
24
}
23
25
}
24
26
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ apply plugin: 'com.android.library'
2
2
apply plugin : ' kotlin-android'
3
3
apply plugin : ' kotlin-android-extensions'
4
4
5
+ apply plugin : ' com.github.dcendents.android-maven'
6
+
7
+ group = ' com.github.DonMat'
8
+
5
9
android {
6
10
compileSdkVersion 27
7
11
You can’t perform that action at this time.
0 commit comments