diff --git a/AndroidStarter/app/build.gradle b/AndroidStarter/app/build.gradle index cbdc8d1aa..4ea1bbb9b 100644 --- a/AndroidStarter/app/build.gradle +++ b/AndroidStarter/app/build.gradle @@ -29,7 +29,7 @@ dependencies { testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' - implementation (name: 'clevertap-android-sdk-3.5.1', ext: 'aar') //CleverTap Android SDK, make sure the AAR file is in the libs folder + implementation (name: 'clevertap-android-sdk-3.6.0', ext: 'aar') //CleverTap Android SDK, make sure the AAR file is in the libs folder implementation 'com.google.firebase:firebase-messaging:17.3.0' //Needed for FCM implementation 'com.google.android.gms:play-services-ads:15.0.1' //Needed to use Google Ad Ids //ExoPlayer Libraries for Audio/Video InApp Notifications diff --git a/AndroidStarter/app/libs/clevertap-android-sdk-3.5.1.aar b/AndroidStarter/app/libs/clevertap-android-sdk-3.5.1.aar deleted file mode 100644 index 790eff3b7..000000000 Binary files a/AndroidStarter/app/libs/clevertap-android-sdk-3.5.1.aar and /dev/null differ diff --git a/AndroidStarter/app/libs/clevertap-android-sdk-3.6.0.aar b/AndroidStarter/app/libs/clevertap-android-sdk-3.6.0.aar new file mode 100644 index 000000000..c4220ec77 Binary files /dev/null and b/AndroidStarter/app/libs/clevertap-android-sdk-3.6.0.aar differ diff --git a/CHANGELOG.md b/CHANGELOG.md index f9cc8f6c0..0eaa2adc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## CHANGE LOG +### Version 3.6.0 (September 25, 2019) +* Adds support for AB Tests. (in closed Beta) +* Adds support for deep link query parameters in InApps. +* Deprecated GCM. +* Deprecated EventHandler, SessionHandler and DataHandler classes. +* Workaround for below Oreo Android OS bug causing ANRs while using Push Amplification. +* Bug fixes and performance improvements + ### Version 3.5.1 (May 24, 2019) * Removes requirement for Manifest entry to enable automatic recording of Push Notification Viewed event * Fixes certain Landscape InApp Notification display issues diff --git a/README.md b/README.md index 62bcc8b32..510e9a529 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ For more information check out our [website](https://clevertap.com "CleverTap") ```markdown dependencies { - implementation 'com.clevertap.android:clevertap-android-sdk:3.5.1' + implementation 'com.clevertap.android:clevertap-android-sdk:3.6.0' } ``` @@ -27,7 +27,7 @@ For more information check out our [website](https://clevertap.com "CleverTap") ```markdown dependencies { - implementation (name: 'clevertap-android-sdk-3.5.1', ext: 'aar') + implementation (name: 'clevertap-android-sdk-3.6.0', ext: 'aar') } ``` @@ -35,7 +35,7 @@ For more information check out our [website](https://clevertap.com "CleverTap") ```markdown dependencies { - implementation 'com.clevertap.android:clevertap-android-sdk:3.5.1' + implementation 'com.clevertap.android:clevertap-android-sdk:3.6.0' implementation 'com.android.support:support-v4:28.0.0' implementation 'com.google.firebase:firebase-messaging:17.3.0' implementation 'com.google.android.gms:play-services-ads:15.0.1' // Required only if you enable Google ADID collection in the SDK (turned off by default). diff --git a/clevertap-android-sdk-3.5.1.aar b/clevertap-android-sdk-3.5.1.aar deleted file mode 100644 index 790eff3b7..000000000 Binary files a/clevertap-android-sdk-3.5.1.aar and /dev/null differ diff --git a/clevertap-android-sdk-3.6.0.aar b/clevertap-android-sdk-3.6.0.aar new file mode 100644 index 000000000..c4220ec77 Binary files /dev/null and b/clevertap-android-sdk-3.6.0.aar differ