Skip to content

Commit ef32557

Browse files
committed
Update CleverTap SDK to 6.1.1
Update AGP to 7.4.2 Upadte Gradle wrapper to 7.5
1 parent 7990d25 commit ef32557

File tree

21 files changed

+35
-28
lines changed

21 files changed

+35
-28
lines changed

AndroidSDK/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest package="com.leanplum"
3-
xmlns:android="http://schemas.android.com/apk/res/android"
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
43
android:versionCode="1"
54
android:versionName="1.0">
65

AndroidSDK/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dependencies {
2020
}
2121

2222
android {
23+
namespace "com.leanplum"
2324
compileSdkVersion COMPILE_SDK_VERSION
2425

2526
defaultConfig {

AndroidSDKCore/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
apply from: "../common-methods.gradle"
99

1010
android {
11-
11+
namespace 'com.leanplum.core'
1212
compileSdkVersion COMPILE_SDK_VERSION
1313
useLibrary 'org.apache.http.legacy'
1414

AndroidSDKCore/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest package="com.leanplum.core"
2-
xmlns:android="http://schemas.android.com/apk/res/android">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32

43
<!-- Minimum permissions needed for SDK to work. -->
54
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

AndroidSDKFcm/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ plugins {
88
apply from: "../common-methods.gradle"
99

1010
android {
11+
namespace 'com.leanplum.fcm'
1112
compileSdkVersion COMPILE_SDK_VERSION
1213
defaultConfig {
1314
minSdkVersion MIN_SDK_VERSION

AndroidSDKFcm/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest package="com.leanplum.fcm"
2-
xmlns:android="http://schemas.android.com/apk/res/android">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32

43
<application>
54
<!-- Leanplum FCM Message Handling Service. -->

AndroidSDKHms/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ plugins {
88
apply from: "../common-methods.gradle"
99

1010
android {
11+
namespace 'com.leanplum.hms'
1112
compileSdkVersion COMPILE_SDK_VERSION
1213
defaultConfig {
13-
minSdkVersion 18 // version 18 is needed by agconnect plugin
14+
minSdkVersion MIN_SDK_VERSION
1415
defaultConfig {
1516
consumerProguardFiles 'consumer-proguard-rules.pro'
1617
}
@@ -33,8 +34,8 @@ dependencies {
3334
api project(':AndroidSDKCore')
3435
api project(':AndroidSDKPush')
3536

36-
implementation 'com.huawei.agconnect:agconnect-core:1.7.2.300'
37-
implementation 'com.huawei.hms:push:6.7.0.300'
37+
implementation 'com.huawei.agconnect:agconnect-core:1.9.1.300'
38+
implementation 'com.huawei.hms:push:6.11.0.300'
3839
}
3940

4041
task generateJavadoc(type: Javadoc) {

AndroidSDKHms/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest package="com.leanplum.hms"
2-
xmlns:android="http://schemas.android.com/apk/res/android">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32

43
<application>
54
<service

AndroidSDKLocation/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ plugins {
88
apply from: "../common-methods.gradle"
99

1010
android {
11+
namespace 'com.leanplum.location'
1112
compileSdkVersion COMPILE_SDK_VERSION
1213
defaultConfig {
1314
minSdkVersion MIN_SDK_VERSION

AndroidSDKLocation/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest package="com.leanplum.location"
2-
xmlns:android="http://schemas.android.com/apk/res/android">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32

43
<!-- Permissions for geofencing. -->
54
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

0 commit comments

Comments
 (0)