From 587f559fbba4864d17f0506875474ff705866189 Mon Sep 17 00:00:00 2001 From: Shahroz Khan Date: Fri, 14 Jul 2023 23:02:55 +0500 Subject: [PATCH] fix: hardcode android native SDK version (#61) --- android/build.gradle | 2 +- example/credentials.env | 2 -- example/pubspec.yaml | 3 +-- ios/customer_io.podspec | 2 +- lib/customer_io_plugin_version.dart | 2 +- 5 files changed, 4 insertions(+), 7 deletions(-) delete mode 100644 example/credentials.env diff --git a/android/build.gradle b/android/build.gradle index 3462b050..5e2564e7 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -58,7 +58,7 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" // Customer.io SDK - def cioVersion = "[3.5.0,4.0)" + def cioVersion = "3.6.3" 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/example/credentials.env b/example/credentials.env deleted file mode 100644 index 5e006106..00000000 --- a/example/credentials.env +++ /dev/null @@ -1,2 +0,0 @@ -siteId=SITE_ID -apiKey=API_KEY diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 8faa2a7e..fa6412c0 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -53,8 +53,7 @@ flutter: uses-material-design: true # To add assets to your application, add an assets section, like this: - assets: - - credentials.env +# assets: # - images/a_dot_ham.jpeg # An image asset can refer to one or more resolution-specific "variants", see diff --git a/ios/customer_io.podspec b/ios/customer_io.podspec index 72349fe7..86a4dda9 100755 --- a/ios/customer_io.podspec +++ b/ios/customer_io.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'customer_io' - s.version = '1.2.2' + s.version = '1.2.3' s.summary = 'Customer.io plugin for Flutter' s.homepage = 'https://customer.io/' s.license = { :file => '../LICENSE' } diff --git a/lib/customer_io_plugin_version.dart b/lib/customer_io_plugin_version.dart index 438a91b1..e854607f 100755 --- a/lib/customer_io_plugin_version.dart +++ b/lib/customer_io_plugin_version.dart @@ -1,2 +1,2 @@ // Don't modify this line - it's automatically updated -const version = "1.2.2"; +const version = "1.2.3";