aboutsummaryrefslogtreecommitdiffstats
path: root/OsmAnd-api
diff options
context:
space:
mode:
authorChumva <faiver.unknown@gmail.com>2019-10-11 16:38:01 +0300
committerChumva <faiver.unknown@gmail.com>2019-10-11 16:38:01 +0300
commite8fb55c9db8847165dab900234d35ff02d5c3cd6 (patch)
treec9988d794a4aebd44789beb7ad785eda50277f64 /OsmAnd-api
parent99e06def031bf6840c209adb418de02dd7048d10 (diff)
downloadOsmand-e8fb55c9db8847165dab900234d35ff02d5c3cd6.tar.gz
Fix lint options
Diffstat (limited to 'OsmAnd-api')
-rw-r--r--OsmAnd-api/build.gradle24
1 files changed, 8 insertions, 16 deletions
diff --git a/OsmAnd-api/build.gradle b/OsmAnd-api/build.gradle
index 9609bf72e4..bc69eed738 100644
--- a/OsmAnd-api/build.gradle
+++ b/OsmAnd-api/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.osmandapp'
-version = '2.0'
+version = '2.0.1'
android {
compileSdkVersion 27
@@ -14,7 +14,13 @@ android {
versionCode 2
versionName "2.0"
}
-
+ buildTypes {
+ release {
+ }
+ }
+ lintOptions {
+ abortOnError false
+ }
sourceSets {
main {
manifest.srcFile "AndroidManifest.xml"
@@ -27,18 +33,4 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-annotations:27.1.1'
-}
-
-task sourcesJar(type: Jar) {
- classifier = 'sources'
- from android.sourceSets.main.java.sourceFiles
-}
-
-task classesJar(type: Jar) {
- from "$buildDir/intermediates/classes/release"
-}
-
-artifacts {
- archives classesJar
- archives sourcesJar
} \ No newline at end of file