@tenqube/visual-reward-react-native 1.1.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.
- package/CHANGELOG.md +68 -0
- package/README.md +690 -0
- package/android/build.gradle +47 -0
- package/android/consumer-rules.pro +9 -0
- package/android/src/main/AndroidManifest.xml +2 -0
- package/android/src/main/java/com/tenqube/visualreward/VisualRewardModule.kt +223 -0
- package/android/src/main/java/com/tenqube/visualreward/VisualRewardPackage.kt +14 -0
- package/index.ts +8 -0
- package/ios/VisualReward.m +12 -0
- package/ios/VisualReward.swift +135 -0
- package/package.json +52 -0
- package/src/ConfigCache.ts +45 -0
- package/src/NativeVisualReward.ts +52 -0
- package/src/RewardWebView.tsx +552 -0
- package/src/VisualReward.ts +190 -0
- package/src/VisualRewardContainer.tsx +121 -0
- package/src/types.ts +66 -0
- package/src/utils.ts +24 -0
- package/visual-reward-react-native.podspec +20 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# @tenqube/visual-reward
|
|
2
|
+
|
|
3
|
+
## 1.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f85a637: feat: GMA registerWebView + AdPopcorn SSP 브릿지 네이티브 모듈 추가합니다.
|
|
8
|
+
- f85a637: feat: npm 레지스트리로 배포 전환 및 iOS/Android 안정화
|
|
9
|
+
|
|
10
|
+
## 1.1.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- c541946: chore: publish 스크립트 수정합니다.
|
|
15
|
+
|
|
16
|
+
## 1.1.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- fcf088d: feat: 웹뷰 url 수정합니다.
|
|
21
|
+
|
|
22
|
+
## 1.1.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- d6481b0: feat: SDK 전체 구조 수정합니다.
|
|
27
|
+
|
|
28
|
+
## 1.0.1
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- b79d2bf: feat: SDK 최적화합니다.
|
|
33
|
+
|
|
34
|
+
## 1.0.0
|
|
35
|
+
|
|
36
|
+
### Major Changes
|
|
37
|
+
|
|
38
|
+
- 14dda90: chore: Create New Release
|
|
39
|
+
|
|
40
|
+
## 0.0.5
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- b44af2c: chore: Create New Release
|
|
45
|
+
|
|
46
|
+
## 0.0.4
|
|
47
|
+
|
|
48
|
+
### Patch Changes
|
|
49
|
+
|
|
50
|
+
- 19ff8c7: chore: Create New Releases
|
|
51
|
+
|
|
52
|
+
## 0.0.3
|
|
53
|
+
|
|
54
|
+
### Patch Changes
|
|
55
|
+
|
|
56
|
+
- 68f081f: feat: SDK 네이밍 및 전체 구조 수정합니다.
|
|
57
|
+
|
|
58
|
+
## 0.0.2
|
|
59
|
+
|
|
60
|
+
### Patch Changes
|
|
61
|
+
|
|
62
|
+
- 8b54570: feat: 최적화 및 이슈 수정합니다.
|
|
63
|
+
|
|
64
|
+
## 0.0.1
|
|
65
|
+
|
|
66
|
+
### Patch Changes
|
|
67
|
+
|
|
68
|
+
- 271e88e: feat: ReactNative SDK 추가합니다.
|