Skip to content

Commit

Permalink
Preparing for release v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darshanclevertap committed Sep 25, 2019
1 parent 7d210a9 commit 3019372
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AndroidStarter/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Binary file not shown.
Binary file not shown.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ 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'
}
```

Alternatively, you can download and add the AAR file included in this repo in your Module libs directory and tell gradle to install it like this:

```markdown
dependencies {
implementation (name: 'clevertap-android-sdk-3.5.1', ext: 'aar')
implementation (name: 'clevertap-android-sdk-3.6.0', ext: 'aar')
}
```

Then add the Firebase Messaging library and Android Support Library v4 as dependencies to your Module `build.gradle` file.

```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).
Expand Down
Binary file removed clevertap-android-sdk-3.5.1.aar
Binary file not shown.
Binary file added clevertap-android-sdk-3.6.0.aar
Binary file not shown.

0 comments on commit 3019372

Please sign in to comment.