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.
package/.idea/workspace.xml
CHANGED
|
@@ -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="
|
|
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
|
-
<
|
|
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
|
-
<
|
|
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>
|
package/android/build.gradle
CHANGED
|
@@ -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 &&
|
|
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 (
|
|
132
|
+
if (AppoxeeServiceAdapter.getInstance() != null)
|
|
133
133
|
Appoxee.instance().setToken(token);
|
|
134
134
|
}
|
|
135
135
|
|