@tenqube/visual-reward-react-native 1.1.4 → 1.1.6
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/CHANGELOG.md +12 -0
- package/README.md +201 -606
- package/android/build.gradle +4 -0
- package/android/src/main/AndroidManifest.xml +9 -1
- package/android/src/main/java/com/tenqube/visualreward/VisualRewardModule.kt +141 -0
- package/ios/VisualReward.m +24 -0
- package/ios/VisualReward.swift +158 -0
- package/package.json +2 -8
- package/src/ConfigCache.ts +1 -7
- package/src/NativeVisualReward.ts +87 -0
- package/src/RewardWebView.tsx +22 -66
- package/src/VisualReward.ts +4 -6
- package/src/VisualRewardContainer.tsx +42 -18
- package/src/types.ts +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @tenqube/visual-reward
|
|
2
2
|
|
|
3
|
+
## 1.1.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4c13cbd: feat: setStorage 제거 및 initialize storage 파라미터 추가합니다.
|
|
8
|
+
|
|
9
|
+
## 1.1.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- edfa2b1: feat: Flutter·RN SDK 서드파티 의존성 제거 및 네이티브로 대체합니다.
|
|
14
|
+
|
|
3
15
|
## 1.1.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|