diff --git a/app/build.gradle b/app/build.gradle index b44d845..01ed6f1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -19,11 +19,14 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } + lintOptions { + abortOnError false + } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.android.support.constraint:constraint-layout:1.1.2' diff --git a/build.gradle b/build.gradle index c75cf5f..41b4db5 100644 --- a/build.gradle +++ b/build.gradle @@ -9,6 +9,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:3.1.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files @@ -19,6 +20,7 @@ allprojects { repositories { google() jcenter() + maven { url 'https://jitpack.io' } } } diff --git a/searchablespinner/build.gradle b/searchablespinner/build.gradle index 0841d92..e7c57ce 100644 --- a/searchablespinner/build.gradle +++ b/searchablespinner/build.gradle @@ -2,6 +2,10 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' +apply plugin: 'com.github.dcendents.android-maven' + +group = 'com.github.DonMat' + android { compileSdkVersion 27