react-native-purchases 4.3.2 → 4.3.3

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.
@@ -23,6 +23,6 @@ Pod::Spec.new do |spec|
23
23
  ]
24
24
 
25
25
  spec.dependency "React-Core"
26
- spec.dependency "PurchasesHybridCommon", '1.9.1'
26
+ spec.dependency "PurchasesHybridCommon", '1.9.3'
27
27
  spec.swift_version = '5.0'
28
28
  end
package/android/.project CHANGED
@@ -22,7 +22,7 @@
22
22
  </natures>
23
23
  <filteredResources>
24
24
  <filter>
25
- <id>1634928680138</id>
25
+ <id>0</id>
26
26
  <name></name>
27
27
  <type>30</type>
28
28
  <matcher>
@@ -29,7 +29,7 @@ android {
29
29
  minSdkVersion getExtOrIntegerDefault('minSdkVersion')
30
30
  targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
31
31
  versionCode 1
32
- versionName '4.3.2'
32
+ versionName '4.3.3'
33
33
  }
34
34
 
35
35
  buildTypes {
@@ -122,6 +122,6 @@ def kotlin_version = getExtOrDefault('kotlinVersion')
122
122
  dependencies {
123
123
  //noinspection GradleDynamicVersion
124
124
  api 'com.facebook.react:react-native:+'
125
- implementation 'com.revenuecat.purchases:purchases-hybrid-common:1.9.1'
125
+ implementation 'com.revenuecat.purchases:purchases-hybrid-common:1.9.3'
126
126
  implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
127
127
  }
@@ -43,7 +43,7 @@ public class RNPurchasesModule extends ReactContextBaseJavaModule implements Upd
43
43
 
44
44
  private static final String PURCHASER_INFO_UPDATED = "Purchases-PurchaserInfoUpdated";
45
45
  public static final String PLATFORM_NAME = "react-native";
46
- public static final String PLUGIN_VERSION = "4.3.2";
46
+ public static final String PLUGIN_VERSION = "4.3.3";
47
47
 
48
48
  private final ReactApplicationContext reactContext;
49
49
 
package/ios/RNPurchases.m CHANGED
@@ -358,7 +358,7 @@ shouldPurchasePromoProduct:(SKProduct *)product
358
358
  }
359
359
 
360
360
  - (NSString *)platformFlavorVersion {
361
- return @"4.3.2";
361
+ return @"4.3.3";
362
362
  }
363
363
 
364
364
  @end
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-purchases",
3
3
  "title": "React Native Purchases",
4
- "version": "4.3.2",
4
+ "version": "4.3.3",
5
5
  "description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android. ",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
package/scripts/build.js CHANGED
@@ -5,11 +5,11 @@ if (os.type() === "Linux") {
5
5
  console.log("Skipping iOS Dependencies");
6
6
  } else if (os.type() === "Darwin") {
7
7
  const downloadProcess = exec(
8
- "./scripts/download-purchases-framework.sh 3.12.3"
8
+ "./scripts/download-purchases-framework.sh 3.12.8"
9
9
  );
10
10
  downloadProcess.stdout.pipe(process.stdout);
11
11
  const downloadProcessCommon = exec(
12
- "./scripts/download-purchases-common.sh 1.9.1"
12
+ "./scripts/download-purchases-common.sh 1.9.3"
13
13
  );
14
14
  downloadProcessCommon.stdout.pipe(process.stdout);
15
15
  } else if (os.type() === "Windows_NT") {