react-native-nami-sdk 3.3.3-2 → 3.3.3-4
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/android/build.gradle +2 -2
- package/dist/specs/NativeNamiPaywallManager.d.ts +1 -1
- package/dist/src/NamiPaywallManager.d.ts +1 -1
- package/dist/src/version.d.ts +1 -1
- package/package.json +1 -1
- package/react-native-nami-sdk.podspec +1 -1
- package/specs/NativeNamiPaywallManager.ts +1 -1
- package/src/NamiPaywallManager.ts +1 -1
- package/src/version.ts +1 -1
package/android/build.gradle
CHANGED
|
@@ -85,8 +85,8 @@ dependencies {
|
|
|
85
85
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
86
86
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
87
87
|
|
|
88
|
-
playImplementation "com.namiml:sdk-android:3.3.3.
|
|
89
|
-
amazonImplementation "com.namiml:sdk-amazon:3.3.3.
|
|
88
|
+
playImplementation "com.namiml:sdk-android:3.3.3.3"
|
|
89
|
+
amazonImplementation "com.namiml:sdk-amazon:3.3.3.3"
|
|
90
90
|
|
|
91
91
|
implementation "com.facebook.react:react-native:+" // From node_modules
|
|
92
92
|
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.0.4"
|
|
@@ -64,7 +64,7 @@ export interface Spec extends TurboModule {
|
|
|
64
64
|
isHidden(): Promise<boolean>;
|
|
65
65
|
isPaywallOpen(): Promise<boolean>;
|
|
66
66
|
buySkuCancel(): void;
|
|
67
|
-
setProductDetails(productDetails: string, allowOffers
|
|
67
|
+
setProductDetails(productDetails: string, allowOffers: boolean): void;
|
|
68
68
|
setAppSuppliedVideoDetails(url: string, name?: string): void;
|
|
69
69
|
allowUserInteraction(allowed: boolean): void;
|
|
70
70
|
}
|
|
@@ -24,7 +24,7 @@ export declare const NamiPaywallManager: {
|
|
|
24
24
|
isHidden: () => Promise<boolean>;
|
|
25
25
|
isPaywallOpen: () => Promise<boolean>;
|
|
26
26
|
buySkuCancel: () => void;
|
|
27
|
-
setProductDetails: (productDetails: string, allowOffers
|
|
27
|
+
setProductDetails: (productDetails: string, allowOffers: boolean) => void;
|
|
28
28
|
setAppSuppliedVideoDetails: (url: string, name?: string) => void;
|
|
29
29
|
allowUserInteraction: (allowed: boolean) => void;
|
|
30
30
|
};
|
package/dist/src/version.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -76,7 +76,7 @@ export interface Spec extends TurboModule {
|
|
|
76
76
|
|
|
77
77
|
buySkuCancel(): void;
|
|
78
78
|
|
|
79
|
-
setProductDetails(productDetails: string, allowOffers
|
|
79
|
+
setProductDetails(productDetails: string, allowOffers: boolean): void;
|
|
80
80
|
|
|
81
81
|
setAppSuppliedVideoDetails(url: string, name?: string): void;
|
|
82
82
|
|
|
@@ -106,7 +106,7 @@ export const NamiPaywallManager = {
|
|
|
106
106
|
RNNamiPaywallManager.buySkuCancel();
|
|
107
107
|
},
|
|
108
108
|
|
|
109
|
-
setProductDetails: (productDetails: string, allowOffers
|
|
109
|
+
setProductDetails: (productDetails: string, allowOffers: boolean): void => {
|
|
110
110
|
RNNamiPaywallManager.setProductDetails(productDetails, allowOffers);
|
|
111
111
|
},
|
|
112
112
|
|
package/src/version.ts
CHANGED