react-native-mapp-plugin 1.0.11-beta5 → 1.0.11-beta6

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.
@@ -2,7 +2,6 @@
2
2
  <project version="4">
3
3
  <component name="ChangeListManager">
4
4
  <list default="true" id="8b4f258a-c093-494f-afe5-5f5a25c90893" name="Default Changelist" comment="">
5
- <change beforePath="$PROJECT_DIR$/Mapp.js" beforeDir="false" afterPath="$PROJECT_DIR$/Mapp.js" afterDir="false" />
6
5
  <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
7
6
  </list>
8
7
  <option name="SHOW_DIALOG" value="false" />
@@ -80,7 +79,8 @@
80
79
  <workItem from="1633566225798" duration="599000" />
81
80
  <workItem from="1634673153825" duration="3131000" />
82
81
  <workItem from="1635406438746" duration="1187000" />
83
- <workItem from="1635764727836" duration="11060000" />
82
+ <workItem from="1635764727836" duration="11858000" />
83
+ <workItem from="1640361194537" duration="75000" />
84
84
  </task>
85
85
  <task id="LOCAL-00001" summary="new version">
86
86
  <created>1632917445507</created>
@@ -131,7 +131,14 @@
131
131
  <option name="project" value="LOCAL" />
132
132
  <updated>1637674196630</updated>
133
133
  </task>
134
- <option name="localTasksCounter" value="8" />
134
+ <task id="LOCAL-00008" summary="new version with ios Foreground">
135
+ <created>1638346042259</created>
136
+ <option name="number" value="00008" />
137
+ <option name="presentableId" value="LOCAL-00008" />
138
+ <option name="project" value="LOCAL" />
139
+ <updated>1638346042259</updated>
140
+ </task>
141
+ <option name="localTasksCounter" value="9" />
135
142
  <servers />
136
143
  </component>
137
144
  <component name="TypeScriptGeneratedFilesManager">
@@ -161,6 +168,7 @@
161
168
  <MESSAGE value="Update script to run on all linux systems" />
162
169
  <MESSAGE value="Fixed android issue when engage late" />
163
170
  <MESSAGE value="update version" />
164
- <option name="LAST_COMMIT_MESSAGE" value="update version" />
171
+ <MESSAGE value="new version with ios Foreground" />
172
+ <option name="LAST_COMMIT_MESSAGE" value="new version with ios Foreground" />
165
173
  </component>
166
174
  </project>
@@ -70,6 +70,6 @@ dependencies {
70
70
  }
71
71
  implementation 'androidx.media:media:1.0.1'
72
72
  implementation 'androidx.legacy:legacy-support-v13:1.0.0'
73
- implementation 'com.mapp.sdk:mapp-android:6.0.17-special13'
73
+ implementation 'com.mapp.sdk:mapp-android:6.0.17-special14'
74
74
  }
75
75
 
@@ -111,7 +111,7 @@ public class RNMappPluginModule extends ReactContextBaseJavaModule {
111
111
  @ReactMethod
112
112
  public void setRemoteMessage(String msgJson) {
113
113
  RemoteMessage remoteMessage = getRemoteMessage(msgJson);
114
- if (remoteMessage != null && Appoxee.instance() != null) {
114
+ if (remoteMessage != null && AppoxeeServiceAdapter.getInstance() != null) {
115
115
  Appoxee.instance().setRemoteMessage(remoteMessage);
116
116
  }
117
117
  }
@@ -129,7 +129,7 @@ public class RNMappPluginModule extends ReactContextBaseJavaModule {
129
129
 
130
130
  @ReactMethod
131
131
  public void setToken(String token) {
132
- if (Appoxee.instance() != null)
132
+ if (AppoxeeServiceAdapter.getInstance() != null)
133
133
  Appoxee.instance().setToken(token);
134
134
  }
135
135
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-mapp-plugin",
3
- "version": "1.0.11-beta5",
3
+ "version": "1.0.11-beta6",
4
4
  "description": "Mapp SDK for React Native.",
5
5
  "main": "index.js",
6
6
  "scripts": {