From b5f30ef77c0f265d310346b3920c605058970c05 Mon Sep 17 00:00:00 2001 From: Mahmoud Elmorabea Date: Thu, 12 Mar 2026 03:11:19 +0200 Subject: [PATCH] Make location android dep api instead of implementation --- android/cio-core.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/cio-core.gradle b/android/cio-core.gradle index d82b886f..36f4cf60 100644 --- a/android/cio-core.gradle +++ b/android/cio-core.gradle @@ -5,7 +5,7 @@ dependencies { // Location module is optional - customers enable it by adding // customerio_location_enabled=true in their gradle.properties if (project.cioLocationEnabled) { - implementation "io.customer.android:location:$cioAndroidSDKVersion" + api "io.customer.android:location:$cioAndroidSDKVersion" } else { compileOnly "io.customer.android:location:$cioAndroidSDKVersion" }