From 05bab49e45220205c8484bf64c83a4f7d9caf8cd Mon Sep 17 00:00:00 2001 From: Vincent Karuri Date: Tue, 26 Feb 2019 15:32:56 +0300 Subject: [PATCH 1/3] Upgrade Kujaku library version to 0.6.2 --- library/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/build.gradle b/library/build.gradle index a34925b7a..330c7d164 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -21,7 +21,7 @@ apply plugin: 'realm-android' apply plugin: 'com.jfrog.bintray' apply plugin: 'maven-publish' -version '0.6.1' +version '0.6.2' project.version = this.version task sourceJar(type: Jar) { From 5e94eb727d1bb6ea7812922271dc9dbd9190d910 Mon Sep 17 00:00:00 2001 From: Vincent Karuri Date: Tue, 26 Feb 2019 16:25:34 +0300 Subject: [PATCH 2/3] Upgrade sample app kujaku library dependency --- sample/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample/build.gradle b/sample/build.gradle index 1a652e595..a39ef04ef 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -139,7 +139,7 @@ android { dependencies { configuration -> - developmentKujakuModulesImport(this, configuration) + releaseTestKujakuImport(configuration) implementation 'com.cocoahero.android:geojson:1.0.1@jar' implementation "com.android.volley:volley:${rootProject.ext.volleyVersion}" @@ -190,7 +190,7 @@ private static void developmentKujakuModulesImport(instance, configuration) { // This is used when making a release and you need to test that the published artifacts work in host applications OK private static void releaseTestKujakuImport(configuration) { - configuration.implementation 'io.ona.kujaku:library:0.6.1' + configuration.implementation 'io.ona.kujaku:library:0.6.2' } tasks.withType(Test) { From 6b63cfbefcb1a698d9836a050758469b8ac4c926 Mon Sep 17 00:00:00 2001 From: Vincent Karuri Date: Tue, 26 Feb 2019 16:30:31 +0300 Subject: [PATCH 3/3] Point kujaku libary to remote kujaku utils --- library/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/build.gradle b/library/build.gradle index 330c7d164..1900192fa 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -169,9 +169,9 @@ dependencies { configuration -> } // Comment the line below when creating releases - The line is for development of the library & utils - implementation (project(":utils")) { +// implementation (project(":utils")) { // Uncomment the line below when creating releases - //implementation('io.ona.kujaku:utils:0.6.1') { + implementation('io.ona.kujaku:utils:0.6.1') { transitive = true; exclude group: 'com.mapbox.mapboxsdk', module: 'mapbox-android-sdk' exclude group: 'com.android.support', module: 'support-v4'