cordova-plugin-repro 6.18.0 → 6.19.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/package.json +1 -1
- package/plugin.xml +1 -1
- package/repro-version.json +3 -3
- package/src/android/CordovaPlugin.java +3 -1
- package/src/android/repro-android-sdk.aar +0 -0
- package/src/ios/CDVRepro.h +1 -1
- package/src/ios/CDVRepro.m +3 -1
- package/src/ios/Repro.xcframework/Info.plist +8 -8
- package/src/ios/Repro.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/src/ios/Repro.xcframework/_CodeSignature/CodeRequirements-1 +0 -0
- package/src/ios/Repro.xcframework/_CodeSignature/CodeResources +18 -18
- package/src/ios/Repro.xcframework/_CodeSignature/CodeSignature +0 -0
- package/src/ios/Repro.xcframework/ios-arm64_armv7_armv7s/Repro.framework/Headers/RPRNewsFeedEntry.h +2 -0
- package/src/ios/Repro.xcframework/ios-arm64_armv7_armv7s/Repro.framework/Info.plist +0 -0
- package/src/ios/Repro.xcframework/ios-arm64_armv7_armv7s/Repro.framework/Repro +0 -0
- package/src/ios/Repro.xcframework/ios-arm64_i386_x86_64-simulator/Repro.framework/Headers/RPRNewsFeedEntry.h +2 -0
- package/src/ios/Repro.xcframework/ios-arm64_i386_x86_64-simulator/Repro.framework/Info.plist +0 -0
- package/src/ios/Repro.xcframework/ios-arm64_i386_x86_64-simulator/Repro.framework/Repro +0 -0
package/package.json
CHANGED
package/plugin.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
2
|
|
|
3
|
-
<plugin xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-repro" version="6.
|
|
3
|
+
<plugin xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-repro" version="6.19.0" xmlns="http://apache.org/cordova/ns/plugins/1.0">
|
|
4
4
|
<name>Repro</name>
|
|
5
5
|
<description>Repro Cordova Plugin</description>
|
|
6
6
|
<license>Commercial</license>
|
package/repro-version.json
CHANGED
|
@@ -44,7 +44,7 @@ import io.repro.android.user.UserProfilePrefecture;
|
|
|
44
44
|
*/
|
|
45
45
|
public final class CordovaPlugin extends org.apache.cordova.CordovaPlugin {
|
|
46
46
|
|
|
47
|
-
private static final String REPRO_CORDOVA_BRIDGE_VERSION = "6.
|
|
47
|
+
private static final String REPRO_CORDOVA_BRIDGE_VERSION = "6.19.0";
|
|
48
48
|
|
|
49
49
|
private static SimpleDateFormat sDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ", Locale.US);
|
|
50
50
|
|
|
@@ -901,7 +901,9 @@ public final class CordovaPlugin extends org.apache.cordova.CordovaPlugin {
|
|
|
901
901
|
entryObject.put("summary", entry.summary);
|
|
902
902
|
entryObject.put("body", entry.body);
|
|
903
903
|
entryObject.put("link_url", linkUrl);
|
|
904
|
+
entryObject.put("link_url_string", entry.linkUrlString);
|
|
904
905
|
entryObject.put("image_url", imageUrl);
|
|
906
|
+
entryObject.put("image_url_string", entry.imageUrlString);
|
|
905
907
|
entryObject.put("delivered_at", sDateFormat.format(entry.deliveredAt));
|
|
906
908
|
entryObject.put("campaign_type", entry.campaignType.getValue());
|
|
907
909
|
entryObject.put("shown", entry.shown);
|
|
Binary file
|
package/src/ios/CDVRepro.h
CHANGED
package/src/ios/CDVRepro.m
CHANGED
|
@@ -588,7 +588,9 @@ static NSDictionary* convertNSStringJSONToNSDictionary(NSString* json) {
|
|
|
588
588
|
@"delivered_at": [[self dateFormatter] stringFromDate:entry.deliveredAt],
|
|
589
589
|
@"campaign_type": [self convertCampaignTypeToString:entry.campaignType],
|
|
590
590
|
@"link_url": entry.linkUrl ? [entry.linkUrl absoluteString] : @"",
|
|
591
|
-
@"
|
|
591
|
+
@"link_url_string": entry.linkUrlString,
|
|
592
|
+
@"image_url": entry.imageUrl ? [entry.imageUrl absoluteString] : @"",
|
|
593
|
+
@"image_url_string": entry.imageUrlString
|
|
592
594
|
};
|
|
593
595
|
|
|
594
596
|
return entryJson;
|
|
@@ -6,33 +6,33 @@
|
|
|
6
6
|
<array>
|
|
7
7
|
<dict>
|
|
8
8
|
<key>LibraryIdentifier</key>
|
|
9
|
-
<string>ios-
|
|
9
|
+
<string>ios-arm64_i386_x86_64-simulator</string>
|
|
10
10
|
<key>LibraryPath</key>
|
|
11
11
|
<string>Repro.framework</string>
|
|
12
12
|
<key>SupportedArchitectures</key>
|
|
13
13
|
<array>
|
|
14
14
|
<string>arm64</string>
|
|
15
|
-
<string>
|
|
16
|
-
<string>
|
|
15
|
+
<string>i386</string>
|
|
16
|
+
<string>x86_64</string>
|
|
17
17
|
</array>
|
|
18
18
|
<key>SupportedPlatform</key>
|
|
19
19
|
<string>ios</string>
|
|
20
|
+
<key>SupportedPlatformVariant</key>
|
|
21
|
+
<string>simulator</string>
|
|
20
22
|
</dict>
|
|
21
23
|
<dict>
|
|
22
24
|
<key>LibraryIdentifier</key>
|
|
23
|
-
<string>ios-
|
|
25
|
+
<string>ios-arm64_armv7_armv7s</string>
|
|
24
26
|
<key>LibraryPath</key>
|
|
25
27
|
<string>Repro.framework</string>
|
|
26
28
|
<key>SupportedArchitectures</key>
|
|
27
29
|
<array>
|
|
28
30
|
<string>arm64</string>
|
|
29
|
-
<string>
|
|
30
|
-
<string>
|
|
31
|
+
<string>armv7</string>
|
|
32
|
+
<string>armv7s</string>
|
|
31
33
|
</array>
|
|
32
34
|
<key>SupportedPlatform</key>
|
|
33
35
|
<string>ios</string>
|
|
34
|
-
<key>SupportedPlatformVariant</key>
|
|
35
|
-
<string>simulator</string>
|
|
36
36
|
</dict>
|
|
37
37
|
</array>
|
|
38
38
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</data>
|
|
11
11
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Headers/RPRNewsFeedEntry.h</key>
|
|
12
12
|
<data>
|
|
13
|
-
|
|
13
|
+
199GkJDU2FyeL799jVHjEOWVAC0=
|
|
14
14
|
</data>
|
|
15
15
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Headers/RPRRemoteConfig.h</key>
|
|
16
16
|
<data>
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
</data>
|
|
27
27
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Info.plist</key>
|
|
28
28
|
<data>
|
|
29
|
-
|
|
29
|
+
DqOby8ObQFawxNMngiXJOTCkCZU=
|
|
30
30
|
</data>
|
|
31
31
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Modules/module.modulemap</key>
|
|
32
32
|
<data>
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
</data>
|
|
39
39
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Repro</key>
|
|
40
40
|
<data>
|
|
41
|
-
|
|
41
|
+
yq/KmT9a4NUwIf6/4WeG84dwJ0s=
|
|
42
42
|
</data>
|
|
43
43
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Headers/RPREventProperties.h</key>
|
|
44
44
|
<data>
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
</data>
|
|
47
47
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Headers/RPRNewsFeedEntry.h</key>
|
|
48
48
|
<data>
|
|
49
|
-
|
|
49
|
+
199GkJDU2FyeL799jVHjEOWVAC0=
|
|
50
50
|
</data>
|
|
51
51
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Headers/RPRRemoteConfig.h</key>
|
|
52
52
|
<data>
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
</data>
|
|
63
63
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Info.plist</key>
|
|
64
64
|
<data>
|
|
65
|
-
|
|
65
|
+
7XJM1Ga3WFxy3T9fdhHUgPNAduE=
|
|
66
66
|
</data>
|
|
67
67
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Modules/module.modulemap</key>
|
|
68
68
|
<data>
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
</data>
|
|
75
75
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Repro</key>
|
|
76
76
|
<data>
|
|
77
|
-
|
|
77
|
+
nvqhGDQ6VgUHFxSI6lDHEn84vy4=
|
|
78
78
|
</data>
|
|
79
79
|
</dict>
|
|
80
80
|
<key>files2</key>
|
|
@@ -94,11 +94,11 @@
|
|
|
94
94
|
<dict>
|
|
95
95
|
<key>hash</key>
|
|
96
96
|
<data>
|
|
97
|
-
|
|
97
|
+
199GkJDU2FyeL799jVHjEOWVAC0=
|
|
98
98
|
</data>
|
|
99
99
|
<key>hash2</key>
|
|
100
100
|
<data>
|
|
101
|
-
|
|
101
|
+
btlPz0kZcISduoS6YhJN81GKa0Xal5QcEitu5y4XkdA=
|
|
102
102
|
</data>
|
|
103
103
|
</dict>
|
|
104
104
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Headers/RPRRemoteConfig.h</key>
|
|
@@ -138,11 +138,11 @@
|
|
|
138
138
|
<dict>
|
|
139
139
|
<key>hash</key>
|
|
140
140
|
<data>
|
|
141
|
-
|
|
141
|
+
DqOby8ObQFawxNMngiXJOTCkCZU=
|
|
142
142
|
</data>
|
|
143
143
|
<key>hash2</key>
|
|
144
144
|
<data>
|
|
145
|
-
|
|
145
|
+
Fb6/6ioWu2K9mhPpTIE8O5czhXUPSvrWG+PcZ+zrfC0=
|
|
146
146
|
</data>
|
|
147
147
|
</dict>
|
|
148
148
|
<key>ios-arm64_armv7_armv7s/Repro.framework/Modules/module.modulemap</key>
|
|
@@ -171,11 +171,11 @@
|
|
|
171
171
|
<dict>
|
|
172
172
|
<key>hash</key>
|
|
173
173
|
<data>
|
|
174
|
-
|
|
174
|
+
yq/KmT9a4NUwIf6/4WeG84dwJ0s=
|
|
175
175
|
</data>
|
|
176
176
|
<key>hash2</key>
|
|
177
177
|
<data>
|
|
178
|
-
|
|
178
|
+
Nhy292d8sm3+VSzlPPvkRTQGj1pY2F9XpNGe+ONGTbI=
|
|
179
179
|
</data>
|
|
180
180
|
</dict>
|
|
181
181
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Headers/RPREventProperties.h</key>
|
|
@@ -193,11 +193,11 @@
|
|
|
193
193
|
<dict>
|
|
194
194
|
<key>hash</key>
|
|
195
195
|
<data>
|
|
196
|
-
|
|
196
|
+
199GkJDU2FyeL799jVHjEOWVAC0=
|
|
197
197
|
</data>
|
|
198
198
|
<key>hash2</key>
|
|
199
199
|
<data>
|
|
200
|
-
|
|
200
|
+
btlPz0kZcISduoS6YhJN81GKa0Xal5QcEitu5y4XkdA=
|
|
201
201
|
</data>
|
|
202
202
|
</dict>
|
|
203
203
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Headers/RPRRemoteConfig.h</key>
|
|
@@ -237,11 +237,11 @@
|
|
|
237
237
|
<dict>
|
|
238
238
|
<key>hash</key>
|
|
239
239
|
<data>
|
|
240
|
-
|
|
240
|
+
7XJM1Ga3WFxy3T9fdhHUgPNAduE=
|
|
241
241
|
</data>
|
|
242
242
|
<key>hash2</key>
|
|
243
243
|
<data>
|
|
244
|
-
|
|
244
|
+
cmPzf6/UnH+1OBbm7/wjfsDveS96R6ZqkiJNsZegl24=
|
|
245
245
|
</data>
|
|
246
246
|
</dict>
|
|
247
247
|
<key>ios-arm64_i386_x86_64-simulator/Repro.framework/Modules/module.modulemap</key>
|
|
@@ -270,11 +270,11 @@
|
|
|
270
270
|
<dict>
|
|
271
271
|
<key>hash</key>
|
|
272
272
|
<data>
|
|
273
|
-
|
|
273
|
+
nvqhGDQ6VgUHFxSI6lDHEn84vy4=
|
|
274
274
|
</data>
|
|
275
275
|
<key>hash2</key>
|
|
276
276
|
<data>
|
|
277
|
-
|
|
277
|
+
M4Of69Voux3yCIMxqZdE/dyMdeXs8lujoe5UgnhXO44=
|
|
278
278
|
</data>
|
|
279
279
|
</dict>
|
|
280
280
|
</dict>
|
|
Binary file
|
package/src/ios/Repro.xcframework/ios-arm64_armv7_armv7s/Repro.framework/Headers/RPRNewsFeedEntry.h
CHANGED
|
@@ -27,7 +27,9 @@ NS_ASSUME_NONNULL_BEGIN
|
|
|
27
27
|
@property (nonatomic, readonly) NSString *body;
|
|
28
28
|
@property (nonatomic, readonly) RPRCampaignType campaignType;
|
|
29
29
|
@property (nonatomic, readonly, nullable) NSURL *linkUrl;
|
|
30
|
+
@property (nonatomic, readonly, nullable) NSString *linkUrlString;
|
|
30
31
|
@property (nonatomic, readonly, nullable) NSURL *imageUrl;
|
|
32
|
+
@property (nonatomic, readonly, nullable) NSString *imageUrlString;
|
|
31
33
|
@property (nonatomic, readonly) NSDate *deliveredAt;
|
|
32
34
|
@property (nonatomic) BOOL shown;
|
|
33
35
|
@property (nonatomic) BOOL read;
|
|
Binary file
|
|
Binary file
|
|
@@ -27,7 +27,9 @@ NS_ASSUME_NONNULL_BEGIN
|
|
|
27
27
|
@property (nonatomic, readonly) NSString *body;
|
|
28
28
|
@property (nonatomic, readonly) RPRCampaignType campaignType;
|
|
29
29
|
@property (nonatomic, readonly, nullable) NSURL *linkUrl;
|
|
30
|
+
@property (nonatomic, readonly, nullable) NSString *linkUrlString;
|
|
30
31
|
@property (nonatomic, readonly, nullable) NSURL *imageUrl;
|
|
32
|
+
@property (nonatomic, readonly, nullable) NSString *imageUrlString;
|
|
31
33
|
@property (nonatomic, readonly) NSDate *deliveredAt;
|
|
32
34
|
@property (nonatomic) BOOL shown;
|
|
33
35
|
@property (nonatomic) BOOL read;
|