@@ -13,7 +13,7 @@ buildscript {
1313apply plugin : ' realm-android'
1414apply plugin : ' maven-publish'
1515
16- version ' 0.10.6-2 -SNAPSHOT'
16+ version ' 0.10.8 -SNAPSHOT'
1717
1818project. version = this . version
1919
@@ -42,7 +42,6 @@ android {
4242 versionCode 1
4343 versionName this . version
4444 testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
45- multiDexEnabled true
4645 }
4746
4847 buildTypes {
@@ -57,11 +56,11 @@ android {
5756 properties. containsKey(" mapbox.sdk.token" )) {
5857 buildConfigField " String" , " MAPBOX_SDK_ACCESS_TOKEN" , " \" " + localProperties[" mapbox.sdk.token" ] + " \" "
5958 } else {
60- println (" One of the required config variables is not set in your local.properties" );
59+ println (" One of the required config variables is not set in your local.properties" )
6160 buildConfigField " String" , " MAPBOX_SDK_ACCESS_TOKEN" , " \" sample_key\" "
6261 }
6362 } else {
64- println (" local.properties does not exist" );
63+ println (" local.properties does not exist" )
6564 buildConfigField " String" , " MAPBOX_SDK_ACCESS_TOKEN" , " \" sample_key\" "
6665 }
6766 }
@@ -77,11 +76,11 @@ android {
7776 properties. containsKey(" mapbox.sdk.token" )) {
7877 buildConfigField " String" , " MAPBOX_SDK_ACCESS_TOKEN" , " \" " + localProperties[" mapbox.sdk.token" ] + " \" "
7978 } else {
80- println (" One of the required config variables is not set in your local.properties" );
79+ println (" One of the required config variables is not set in your local.properties" )
8180 buildConfigField " String" , " MAPBOX_SDK_ACCESS_TOKEN" , " \" sample_key\" "
8281 }
8382 } else {
84- println (" local.properties does not exist" );
83+ println (" local.properties does not exist" )
8584 buildConfigField " String" , " MAPBOX_SDK_ACCESS_TOKEN" , " \" sample_key\" "
8685
8786 }
@@ -107,7 +106,7 @@ android {
107106dependencies { configuration ->
108107 implementation ' androidx.legacy:legacy-support-v4:1.0.0'
109108 implementation (mapboxSDK) {
110- transitive = true ;
109+ transitive = true
111110 exclude group : ' com.android.support' , module : ' support-v4'
112111 exclude group : ' com.android.support' , module : ' support-annotations'
113112 exclude group : ' com.android.support' , module : ' support-fragment'
@@ -120,9 +119,9 @@ dependencies { configuration ->
120119 implementation mapboxAnnotationPlugin
121120
122121 // Comment the line below when creating releases - The line is for development of the library & utils
123- // implementation (project(":utils")) {
122+ implementation (project(" :utils" )) {
124123 // Uncomment the line below when creating releases
125- implementation(' io.ona.kujaku:utils:0.10.6 -SNAPSHOT' ) {
124+ implementation(' io.ona.kujaku:utils:0.10.8 -SNAPSHOT' ) {
126125 transitive = true
127126 exclude group : ' com.mapbox.mapboxsdk' , module : ' mapbox-android-sdk'
128127 exclude group : ' com.android.support' , module : ' support-v4'
@@ -134,8 +133,6 @@ dependencies { configuration ->
134133 implementation ' com.jakewharton.threetenabp:threetenabp:1.1.1'
135134 implementation ' com.jakewharton.timber:timber:5.0.1'
136135
137- implementation ' androidx.multidex:multidex:2.0.1'
138-
139136 customDependencies(this , configuration)
140137 appPermissionsDependencies(configuration)
141138 infoWindowDependencies(this , configuration)
@@ -147,7 +144,6 @@ private static void testDependencies(instance, configuration) {
147144 configuration. testImplementation instance. junit
148145
149146 configuration. testImplementation instance. robolectric
150- configuration. testImplementation instance. robolectricShadowsMultidex
151147
152148 configuration. testImplementation ' org.mockito:mockito-inline:5.2.0'
153149
0 commit comments