cordova-plugin-repro 6.7.0 → 6.8.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cordova-plugin-repro",
3
- "version": "6.7.0",
3
+ "version": "6.8.0",
4
4
  "description": "Repro Cordova Plugin",
5
5
  "cordova": {
6
6
  "id": "cordova-plugin-repro",
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.7.0" xmlns="http://apache.org/cordova/ns/plugins/1.0">
3
+ <plugin xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-repro" version="6.8.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>
@@ -74,3 +74,4 @@
74
74
 
75
75
 
76
76
 
77
+
@@ -1,5 +1,5 @@
1
1
  {
2
- "ios-sdk": "5.8.0",
3
- "android-sdk": "5.6.0",
4
- "bridge": "6.7.0"
2
+ "ios-sdk": "5.8.1",
3
+ "android-sdk": "5.6.2",
4
+ "bridge": "6.8.0"
5
5
  }
Binary file
@@ -26,18 +26,5 @@ buildscript {
26
26
 
27
27
  dependencies {
28
28
  classpath 'com.android.tools.build:gradle:+'
29
- classpath 'com.google.gms:google-services:4.0.2'
30
29
  }
31
30
  }
32
-
33
- cdvPluginPostBuildExtras.add({
34
- def skipGoogleServicesPluginApply = false
35
- project.rootDir.eachDir { dir ->
36
- if (dir.getName() == "cordova-support-google-services" || dir.getName() == "phonegap-plugin-push") {
37
- skipGoogleServicesPluginApply = true
38
- }
39
- }
40
- if(!skipGoogleServicesPluginApply && project.plugins.findPlugin("com.google.gms.google-services") == null) {
41
- apply plugin: com.google.gms.googleservices.GoogleServicesPlugin
42
- }
43
- })
@@ -6,33 +6,33 @@
6
6
  <array>
7
7
  <dict>
8
8
  <key>LibraryIdentifier</key>
9
- <string>ios-arm64_i386_x86_64-simulator</string>
9
+ <string>ios-arm64_armv7_armv7s</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>i386</string>
16
- <string>x86_64</string>
15
+ <string>armv7</string>
16
+ <string>armv7s</string>
17
17
  </array>
18
18
  <key>SupportedPlatform</key>
19
19
  <string>ios</string>
20
- <key>SupportedPlatformVariant</key>
21
- <string>simulator</string>
22
20
  </dict>
23
21
  <dict>
24
22
  <key>LibraryIdentifier</key>
25
- <string>ios-arm64_armv7_armv7s</string>
23
+ <string>ios-arm64_i386_x86_64-simulator</string>
26
24
  <key>LibraryPath</key>
27
25
  <string>Repro.framework</string>
28
26
  <key>SupportedArchitectures</key>
29
27
  <array>
30
28
  <string>arm64</string>
31
- <string>armv7</string>
32
- <string>armv7s</string>
29
+ <string>i386</string>
30
+ <string>x86_64</string>
33
31
  </array>
34
32
  <key>SupportedPlatform</key>
35
33
  <string>ios</string>
34
+ <key>SupportedPlatformVariant</key>
35
+ <string>simulator</string>
36
36
  </dict>
37
37
  </array>
38
38
  <key>CFBundlePackageType</key>
@@ -98,11 +98,11 @@ NS_SWIFT_NAME(value(forKey:));
98
98
  /// Access to remote config values via subscript syntax.
99
99
  - (nonnull RPRRemoteConfigValue *)objectForKeyedSubscript:(nonnull NSString *)key;
100
100
 
101
- /// Return a dictonary with all key value pairs.
101
+ /// Return a dictionary with all key value pairs.
102
102
  - (nonnull NSDictionary<NSString *, RPRRemoteConfigValue *> *)allValues
103
103
  NS_SWIFT_NAME(allValues());
104
104
 
105
- /// Return a dictonary with all key value pairs for a given prefix. Pass `nil` or an empty string to get all values.
105
+ /// Return a dictionary with all key value pairs for a given prefix. Pass `nil` or an empty string to get all values.
106
106
  - (nonnull NSDictionary<NSString *, RPRRemoteConfigValue *> *)allValuesWithPrefix:(nullable NSString *)prefix
107
107
  NS_SWIFT_NAME(allValues(withPrefix:));
108
108
 
@@ -98,11 +98,11 @@ NS_SWIFT_NAME(value(forKey:));
98
98
  /// Access to remote config values via subscript syntax.
99
99
  - (nonnull RPRRemoteConfigValue *)objectForKeyedSubscript:(nonnull NSString *)key;
100
100
 
101
- /// Return a dictonary with all key value pairs.
101
+ /// Return a dictionary with all key value pairs.
102
102
  - (nonnull NSDictionary<NSString *, RPRRemoteConfigValue *> *)allValues
103
103
  NS_SWIFT_NAME(allValues());
104
104
 
105
- /// Return a dictonary with all key value pairs for a given prefix. Pass `nil` or an empty string to get all values.
105
+ /// Return a dictionary with all key value pairs for a given prefix. Pass `nil` or an empty string to get all values.
106
106
  - (nonnull NSDictionary<NSString *, RPRRemoteConfigValue *> *)allValuesWithPrefix:(nullable NSString *)prefix
107
107
  NS_SWIFT_NAME(allValues(withPrefix:));
108
108