@selligent-marketing-cloud/selligent-react-native 2.9.0 → 2.10.0
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.
- package/CHANGELOG.md +20 -0
- package/README.md +117 -12
- package/android/build/generated/source/buildConfig/debug/com/selligent/BuildConfig.java +1 -1
- package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +1 -1
- package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json +4 -2
- package/android/build/intermediates/aar_metadata/debug/aar-metadata.properties +2 -0
- package/android/build/intermediates/compile_library_classes_jar/debug/classes.jar +0 -0
- package/android/build/intermediates/compile_r_class_jar/debug/R.jar +0 -0
- package/android/build/intermediates/compile_symbol_list/debug/R.txt +449 -336
- package/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +1 -0
- package/android/build/intermediates/incremental/{packageDebugResources → debug/packageDebugResources}/merger.xml +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/BroadcastDataFactory.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/BroadcastEventDataParser.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/BroadcastEventType.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/BuildConfig.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/ButtonBroadcastEventDataParser.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/ClearCacheIntervalValue.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/Event.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/EventReceiver.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/EventType.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/GCMTokenBroadcastEventDataParser.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/InAppMessageBroadcastEventDataParser.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/InAppMessageRefreshType.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/RNSelligent$2.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/RNSelligent$3.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/RNSelligent$4.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/RNSelligent$5.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/RNSelligent.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/RNSelligentPackage.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/RemoteMessageDisplayType.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/SMEventFactory.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/SMSettingsFactory.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/selligent/Settings.class +0 -0
- package/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +1 -1
- package/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml +1 -1
- package/android/build/intermediates/packaged_manifests/debug/output-metadata.json +4 -2
- package/android/build/intermediates/runtime_library_classes_jar/debug/classes.jar +0 -0
- package/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +198 -117
- package/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
- package/android/build.gradle +27 -31
- package/android/libs/sdk-release.aar +0 -0
- package/ios/libSelligentMobile.a +0 -0
- package/package.json +3 -3
- package/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +0 -1
|
Binary file
|
package/android/build.gradle
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
import com.android.build.api.variant.BuildConfigField
|
|
2
|
+
|
|
3
|
+
apply plugin: 'com.android.library'
|
|
4
|
+
apply plugin: 'maven-publish'
|
|
5
|
+
|
|
1
6
|
buildscript {
|
|
2
7
|
repositories {
|
|
3
8
|
google()
|
|
@@ -5,20 +10,31 @@ buildscript {
|
|
|
5
10
|
}
|
|
6
11
|
|
|
7
12
|
dependencies {
|
|
8
|
-
classpath 'com.android.tools.build:gradle:
|
|
13
|
+
classpath 'com.android.tools.build:gradle:7.2.2'
|
|
9
14
|
}
|
|
10
15
|
}
|
|
11
16
|
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
def buildTypeAttr = Attribute.of("com.android.build.api.attributes.BuildTypeAttr", String)
|
|
18
|
+
|
|
19
|
+
dependencies.attributesSchema {
|
|
20
|
+
// registers this attribute to the attributes schema
|
|
21
|
+
attribute(buildTypeAttr)
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
configurations {
|
|
25
|
+
implementation {
|
|
26
|
+
attributes {
|
|
27
|
+
attribute(buildTypeAttr, "release")
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
14
31
|
|
|
15
32
|
android {
|
|
16
|
-
compileSdkVersion
|
|
17
|
-
buildToolsVersion "30.0.2"
|
|
33
|
+
compileSdkVersion 32
|
|
18
34
|
|
|
19
35
|
defaultConfig {
|
|
20
36
|
minSdkVersion 21
|
|
21
|
-
targetSdkVersion
|
|
37
|
+
targetSdkVersion 32
|
|
22
38
|
ndkVersion = "21.4.7075529"
|
|
23
39
|
versionCode 1
|
|
24
40
|
versionName "1.0"
|
|
@@ -34,7 +50,7 @@ androidComponents {
|
|
|
34
50
|
def selligentSettings = loadSelligentSettings(variant)
|
|
35
51
|
if (selligentSettings != null) {
|
|
36
52
|
try {
|
|
37
|
-
variant.
|
|
53
|
+
variant.buildConfigFields.put("SELLIGENT_SETTINGS", new BuildConfigField("String", "\"" + selligentSettings + "\"", "Selligent settings"))
|
|
38
54
|
} catch (MissingMethodException ignored) {
|
|
39
55
|
throw new Exception("Selligent requires Android Gradle plugin version 4.2.0 or higher.")
|
|
40
56
|
}
|
|
@@ -55,40 +71,20 @@ dependencies {
|
|
|
55
71
|
implementation 'com.facebook.react:react-native:+'
|
|
56
72
|
implementation 'com.android.support:cardview-v7:27.1.1'
|
|
57
73
|
implementation 'com.plotprojects:plot-android:3.13.1'
|
|
58
|
-
implementation 'com.google.code.gson:gson:2.8.
|
|
74
|
+
implementation 'com.google.code.gson:gson:2.8.9'
|
|
59
75
|
implementation 'com.google.firebase:firebase-messaging:21.0.0'
|
|
60
|
-
implementation 'androidx.work:work-runtime:2.
|
|
76
|
+
implementation 'androidx.work:work-runtime:2.7.1'
|
|
61
77
|
implementation 'androidx.concurrent:concurrent-futures:1.1.0'
|
|
62
78
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
63
79
|
}
|
|
64
80
|
|
|
65
|
-
def configureReactNativePom(def pom) {
|
|
66
|
-
def packageJson = new groovy.json.JsonSlurper().parseText(file('../package.json').text)
|
|
67
|
-
|
|
68
|
-
pom.project {
|
|
69
|
-
name packageJson.title
|
|
70
|
-
artifactId packageJson.name
|
|
71
|
-
version = packageJson.version
|
|
72
|
-
group = "com.selligent"
|
|
73
|
-
description packageJson.description
|
|
74
|
-
url packageJson.repository.baseUrl
|
|
75
|
-
|
|
76
|
-
licenses {
|
|
77
|
-
license {
|
|
78
|
-
name packageJson.license
|
|
79
|
-
url packageJson.repository.baseUrl + '/blob/master/' + packageJson.licenseFilename
|
|
80
|
-
distribution 'repo'
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
81
|
afterEvaluate { project ->
|
|
87
82
|
|
|
88
83
|
task androidJavadoc(type: Javadoc) {
|
|
89
84
|
source = android.sourceSets.main.java.srcDirs
|
|
90
85
|
classpath += files(android.bootClasspath)
|
|
91
|
-
|
|
86
|
+
project.getConfigurations().getByName('implementation').setCanBeResolved(true)
|
|
87
|
+
classpath += files(project.getConfigurations().getByName('implementation').asList())
|
|
92
88
|
include '**/*.java'
|
|
93
89
|
}
|
|
94
90
|
|
|
Binary file
|
package/ios/libSelligentMobile.a
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selligent-marketing-cloud/selligent-react-native",
|
|
3
3
|
"title": "Selligent React Native",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.10.0",
|
|
5
5
|
"description": "React Native bridge for Selligent SDK",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"react-native": "*"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"react": "
|
|
30
|
-
"react-native": "^0.
|
|
29
|
+
"react": "18.1.0",
|
|
30
|
+
"react-native": "^0.70.0"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#Wed May 18 23:29:26 CEST 2022
|