react-native-moengage-personalize 1.0.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.
Files changed (32) hide show
  1. package/LICENSE.md +12 -0
  2. package/README.md +3 -0
  3. package/ReactNativeMoEngagePersonalize.podspec +30 -0
  4. package/android/build.gradle +69 -0
  5. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  6. package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  7. package/android/gradlew +185 -0
  8. package/android/gradlew.bat +89 -0
  9. package/android/src/main/AndroidManifest.xml +1 -0
  10. package/android/src/main/java/com/moengage/react/personalize/MoEngagePersonalizeHandler.kt +104 -0
  11. package/android/src/main/java/com/moengage/react/personalize/MoengagePersonalizePackage.kt +50 -0
  12. package/android/src/newarch/java/com/moengage/react/personalize/MoEReactPersonalize.kt +54 -0
  13. package/android/src/oldarch/java/com/moengage/react/personalize/MoEReactPersonalize.kt +63 -0
  14. package/ios/MoEReactNativePersonalizeHandler.h +26 -0
  15. package/ios/MoEReactNativePersonalizeHandler.m +118 -0
  16. package/ios/MoEngagePersonalizeBridge.h +15 -0
  17. package/ios/MoEngagePersonalizeBridge.mm +46 -0
  18. package/package.json +52 -0
  19. package/src/NativeMoEngagePersonalize.ts +51 -0
  20. package/src/index.ts +164 -0
  21. package/src/internal/Constants.ts +16 -0
  22. package/src/internal/MoEngagePersonalizeHandler.ts +97 -0
  23. package/src/internal/utils/PayloadBuilder.ts +91 -0
  24. package/src/internal/utils/PayloadParser.ts +117 -0
  25. package/src/model/DataSource.ts +12 -0
  26. package/src/model/ExperienceCampaign.ts +47 -0
  27. package/src/model/ExperienceCampaignFailure.ts +28 -0
  28. package/src/model/ExperienceCampaignMeta.ts +34 -0
  29. package/src/model/ExperienceCampaignsMetadata.ts +29 -0
  30. package/src/model/ExperienceCampaignsResult.ts +30 -0
  31. package/src/model/ExperienceFailureReason.ts +36 -0
  32. package/src/model/ExperienceStatus.ts +14 -0
package/LICENSE.md ADDED
@@ -0,0 +1,12 @@
1
+ Copyright (c) 2026 MoEngage, Inc.
2
+ All rights reserved.
3
+ Use of source code or binaries contained within MoEngage's SDKs is permitted only to enable use of the MoEngage platform by customers of MoEngage. The Licensee may not:
4
+ - permit any third party to use the Software;
5
+ - modify or translate the Software except as otherwise permitted;
6
+ - reverse engineer, decompile, or disassemble the Software;
7
+ - copy the Software, except as expressly provided above; or
8
+ - remove or obscure any proprietary rights notices or labels on the Software.
9
+ - Licensee may not transfer the Software or any rights under this Agreement without the Licensor's prior written consent.
10
+ - MoEngage owns the Software and all intellectual property rights embodied therein, including copyrights and valuable trade secrets embodied in the Software. The Licensee shall not alter or remove this copyright notice.
11
+
12
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF THE USER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # react-native-moengage-personalize
2
+
3
+ This plugin is for using the Personalize Experience feature of the MoEngage platform.
@@ -0,0 +1,30 @@
1
+ require "json"
2
+
3
+ package = JSON.parse(File.read(File.join(__dir__, "package.json")))
4
+
5
+ Pod::Spec.new do |s|
6
+ s.name = "ReactNativeMoEngagePersonalize"
7
+ s.version = package["version"]
8
+ s.summary = package["description"]
9
+ s.homepage = "https://www.moengage.com"
10
+ s.license = package['license']
11
+ s.authors = package["author"]
12
+
13
+ s.platforms = { :ios => "13.0" }
14
+ s.source = { :git => "https://github.com/moengage/React-Native.git", :tag => "#{s.version}" }
15
+
16
+ s.source_files = "ios/**/*.{h,m,mm,swift}"
17
+ s.public_header_files = 'ios/**/*.h'
18
+
19
+ s.dependency "React-Core"
20
+ s.dependency "MoEngagePluginPersonalize",'1.0.0'
21
+ s.dependency 'ReactNativeMoEngage'
22
+ s.module_map = false
23
+
24
+ if defined?(install_modules_dependencies()) != nil
25
+ install_modules_dependencies(s);
26
+ else
27
+ s.dependency "React-Core"
28
+ end
29
+
30
+ end
@@ -0,0 +1,69 @@
1
+ import com.moengage.gradle.android.library.plugin.configs.BuildConfigType
2
+
3
+ ext {
4
+ moengageNativeBOMVersion = "2.2.2"
5
+ moengagePluginBaseBOMVersion = "3.0.1"
6
+ kotlinVersion = "1.9.23"
7
+ }
8
+
9
+ buildscript {
10
+ repositories {
11
+ google()
12
+ mavenCentral()
13
+ gradlePluginPortal()
14
+ }
15
+
16
+ dependencies {
17
+ classpath 'com.android.tools.build:gradle:8.13.2'
18
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
19
+ classpath "com.moengage.android.hybrid.module.config.plugin:com.moengage.android.hybrid.module.config.plugin.gradle.plugin:0.0.4"
20
+ }
21
+ }
22
+
23
+ apply plugin: 'com.moengage.android.hybrid.module.config.plugin'
24
+ apply plugin: 'com.facebook.react'
25
+
26
+ hybridModuleConfig.configurePlugin {
27
+ kotlinOptions {
28
+ enableJvmTarget = false
29
+ compilerArgs = ['-Xjvm-default=all']
30
+ }
31
+ buildFeature {
32
+ buildConfigField(
33
+ BuildConfigType.BOOLEAN,
34
+ "IS_NEW_ARCHITECTURE_ENABLED",
35
+ isNewArchitectureEnabled().toString()
36
+ )
37
+ }
38
+ }
39
+
40
+ android {
41
+ namespace "com.moengage.react.personalize"
42
+ sourceSets {
43
+ main {
44
+ if (isNewArchitectureEnabled()) {
45
+ java.srcDirs += ['src/newarch']
46
+ } else {
47
+ java.srcDirs += ['src/oldarch']
48
+ }
49
+ }
50
+ }
51
+ }
52
+
53
+ dependencies {
54
+ compileOnly('com.facebook.react:react-native')
55
+ compileOnly "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
56
+
57
+ implementation(platform("com.moengage:android-bom:$moengageNativeBOMVersion"))
58
+ compileOnly("com.moengage:moe-android-sdk")
59
+ api("com.moengage:personalization-core")
60
+
61
+ implementation(platform("com.moengage:plugin-base-bom:$moengagePluginBaseBOMVersion"))
62
+ implementation("com.moengage:plugin-base-personalization:0.0.3-SNAPSHOT")
63
+ implementation("com.moengage:plugin-base-personalization:0.0.3-SNAPSHOT")
64
+ compileOnly("com.moengage:plugin-base")
65
+ }
66
+
67
+ def isNewArchitectureEnabled() {
68
+ return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
69
+ }
@@ -0,0 +1,5 @@
1
+ distributionBase=GRADLE_USER_HOME
2
+ distributionPath=wrapper/dists
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip
4
+ zipStoreBase=GRADLE_USER_HOME
5
+ zipStorePath=wrapper/dists
@@ -0,0 +1,185 @@
1
+ #!/usr/bin/env sh
2
+
3
+ #
4
+ # Copyright 2015 the original author or authors.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # https://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+
19
+ ##############################################################################
20
+ ##
21
+ ## Gradle start up script for UN*X
22
+ ##
23
+ ##############################################################################
24
+
25
+ # Attempt to set APP_HOME
26
+ # Resolve links: $0 may be a link
27
+ PRG="$0"
28
+ # Need this for relative symlinks.
29
+ while [ -h "$PRG" ] ; do
30
+ ls=`ls -ld "$PRG"`
31
+ link=`expr "$ls" : '.*-> \(.*\)$'`
32
+ if expr "$link" : '/.*' > /dev/null; then
33
+ PRG="$link"
34
+ else
35
+ PRG=`dirname "$PRG"`"/$link"
36
+ fi
37
+ done
38
+ SAVED="`pwd`"
39
+ cd "`dirname \"$PRG\"`/" >/dev/null
40
+ APP_HOME="`pwd -P`"
41
+ cd "$SAVED" >/dev/null
42
+
43
+ APP_NAME="Gradle"
44
+ APP_BASE_NAME=`basename "$0"`
45
+
46
+ # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
47
+ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
48
+
49
+ # Use the maximum available, or set MAX_FD != -1 to use that value.
50
+ MAX_FD="maximum"
51
+
52
+ warn () {
53
+ echo "$*"
54
+ }
55
+
56
+ die () {
57
+ echo
58
+ echo "$*"
59
+ echo
60
+ exit 1
61
+ }
62
+
63
+ # OS specific support (must be 'true' or 'false').
64
+ cygwin=false
65
+ msys=false
66
+ darwin=false
67
+ nonstop=false
68
+ case "`uname`" in
69
+ CYGWIN* )
70
+ cygwin=true
71
+ ;;
72
+ Darwin* )
73
+ darwin=true
74
+ ;;
75
+ MINGW* )
76
+ msys=true
77
+ ;;
78
+ NONSTOP* )
79
+ nonstop=true
80
+ ;;
81
+ esac
82
+
83
+ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
84
+
85
+
86
+ # Determine the Java command to use to start the JVM.
87
+ if [ -n "$JAVA_HOME" ] ; then
88
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
89
+ # IBM's JDK on AIX uses strange locations for the executables
90
+ JAVACMD="$JAVA_HOME/jre/sh/java"
91
+ else
92
+ JAVACMD="$JAVA_HOME/bin/java"
93
+ fi
94
+ if [ ! -x "$JAVACMD" ] ; then
95
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
96
+
97
+ Please set the JAVA_HOME variable in your environment to match the
98
+ location of your Java installation."
99
+ fi
100
+ else
101
+ JAVACMD="java"
102
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
103
+
104
+ Please set the JAVA_HOME variable in your environment to match the
105
+ location of your Java installation."
106
+ fi
107
+
108
+ # Increase the maximum file descriptors if we can.
109
+ if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
110
+ MAX_FD_LIMIT=`ulimit -H -n`
111
+ if [ $? -eq 0 ] ; then
112
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
113
+ MAX_FD="$MAX_FD_LIMIT"
114
+ fi
115
+ ulimit -n $MAX_FD
116
+ if [ $? -ne 0 ] ; then
117
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
118
+ fi
119
+ else
120
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
121
+ fi
122
+ fi
123
+
124
+ # For Darwin, add options to specify how the application appears in the dock
125
+ if $darwin; then
126
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
127
+ fi
128
+
129
+ # For Cygwin or MSYS, switch paths to Windows format before running java
130
+ if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
131
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
132
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
133
+
134
+ JAVACMD=`cygpath --unix "$JAVACMD"`
135
+
136
+ # We build the pattern for arguments to be converted via cygpath
137
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
138
+ SEP=""
139
+ for dir in $ROOTDIRSRAW ; do
140
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
141
+ SEP="|"
142
+ done
143
+ OURCYGPATTERN="(^($ROOTDIRS))"
144
+ # Add a user-defined pattern to the cygpath arguments
145
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
146
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
147
+ fi
148
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
149
+ i=0
150
+ for arg in "$@" ; do
151
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
152
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
153
+
154
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
155
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
156
+ else
157
+ eval `echo args$i`="\"$arg\""
158
+ fi
159
+ i=`expr $i + 1`
160
+ done
161
+ case $i in
162
+ 0) set -- ;;
163
+ 1) set -- "$args0" ;;
164
+ 2) set -- "$args0" "$args1" ;;
165
+ 3) set -- "$args0" "$args1" "$args2" ;;
166
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
167
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
168
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
169
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
170
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
171
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
172
+ esac
173
+ fi
174
+
175
+ # Escape application args
176
+ save () {
177
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
178
+ echo " "
179
+ }
180
+ APP_ARGS=`save "$@"`
181
+
182
+ # Collect all arguments for the java command, following the shell quoting and substitution rules
183
+ eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
184
+
185
+ exec "$JAVACMD" "$@"
@@ -0,0 +1,89 @@
1
+ @rem
2
+ @rem Copyright 2015 the original author or authors.
3
+ @rem
4
+ @rem Licensed under the Apache License, Version 2.0 (the "License");
5
+ @rem you may not use this file except in compliance with the License.
6
+ @rem You may obtain a copy of the License at
7
+ @rem
8
+ @rem https://www.apache.org/licenses/LICENSE-2.0
9
+ @rem
10
+ @rem Unless required by applicable law or agreed to in writing, software
11
+ @rem distributed under the License is distributed on an "AS IS" BASIS,
12
+ @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ @rem See the License for the specific language governing permissions and
14
+ @rem limitations under the License.
15
+ @rem
16
+
17
+ @if "%DEBUG%" == "" @echo off
18
+ @rem ##########################################################################
19
+ @rem
20
+ @rem Gradle startup script for Windows
21
+ @rem
22
+ @rem ##########################################################################
23
+
24
+ @rem Set local scope for the variables with windows NT shell
25
+ if "%OS%"=="Windows_NT" setlocal
26
+
27
+ set DIRNAME=%~dp0
28
+ if "%DIRNAME%" == "" set DIRNAME=.
29
+ set APP_BASE_NAME=%~n0
30
+ set APP_HOME=%DIRNAME%
31
+
32
+ @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33
+ for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34
+
35
+ @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36
+ set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37
+
38
+ @rem Find java.exe
39
+ if defined JAVA_HOME goto findJavaFromJavaHome
40
+
41
+ set JAVA_EXE=java.exe
42
+ %JAVA_EXE% -version >NUL 2>&1
43
+ if "%ERRORLEVEL%" == "0" goto execute
44
+
45
+ echo.
46
+ echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47
+ echo.
48
+ echo Please set the JAVA_HOME variable in your environment to match the
49
+ echo location of your Java installation.
50
+
51
+ goto fail
52
+
53
+ :findJavaFromJavaHome
54
+ set JAVA_HOME=%JAVA_HOME:"=%
55
+ set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56
+
57
+ if exist "%JAVA_EXE%" goto execute
58
+
59
+ echo.
60
+ echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61
+ echo.
62
+ echo Please set the JAVA_HOME variable in your environment to match the
63
+ echo location of your Java installation.
64
+
65
+ goto fail
66
+
67
+ :execute
68
+ @rem Setup the command line
69
+
70
+ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
71
+
72
+
73
+ @rem Execute Gradle
74
+ "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
75
+
76
+ :end
77
+ @rem End local scope for the variables with windows NT shell
78
+ if "%ERRORLEVEL%"=="0" goto mainEnd
79
+
80
+ :fail
81
+ rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
82
+ rem the _cmd.exe /c_ return code!
83
+ if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
84
+ exit /b 1
85
+
86
+ :mainEnd
87
+ if "%OS%"=="Windows_NT" endlocal
88
+
89
+ :omega
@@ -0,0 +1 @@
1
+ <manifest package="com.moengage.react.personalize" />
@@ -0,0 +1,104 @@
1
+ /*
2
+ * Copyright (c) 2026 MoEngage, Inc.
3
+ * All rights reserved.
4
+ * Use of source code or binaries contained within MoEngage's SDKs is permitted only to enable use of the MoEngage platform by customers of MoEngage. The Licensee may not:
5
+ * - permit any third party to use the Software;
6
+ * - modify or translate the Software except as otherwise permitted;
7
+ * - reverse engineer, decompile, or disassemble the Software;
8
+ * - copy the Software, except as expressly provided above; or
9
+ * - remove or obscure any proprietary rights notices or labels on the Software.
10
+ * - Licensee may not transfer the Software or any rights under this Agreement without the Licensor's prior written consent.
11
+ * - MoEngage owns the Software and all intellectual property rights embodied therein, including copyrights and valuable trade secrets embodied in the Software. The Licensee shall not alter or remove this copyright notice.
12
+ *
13
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF THE USER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
+ */
15
+
16
+ package com.moengage.react.personalize
17
+
18
+ import android.content.Context
19
+ import com.facebook.react.bridge.Promise
20
+ import com.moengage.plugin.base.personalization.PersonalizationHelper
21
+ import com.moengage.plugin.base.personalization.PersonalizeExperienceListener
22
+ import com.moengage.core.LogLevel
23
+ import com.moengage.core.internal.logger.Logger
24
+ import com.moengage.core.model.RequestFailureReasonCode
25
+
26
+ /**
27
+ * Class to handle all the requests from [MoEReactPersonalize] from both old and new arch.
28
+ * @author Abhishek Kumar
29
+ */
30
+ internal class MoEngagePersonalizeHandler(private val context: Context) {
31
+
32
+ private val tag = "MoEngagePersonalizeHandler"
33
+ private val pluginHelper = PersonalizationHelper()
34
+
35
+ fun getName() = NAME
36
+
37
+ fun fetchExperiencesMeta(payload: String, promise: Promise) {
38
+ try {
39
+ Logger.print { "$tag fetchExperiencesMeta(): $payload" }
40
+ pluginHelper.fetchExperiencesMeta(
41
+ context,
42
+ payload,
43
+ object : PersonalizeExperienceListener {
44
+ override fun onSuccess(result: String) {
45
+ promise.resolve(result)
46
+ }
47
+
48
+ override fun onFailure(reason: RequestFailureReasonCode, message: String) {
49
+ Logger.print { "$tag fetchExperiencesMeta(): failed with reason: $reason and message: $message" }
50
+ promise.reject(reason.name, message)
51
+ }
52
+ })
53
+ } catch (t: Throwable) {
54
+ Logger.print(LogLevel.ERROR, t) { "$tag fetchExperiencesMeta(): " }
55
+ promise.reject(RequestFailureReasonCode.UNKNOWN_ERROR.name, t.message ?: "")
56
+ }
57
+ }
58
+
59
+ fun fetchExperiences(payload: String, promise: Promise) {
60
+ try {
61
+ Logger.print { "$tag fetchExperiences(): $payload" }
62
+ pluginHelper.fetchExperiences(
63
+ context,
64
+ payload,
65
+ object : PersonalizeExperienceListener {
66
+ override fun onSuccess(result: String) {
67
+ promise.resolve(result)
68
+ }
69
+
70
+ override fun onFailure(reason: RequestFailureReasonCode, message: String) {
71
+ Logger.print { "$tag fetchExperiences(): failed with reason: $reason and message: $message" }
72
+ promise.reject(reason.name, message)
73
+ }
74
+ })
75
+ } catch (t: Throwable) {
76
+ Logger.print(LogLevel.ERROR, t) { "$tag fetchExperiences(): " }
77
+ promise.reject(RequestFailureReasonCode.UNKNOWN_ERROR.name, t.message ?: "")
78
+ }
79
+ }
80
+
81
+ fun trackExperienceShown(payload: String) {
82
+ Logger.print { "$tag trackExperienceShown(): $payload" }
83
+ pluginHelper.experiencesShown(context, payload)
84
+ }
85
+
86
+ fun trackExperienceClicked(payload: String) {
87
+ Logger.print { "$tag trackExperienceClicked(): $payload" }
88
+ pluginHelper.experienceClicked(context, payload)
89
+ }
90
+
91
+ fun trackOfferingShown(payload: String) {
92
+ Logger.print { "$tag trackOfferingShown(): $payload" }
93
+ pluginHelper.offeringsShown(context, payload)
94
+ }
95
+
96
+ fun trackOfferingClicked(payload: String) {
97
+ Logger.print { "$tag trackOfferingClicked(): $payload" }
98
+ pluginHelper.offeringClicked(context, payload)
99
+ }
100
+
101
+ companion object {
102
+ const val NAME = "MoEngagePersonalizeBridge"
103
+ }
104
+ }
@@ -0,0 +1,50 @@
1
+ /*
2
+ * Copyright (c) 2026 MoEngage, Inc.
3
+ * All rights reserved.
4
+ * Use of source code or binaries contained within MoEngage's SDKs is permitted only to enable use of the MoEngage platform by customers of MoEngage. The Licensee may not:
5
+ * - permit any third party to use the Software;
6
+ * - modify or translate the Software except as otherwise permitted;
7
+ * - reverse engineer, decompile, or disassemble the Software;
8
+ * - copy the Software, except as expressly provided above; or
9
+ * - remove or obscure any proprietary rights notices or labels on the Software.
10
+ * - Licensee may not transfer the Software or any rights under this Agreement without the Licensor's prior written consent.
11
+ * - MoEngage owns the Software and all intellectual property rights embodied therein, including copyrights and valuable trade secrets embodied in the Software. The Licensee shall not alter or remove this copyright notice.
12
+ *
13
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF THE USER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
+ */
15
+
16
+ package com.moengage.react.personalize
17
+
18
+ import com.facebook.react.TurboReactPackage
19
+ import com.facebook.react.bridge.NativeModule
20
+ import com.facebook.react.bridge.ReactApplicationContext
21
+ import com.facebook.react.module.model.ReactModuleInfo
22
+ import com.facebook.react.module.model.ReactModuleInfoProvider
23
+
24
+ class MoengagePersonalizePackage : TurboReactPackage() {
25
+
26
+ override fun getModule(name: String, reactContext: ReactApplicationContext): NativeModule? {
27
+ return if (name == MoEngagePersonalizeHandler.NAME) {
28
+ MoEReactPersonalize(reactContext)
29
+ } else {
30
+ null
31
+ }
32
+ }
33
+
34
+ override fun getReactModuleInfoProvider(): ReactModuleInfoProvider {
35
+ return ReactModuleInfoProvider {
36
+ val moduleInfos: MutableMap<String, ReactModuleInfo> = HashMap()
37
+ val isTurboModule = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
38
+ moduleInfos[MoEngagePersonalizeHandler.NAME] = ReactModuleInfo(
39
+ MoEngagePersonalizeHandler.NAME,
40
+ MoEngagePersonalizeHandler.NAME,
41
+ false, // canOverrideExistingModule
42
+ false, // needsEagerInit
43
+ true, // hasConstants
44
+ false, // isCxxModule
45
+ isTurboModule // isTurboModule
46
+ )
47
+ moduleInfos
48
+ }
49
+ }
50
+ }
@@ -0,0 +1,54 @@
1
+ /*
2
+ * Copyright (c) 2026 MoEngage, Inc.
3
+ * All rights reserved.
4
+ * Use of source code or binaries contained within MoEngage's SDKs is permitted only to enable use of the MoEngage platform by customers of MoEngage. The Licensee may not:
5
+ * - permit any third party to use the Software;
6
+ * - modify or translate the Software except as otherwise permitted;
7
+ * - reverse engineer, decompile, or disassemble the Software;
8
+ * - copy the Software, except as expressly provided above; or
9
+ * - remove or obscure any proprietary rights notices or labels on the Software.
10
+ * - Licensee may not transfer the Software or any rights under this Agreement without the Licensor's prior written consent.
11
+ * - MoEngage owns the Software and all intellectual property rights embodied therein, including copyrights and valuable trade secrets embodied in the Software. The Licensee shall not alter or remove this copyright notice.
12
+ *
13
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF THE USER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
+ */
15
+
16
+ package com.moengage.react.personalize
17
+
18
+ import com.facebook.react.bridge.Promise
19
+ import com.facebook.react.bridge.ReactApplicationContext
20
+
21
+ /**
22
+ * Bridge to communicate with personalize plugin JS code in new arch.
23
+ */
24
+ class MoEReactPersonalize(reactContext: ReactApplicationContext) :
25
+ NativeMoEngagePersonalizeSpec(reactContext) {
26
+
27
+ private val bridgeHandler = MoEngagePersonalizeHandler(reactContext.applicationContext)
28
+
29
+ override fun getName() = bridgeHandler.getName()
30
+
31
+ override fun fetchExperiencesMeta(payload: String, promise: Promise) {
32
+ bridgeHandler.fetchExperiencesMeta(payload, promise)
33
+ }
34
+
35
+ override fun fetchExperiences(payload: String, promise: Promise) {
36
+ bridgeHandler.fetchExperiences(payload, promise)
37
+ }
38
+
39
+ override fun experiencesShown(payload: String) {
40
+ bridgeHandler.trackExperienceShown(payload)
41
+ }
42
+
43
+ override fun experienceClicked(payload: String) {
44
+ bridgeHandler.trackExperienceClicked(payload)
45
+ }
46
+
47
+ override fun offeringsShown(payload: String) {
48
+ bridgeHandler.trackOfferingShown(payload)
49
+ }
50
+
51
+ override fun offeringClicked(payload: String) {
52
+ bridgeHandler.trackOfferingClicked(payload)
53
+ }
54
+ }