Skip to content

Commit 5124bed

Browse files
committed
Release corev7.0.3 (#699)
* feat(SDK-4183): updates docs for core SDK release 7.0.3 * feat(SDK-4163): updates the release date - changes title from bug fixes -> new features * feat(SDK-4163): updates the release date in changelog
1 parent 586dcdc commit 5124bed

File tree

8 files changed

+25
-10
lines changed

8 files changed

+25
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## CHANGE LOG.
22

3+
### November 29, 2024
4+
* [CleverTap Android SDK v7.0.3](docs/CTCORECHANGELOG.md)
5+
36
### October 10, 2024
47
* [CleverTap Android SDK v7.0.2](docs/CTCORECHANGELOG.md)
58

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ We publish the SDK to `mavenCentral` as an `AAR` file. Just declare it as depend
2626

2727
```groovy
2828
dependencies {
29-
implementation "com.clevertap.android:clevertap-android-sdk:7.0.2"
29+
implementation "com.clevertap.android:clevertap-android-sdk:7.0.3"
3030
}
3131
```
3232

3333
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:
3434

3535
```groovy
3636
dependencies {
37-
implementation (name: "clevertap-android-sdk-7.0.2", ext: 'aar')
37+
implementation (name: "clevertap-android-sdk-7.0.3", ext: 'aar')
3838
}
3939
```
4040

@@ -46,7 +46,7 @@ Add the Firebase Messaging library and Android Support Library v4 as dependencie
4646

4747
```groovy
4848
dependencies {
49-
implementation "com.clevertap.android:clevertap-android-sdk:7.0.2"
49+
implementation "com.clevertap.android:clevertap-android-sdk:7.0.3"
5050
implementation "androidx.core:core:1.9.0"
5151
implementation "com.google.firebase:firebase-messaging:23.0.6"
5252
implementation "com.google.android.gms:play-services-ads:22.3.0" // Required only if you enable Google ADID collection in the SDK (turned off by default).

docs/CTCORECHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## CleverTap Android SDK CHANGE LOG
22

3+
### Version 7.0.3 (November 29, 2024)
4+
5+
#### New Features
6+
* Changes campaign triggering evaluation of event names, event properties, and profile properties to ignore letter case and whitespace.
7+
* Adds support for previewing in-apps created through the new dashboard advanced builder.
8+
39
### Version 7.0.2 (October 10, 2024)
410

511
#### New Features

docs/CTGEOFENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add the following dependencies to the `build.gradle`
1717

1818
```Groovy
1919
implementation "com.clevertap.android:clevertap-geofence-sdk:1.3.0"
20-
implementation "com.clevertap.android:clevertap-android-sdk:7.0.2" // 3.9.0 and above
20+
implementation "com.clevertap.android:clevertap-android-sdk:7.0.3" // 3.9.0 and above
2121
implementation "com.google.android.gms:play-services-location:21.0.0"
2222
implementation "androidx.work:work-runtime:2.7.1" // required for FETCH_LAST_LOCATION_PERIODIC
2323
implementation "androidx.concurrent:concurrent-futures:1.1.0" // required for FETCH_LAST_LOCATION_PERIODIC

docs/CTPUSHTEMPLATES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ CleverTap Push Templates SDK helps you engage with your users using fancy push n
2121

2222
```groovy
2323
implementation "com.clevertap.android:push-templates:1.2.4"
24-
implementation "com.clevertap.android:clevertap-android-sdk:7.0.2" // 4.4.0 and above
24+
implementation "com.clevertap.android:clevertap-android-sdk:7.0.3" // 4.4.0 and above
2525
```
2626

2727
2. Add the following line to your Application class before the `onCreate()`

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ coroutines_test = "1.7.3"
5454
installreferrer = "2.2"
5555

5656
#SDK Versions
57-
clevertap_android_sdk = "7.0.2"
57+
clevertap_android_sdk = "7.0.3"
5858
clevertap_rendermax_sdk = "1.0.3"
5959
clevertap_geofence_sdk = "1.3.0"
6060
clevertap_hms_sdk = "1.3.4"

sample/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ android {
1818
applicationId "com.clevertap.demo"
1919
minSdkVersion 21
2020
targetSdkVersion 34
21-
versionCode 7000002
22-
versionName "7.0.2"
21+
versionCode 7000003
22+
versionName "7.0.3"
2323
multiDexEnabled true
2424
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2525
}
@@ -159,12 +159,12 @@ dependencies {
159159
implementation "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72"
160160
implementation "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.1.1"*/
161161

162-
remoteImplementation("com.clevertap.android:clevertap-android-sdk:7.0.2")
162+
remoteImplementation("com.clevertap.android:clevertap-android-sdk:7.0.3")
163163
remoteImplementation("com.clevertap.android:clevertap-geofence-sdk:1.3.0")
164164
remoteImplementation("com.clevertap.android:push-templates:1.2.4")
165165
remoteImplementation("com.clevertap.android:clevertap-hms-sdk:1.3.4")
166166

167-
stagingImplementation("com.clevertap.android:clevertap-android-sdk:7.0.2")
167+
stagingImplementation("com.clevertap.android:clevertap-android-sdk:7.0.3")
168168
stagingImplementation("com.clevertap.android:clevertap-geofence-sdk:1.3.0")
169169
stagingImplementation("com.clevertap.android:push-templates:1.2.4")
170170
stagingImplementation("com.clevertap.android:clevertap-hms-sdk:1.3.4")

templates/CTCORECHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## CleverTap Android SDK CHANGE LOG
22

3+
### Version 7.0.3 (November 29, 2024)
4+
5+
#### New Features
6+
* Changes campaign triggering evaluation of event names, event properties, and profile properties to ignore letter case and whitespace.
7+
* Adds support for previewing in-apps created through the new dashboard advanced builder.
8+
39
### Version 7.0.2 (October 10, 2024)
410

511
#### New Features

0 commit comments

Comments
 (0)