Skip to content

Commit

Permalink
Merge pull request #19 from CleverTap/1.2.0
Browse files Browse the repository at this point in the history
Update CleverTap sdk to v4.0.0 SDK-375
  • Loading branch information
piyush-kukadiya authored Oct 1, 2020
2 parents 7831025 + 6b93b12 commit 8da08bd
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 26 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGE LOG

Version 1.2.0 (1 October, 2020)
===================================
*(Supports analytics-android 4.5.0 and CleverTap 4.0.0)*

Version 1.1.10 (2 September, 2020)
===================================
*(Supports analytics-android 4.5.0 and CleverTap 3.9.0)*
Expand Down
28 changes: 11 additions & 17 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.google.gms:google-services:4.2.0'
classpath 'com.google.gms:google-services:4.3.3'
}
}

Expand All @@ -32,7 +32,7 @@ ext {
siteUrl = 'https://github.com/CleverTap/clevertap-segment-android'
gitUrl = 'https://github.com/CleverTap/clevertap-segment-android.git'

libraryVersion = '1.1.10'
libraryVersion = '1.2.0'

developerId = 'clevertap'
developerName = 'CleverTap'
Expand All @@ -52,13 +52,12 @@ apply plugin: 'com.jfrog.bintray'


android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
compileSdkVersion 29
buildToolsVersion '29.0.3'

defaultConfig {
minSdkVersion 14
targetSdkVersion 28
compileSdkVersion 28
minSdkVersion 16
targetSdkVersion 29
}

compileOptions {
Expand Down Expand Up @@ -151,14 +150,9 @@ dependencies {
}
implementation fileTree(dir: 'libs', include: ['*.jar'])
compileOnly 'com.segment.analytics.android:analytics:4.5.0'
compileOnly 'com.android.support:support-v4:28.0.0'
compileOnly 'androidx.annotation:annotation:1.1.0'

implementation 'com.clevertap.android:clevertap-android-sdk:3.9.0'
implementation 'com.android.installreferrer:installreferrer:1.0'
// Mandatory if using segment sdk version 1.1.4 or higher

compileOnly 'com.google.android.gms:play-services-base:16.1.0'
compileOnly 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.clevertap.android:clevertap-android-sdk:4.0.0'

testImplementation 'junit:junit:4.12'
testImplementation('org.robolectric:robolectric:3.0') {
Expand All @@ -178,9 +172,9 @@ dependencies {
testImplementation 'org.hamcrest:hamcrest-library:1.3'

testImplementation "org.json:json:20140107"
androidTestImplementation 'com.android.support:support-annotations:28.0.0'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation 'androidx.annotation:annotation:1.1.0'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test:rules:1.3.0'
androidTestImplementation 'org.hamcrest:hamcrest-library:1.3'

}
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ POM_LICENCE_DIST=repo

POM_DEVELOPER_ID=clevertap
POM_DEVELOPER_NAME=CleverTap
android.useAndroidX=true
12 changes: 3 additions & 9 deletions src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.segment.analytics.android.integrations.clevertap"

android:versionCode="10110"
android:versionName="1.1.10">
android:versionCode="10200"
android:versionName="1.2.0">

<application>
<receiver
android:name="com.clevertap.android.sdk.CTPushNotificationReceiver"
android:exported="false"
android:enabled="true">
</receiver>
</application>
<application></application>

</manifest>

0 comments on commit 8da08bd

Please sign in to comment.