From b10cc751d6f220e7c7ade1c189bba28ee16b68ff Mon Sep 17 00:00:00 2001
From: Muhammad Rehan <mrehan.official@gmail.com>
Date: Fri, 6 Sep 2024 17:15:07 +0500
Subject: [PATCH] fix: improve in-app logs (#139)

---
 android/build.gradle            | 2 +-
 apps/amiapp_flutter/ios/Podfile | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/android/build.gradle b/android/build.gradle
index 4465297..3f52931 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -59,7 +59,7 @@ android {
 dependencies {
     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
     // Customer.io SDK
-    def cioVersion = "3.11.0"
+    def cioVersion = "3.11.2"
     implementation "io.customer.android:tracking:$cioVersion"
     implementation "io.customer.android:messaging-push-fcm:$cioVersion"
     implementation "io.customer.android:messaging-in-app:$cioVersion"
diff --git a/apps/amiapp_flutter/ios/Podfile b/apps/amiapp_flutter/ios/Podfile
index 9435bbc..1595e27 100644
--- a/apps/amiapp_flutter/ios/Podfile
+++ b/apps/amiapp_flutter/ios/Podfile
@@ -43,7 +43,7 @@ target 'Runner' do
   use_modular_headers!
   
   # Uncomment only 1 of the lines below to install a version of the iOS SDK
-  pod 'CustomerIO/MessagingPushFCM', '~> 2.13' # install production build
+  pod 'CustomerIO/MessagingPushFCM', '~> 2.14' # install production build
   # install_non_production_ios_sdk_local_path(local_path: '~/code/customerio-ios/', is_app_extension: false, push_service: "fcm")
   # install_non_production_ios_sdk_git_branch(branch_name: 'levi/v2-multiple-push-handlers', is_app_extension: false, push_service: "fcm")
 
@@ -53,7 +53,7 @@ end
 target 'NotificationServiceExtension' do
   use_frameworks!
   # Uncomment only 1 of the lines below to install a version of the iOS SDK
-  pod 'CustomerIO/MessagingPushFCM', '~> 2.13' # install production build
+  pod 'CustomerIO/MessagingPushFCM', '~> 2.14' # install production build
   # install_non_production_ios_sdk_local_path(local_path: '~/code/customerio-ios/', is_app_extension: true, push_service: "fcm")
   # install_non_production_ios_sdk_git_branch(branch_name: 'levi/v2-multiple-push-handlers', is_app_extension: true, push_service: "fcm")
 end