Skip to content

Commit

Permalink
Preparing for release v3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
darshanclevertap committed Nov 28, 2018
1 parent 3b79de8 commit 87c11da
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 9 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.3.2', ext: 'aar') //CleverTap Android SDK, make sure the AAR file is in the libs folder
implementation (name: 'clevertap-android-sdk-3.3.3', 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.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## CHANGE LOG

### Version 3.3.3 (November 28, 2018)
* Fixes the bug which caused CTA buttons to not open the mentioned deeplink

### Version 3.3.2 (November 12, 2018)
* Fixes the app crash issue for Interstitial InApp notification template when not using ExoPlayer
* Fixes the bug empty buttons in Half Interstitial InApp notification template when no buttons are provided
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.3.2'
implementation 'com.clevertap.android:clevertap-android-sdk:3.3.3'
}
```

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.3.2', ext: 'aar')
implementation (name: 'clevertap-android-sdk-3.3.3', 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.3.2'
implementation 'com.clevertap.android:clevertap-android-sdk:3.3.3'
implementation 'com.android.support:support-v4:27.1.1'
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.3.2.aar
Binary file not shown.
Binary file added clevertap-android-sdk-3.3.3..aar
Binary file not shown.
6 changes: 3 additions & 3 deletions clevertap-android-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ext {
siteUrl = 'https://github.com/CleverTap/clevertap-android-sdk'
gitUrl = 'https://github.com/CleverTap/clevertap-android-sdk.git'

libraryVersion = '3.3.2'
libraryVersion = '3.3.3'

developerId = 'clevertap'
developerName = 'CleverTap'
Expand Down Expand Up @@ -57,11 +57,11 @@ android {

buildTypes {
debug {
buildConfigField "String", "SDK_VERSION_STRING", '"!SDK-VERSION-STRING!:com.clevertap.android:clevertap-android-sdk:3.3.2.0"'
buildConfigField "String", "SDK_VERSION_STRING", '"!SDK-VERSION-STRING!:com.clevertap.android:clevertap-android-sdk:3.3.3.0"'
}

release {
buildConfigField "String", "SDK_VERSION_STRING", '"!SDK-VERSION-STRING!:com.clevertap.android:clevertap-android-sdk:3.3.2.0"'
buildConfigField "String", "SDK_VERSION_STRING", '"!SDK-VERSION-STRING!:com.clevertap.android:clevertap-android-sdk:3.3.3.0"'
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
Expand Down
4 changes: 2 additions & 2 deletions clevertap-android-sdk/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.clevertap.android.sdk"
android:versionCode="30302"
android:versionName="3.3.2">
android:versionCode="30303"
android:versionName="3.3.3">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="27"/>

<application>
Expand Down

0 comments on commit 87c11da

Please sign in to comment.