1- apply plugin : ' com.android.application'
1+ plugins {
2+ id ' com.android.application'
3+ }
24
35android {
46 compileSdkVersion 16
5- buildToolsVersion " 22 .0.1 "
7+ buildToolsVersion " 27 .0.3 "
68
79 defaultConfig {
810 applicationId " org.osmtracker"
911 minSdkVersion 8
1012 targetSdkVersion 16
13+ multiDexEnabled true
1114
1215 testApplicationId " org.osmtracker.test"
1316 testInstrumentationRunner " android.test.InstrumentationTestRunner"
1417 }
1518
1619 signingConfigs {
17-
18-
1920 // Create a file $HOME/.gradle/gradle.properties
2021 // containing the values signing.storeFile=..., etc.
2122 if (project. hasProperty(' signing.storeFile' )) {
@@ -41,21 +42,25 @@ android {
4142 }
4243
4344 packagingOptions {
45+ exclude ' META-INF/DEPENDENCIES'
4446 exclude ' META-INF/LICENSE.txt'
4547 exclude ' META-INF/NOTICE.txt'
4648 }
47-
49+ android {
50+ lintOptions {
51+ abortOnError false
52+ }
53+ }
4854}
4955
5056dependencies {
51- compile ' org.apache.james:apache-mime4j-core:0.7.2'
52- compile ' org.apache.httpcomponents:httpclient:4.2.1'
53- compile ' org.apache.httpcomponents:httpcore:4.2.1'
54- compile ' org.apache.httpcomponents:httpmime:4.2.1'
55- compile ' org.osmdroid:osmdroid-android:5.5:release@aar'
56- compile ' oauth.signpost:signpost-commonshttp4:1.2.1.2'
57- compile ' oauth.signpost:signpost-core:1.2.1.2'
58- compile ' org.slf4j:slf4j-android:1.6.1-RC1'
57+ implementation ' org.apache.james:apache-mime4j-core:0.7.2'
58+ implementation ' org.apache.httpcomponents:httpclient:4.2.1'
59+ implementation ' org.apache.httpcomponents:httpcore:4.2.1'
60+ implementation ' org.apache.httpcomponents:httpmime:4.2.1'
61+ implementation ' org.osmdroid:osmdroid-android:5.6.5'
62+ implementation ' oauth.signpost:signpost-commonshttp4:1.2.1.2'
63+ implementation ' org.slf4j:slf4j-android:1.7.25'
5964}
6065
6166task copyNorwegianValues (type : Copy ) {
0 commit comments