Skip to content

Commit

Permalink
Merge pull request #66 from CleverTap/0.3.8
Browse files Browse the repository at this point in the history
Releasing v0.3.8
  • Loading branch information
darshanclevertap authored Jan 15, 2020
2 parents 01e22bf + 1d05c7d commit 6e77841
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

Version 0.3.8 *(15 January 2020)*
-------------------------------------------
- Update to CleverTap Android SDK v3.6.3

Version 0.3.7 *(28 December 2019)*
-------------------------------------------
- Added method to custom handle Push Notifications in Android
Expand Down
10 changes: 5 additions & 5 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.android.tools.build:gradle:3.5.3'
}
}

Expand All @@ -22,8 +22,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 35
versionName "0.3.5"
versionCode 38
versionName "0.3.8"
}
buildTypes {
release {
Expand All @@ -40,9 +40,9 @@ dependencies {
maven { url "$rootDir/../node_modules/react-native/android" }
}

compile 'com.clevertap.android:clevertap-android-sdk:3.6.0'
implementation 'com.clevertap.android:clevertap-android-sdk:3.6.3'
//compile 'com.android.support:appcompat-v7:28.0.0'
compile 'com.facebook.react:react-native:+'
implementation 'com.facebook.react:react-native:+'
}

repositories {
Expand Down
3 changes: 1 addition & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
```
android.useAndroidX=true
```android.useAndroidX=true
android.enableJetifier=true
```
Expand Down
7 changes: 4 additions & 3 deletions docs/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Note: Need to use **@import CleverTapSDK;** instead of **#import <CleverTapSDK/C
List<ReactPackage> packages = new PackageList(this).getPackages();

// Packages that cannot be autolinked yet can be added manually here, for

// example:

packages.add(new CleverTapPackage());
packages.add(new CleverTapPackage());// only needed when not auto-linking
return packages;

// ...
Expand All @@ -57,8 +57,9 @@ Note: Need to use **@import CleverTapSDK;** instead of **#import <CleverTapSDK/C

3. Optionally Override onCreate in MainActivity.java to notify CleverTap of a launch deep link (`android/app/src/[...]/MainActivity.java`)
```java
import com.clevertap.react.CleverTapModule;

import com.clevertap.react.CleverTapModule;
import android.os.Bundle;

public class MainActivity extends ReactActivity {
// ...

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clevertap-react-native",
"version": "0.3.7",
"version": "0.3.8",
"description": "CleverTap React Native SDK.",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 6e77841

Please sign in to comment.