diff --git a/build.gradle b/build.gradle index ecafb87..7b675e4 100644 --- a/build.gradle +++ b/build.gradle @@ -1,16 +1,14 @@ apply plugin: 'com.android.library' -apply plugin: 'com.github.dcendents.android-maven' -group='com.github.Dean1990' android { compileSdkVersion 19 - buildToolsVersion "25.0.0" + buildToolsVersion '26.0.2' defaultConfig { minSdkVersion 14 targetSdkVersion 19 versionCode 1 - versionName "1.0" + versionName "1.0.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" @@ -21,14 +19,18 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } + lintOptions{ + abortOnError false + } } dependencies { - + testCompile 'junit:junit:4.12' } - +apply plugin: 'com.github.dcendents.android-maven' +group='com.github.Dean1990' // build a jar with source files task sourcesJar(type: Jar) { from android.sourceSets.main.java.srcDirs