@adobe/react-native-aepmessaging 6.0.0 → 6.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ buildscript {
8
8
  }
9
9
 
10
10
  dependencies {
11
- classpath "com.android.tools.build:gradle:7.2.1"
11
+ classpath 'com.android.tools.build:gradle:8.1.1'
12
12
  // noinspection DifferentKotlinGradleVersion
13
13
  classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
14
14
  }
@@ -36,31 +36,14 @@ def getExtOrIntegerDefault(name) {
36
36
  return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["ReactNativeMessaging_" + name]).toInteger()
37
37
  }
38
38
 
39
- def supportsNamespace() {
40
- def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')
41
- def major = parsed[0].toInteger()
42
- def minor = parsed[1].toInteger()
43
-
44
- // Namespace support was added in 7.3.0
45
- if (major == 7 && minor >= 3) {
46
- return true
47
- }
48
-
49
- return major >= 8
50
- }
51
-
52
39
  android {
53
- if (supportsNamespace()) {
54
- namespace "com.adobe.marketing.mobile.reactnative.messaging"
55
40
 
56
- sourceSets {
57
- main {
58
- manifest.srcFile "src/main/AndroidManifestNew.xml"
59
- }
60
- }
41
+ def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
42
+ if (agpVersion >= 8) {
43
+ namespace = "com.adobe.marketing.mobile.reactnative.messaging"
61
44
  }
62
45
 
63
- compileSdkVersion getExtOrIntegerDefault("compileSdkVersion")
46
+ compileSdk getExtOrIntegerDefault("compileSdk")
64
47
 
65
48
  defaultConfig {
66
49
  minSdkVersion getExtOrIntegerDefault("minSdkVersion")
@@ -1,5 +1,5 @@
1
1
  ReactNativeMessaging_kotlinVersion=1.7.0
2
2
  ReactNativeMessaging_minSdkVersion=21
3
- ReactNativeMessaging_targetSdkVersion=31
4
- ReactNativeMessaging_compileSdkVersion=31
3
+ ReactNativeMessaging_targetSdkVersion=34
4
+ ReactNativeMessaging_compileSdk=34
5
5
  ReactNativeMessaging_ndkversion=21.4.7075529
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/react-native-aepmessaging",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "Adobe Experience Platform support for React Native apps.",
5
5
  "homepage": "https://developer.adobe.com/client-sdks/documentation/",
6
6
  "license": "Apache-2.0",
@@ -38,5 +38,5 @@
38
38
  "installConfig": {
39
39
  "hoistingLimits": "dependencies"
40
40
  },
41
- "gitHead": "7df5d257041d7bc1072177e21ff4286cf04773f6"
41
+ "gitHead": "3cd87ac432f001bbbb5cf16febc47597899fcd08"
42
42
  }