com.amanotes.gdk 0.2.71 → 0.2.73-1
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 +108 -88
- package/Editor/AmaGDKEditor.cs +133 -135
- package/Editor/EmbedRemoteConfigAssetInspector.cs +1 -1
- package/Editor/Extra/GDKAutoUpdateAdapter.cs +24 -24
- package/Editor/Extra/GDKCIBuildCommand.cs +2 -16
- package/Extra/AmaGDKInstaller.unitypackage +0 -0
- package/Extra/CheckDiskSpace.unitypackage +0 -0
- package/Extra/Consent.unitypackage +0 -0
- package/Extra/ForceUpdate.unitypackage +0 -0
- package/Extra/LegacyGDKUpdateHelper.unitypackage +0 -0
- package/Extra/PostProcessor.unitypackage +0 -0
- package/Packages/AmaGDKConfig.unitypackage +0 -0
- package/Packages/AmaGDKExample.unitypackage +0 -0
- package/Packages/AmaGDKTest.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter.AdRevenue.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter.AdRevenue.unitypackage.meta +7 -0
- package/Packages/AppsFlyerAdapter.PurchaseConnector.unitypackage +0 -0
- package/Packages/AppsFlyerAdapter.unitypackage +0 -0
- package/Packages/FirebaseAnalyticsAdapter.unitypackage +0 -0
- package/Packages/FirebaseRemoteConfigAdapter.unitypackage +0 -0
- package/Packages/IronSourceAdapter.unitypackage +0 -0
- package/Packages/MaxAdNetworkAdapter.unitypackage +0 -0
- package/Packages/RevenueCatAdapter.unitypackage +0 -0
- package/Packages/SqliteAnalyticsAdapter.unitypackage +0 -0
- package/Runtime/Ad/AdExtension.cs +2 -1
- package/Runtime/Ad/AdLogic.cs +10 -5
- package/Runtime/Ad/AmaGDK.Ads.cs +2 -2
- package/Runtime/AmaGDK.Adapters.cs +7 -4
- package/Runtime/AmaGDK.Analytics.cs +67 -48
- package/Runtime/AmaGDK.Config.cs +1 -7
- package/Runtime/AmaGDK.Consent.cs +9 -8
- package/Runtime/AmaGDK.Context.cs +1 -1
- package/Runtime/AmaGDK.Device.cs +3 -2
- package/Runtime/AmaGDK.IAP.cs +1 -1
- package/Runtime/AmaGDK.RemoteConfig.cs +2 -2
- package/Runtime/AmaGDK.Singleton.cs +1 -1
- package/Runtime/AmaGDK.UserProfile.cs +12 -11
- package/Runtime/AmaGDK.asmdef +1 -1
- package/Runtime/AmaGDK.cs +25 -15
- package/Runtime/AnalyticQualityAsset.cs +5 -6
- package/Runtime/AudioToolkit/AmaGDK.Audio.cs +3 -2
- package/Runtime/AudioToolkit/Plugins/AudioDeviceDetector.cs +2 -2
- package/Runtime/Core/GDKDebug.cs +97 -0
- package/Runtime/Core/GDKDebug.cs.meta +3 -0
- package/Runtime/Core/GDKPool.cs +56 -337
- package/Runtime/Core/GDKRoutine.cs +3 -1
- package/Runtime/Core/GDKSemVer.cs +1 -1
- package/Runtime/Core/GDKString.cs +197 -0
- package/Runtime/Core/GDKString.cs.meta +3 -0
- package/Runtime/EmbedRemoteConfigAsset.cs +2 -1
- package/Runtime/Fps/AmaFPS.Utils.cs +5 -1
- package/Runtime/Fps/AmaFPS.cs +1 -1
- package/Runtime/Fps/AmaFPSVisualizer.cs +7 -2
- package/Runtime/Fps/FrameRecorder.cs +1 -1
- package/Runtime/GDKAudio/GDKAudio.cs +16 -13
- package/Runtime/Internal/AmaGDK.Internal.cs +24 -34
- package/Runtime/Internal/AmaGDK.Utils.cs +4 -4
- package/Runtime/Internal/AmaGDK.WebUtils.cs +1 -1
- package/Runtime/Internal/GDKGeoLocationcs.cs +2 -1
- package/Runtime/Internal/GDKServerTime.cs +2 -1
- package/Runtime/Klavar/Attributes/TimeDiffLastFireAttribute.cs +2 -1
- package/Runtime/Klavar/KlavarContainer.cs +4 -4
- package/Runtime/UserProfile/Plugins/Android/AdvertisingIdFetcher.cs +1 -1
- package/Runtime/Utils/GDKUtils.cs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.2.
|
|
3
|
+
## [0.2.73] - 2024-09-09
|
|
4
|
+
- [Fix] Disable incorrect in-editor warning for AdLogic
|
|
5
|
+
- [Dev] Remove AdEventTracking dependency on AppsFlyer
|
|
6
|
+
- [Dev] Rename Utils to GDKUtils
|
|
7
|
+
- [Dev] Automatically convert Enum value to string for analytics
|
|
8
|
+
- [Dev] Show less analytics error and warning log
|
|
9
|
+
- [Fix] Cannot create AmaGDKConfig
|
|
10
|
+
- [Fix] Change to dev mode should automatically refresh packages & recompile
|
|
11
|
+
- [Fix] Screen.currentResolution.refreshRate obsoleted on Unity 2022.2 and newer versions
|
|
12
|
+
- [Dev] Disable auto update adapter
|
|
13
|
+
- [Fix] Show all related adapters of each product
|
|
14
|
+
|
|
15
|
+
## [0.2.72] - 2024-08-29
|
|
16
|
+
- Revert "[Dev] Improve GDKPool performance main thread by using non-locking structure"
|
|
17
|
+
- This reverts commit 5857ea9cb05adf9e96a747216da8acd48e39f93e.
|
|
18
|
+
- [Fix] Change log version format `[version] - yyyy-MM-dd`
|
|
19
|
+
- [Dev] Add GDKDebug with no stack trace (to reduce GC)
|
|
20
|
+
- [Dev] Add GDKString for zero-allocated string operations
|
|
21
|
+
- [Fix] Change Gradle path only if GRADLE_PATH environment variable is set in headless mode
|
|
22
|
+
|
|
23
|
+
## [0.2.71] - 2024-08-22
|
|
4
24
|
- [Dev] Add export stage to reduce pipeline build time
|
|
5
25
|
- [Dev] Cache IL2CPP and Gradle user home
|
|
6
26
|
- [Dev] Improve GDKPool performance main thread by using non-locking structure
|
|
@@ -18,12 +38,12 @@
|
|
|
18
38
|
- [Dev] Add support pod install and debug symbol generation in CI script
|
|
19
39
|
- [Fix] Missing handler for various types in FirebaseAnalyticsAdapter
|
|
20
40
|
|
|
21
|
-
## [0.2.70 - 2024-08-02
|
|
41
|
+
## [0.2.70] - 2024-08-02
|
|
22
42
|
- [Fix] onAdResult call multiple times
|
|
23
43
|
- [Dev] Show SQLite analytics in GDK Inspector
|
|
24
44
|
- [Dev] Reduce GC by reuse StringBuilders
|
|
25
45
|
|
|
26
|
-
## [0.2.69 - 2024-07-26
|
|
46
|
+
## [0.2.69] - 2024-07-26
|
|
27
47
|
- [Fix] disable Max adapter
|
|
28
48
|
- [Dev] Update OnAdResult callback
|
|
29
49
|
- [Fix] Waiting for ad callback
|
|
@@ -57,16 +77,17 @@
|
|
|
57
77
|
- [Dev] Enable AudioModule by default
|
|
58
78
|
- [Dev] Standardize variable names
|
|
59
79
|
|
|
60
|
-
## [0.2.68 - 2024-07-08
|
|
80
|
+
## [0.2.68] - 2024-07-08
|
|
61
81
|
- [Dev] Add IronSource setting to pause game during ad
|
|
62
82
|
- [Fix] Support Android API Version 24 and below
|
|
63
83
|
- [Dev] Add Audio Module flag
|
|
64
84
|
|
|
65
|
-
## [0.2.67 - 2024-07-04
|
|
85
|
+
## [0.2.67] - 2024-07-04
|
|
66
86
|
- [Fix] Do retry immediately when OnAdLoadFailed trigger regardless of reason
|
|
67
87
|
- Also: Update default ad request timeout to 30 secs
|
|
68
88
|
- [Feature] Support FPS tracking
|
|
69
|
-
|
|
89
|
+
|
|
90
|
+
## [0.2.66-1] - 2024-06-25
|
|
70
91
|
- [Dev] Add a flag to control flushEventDetail (save to file)
|
|
71
92
|
- [Fix] Remove device spec call from constructor of AmaGDK
|
|
72
93
|
- [Feature] classify device performance
|
|
@@ -76,18 +97,18 @@
|
|
|
76
97
|
- [Dev] Handle a special case when Ad close callback is not triggered
|
|
77
98
|
- [Dev] Automatically reimport adapters & extra packages on update
|
|
78
99
|
|
|
79
|
-
## [0.2.66 - 2024-06-25
|
|
100
|
+
## [0.2.66] - 2024-06-25
|
|
80
101
|
- [Dev] Verify all fields are reset in Init EventParams
|
|
81
102
|
- [Dev] Add try catch to prevent coroutines to stop silently
|
|
82
103
|
- [Fix] Reset 'isLoggedImmediately' for every new EventParams
|
|
83
104
|
- [Dev] Update Audio native plugin name
|
|
84
105
|
|
|
85
|
-
## [0.2.65-6 - 2024-06-20
|
|
106
|
+
## [0.2.65-6] - 2024-06-20
|
|
86
107
|
- [Dev] Improve SDK Version Tracking
|
|
87
108
|
- [Klavar] improve enum converter
|
|
88
109
|
- [Fix] Turn off Google CMP on Editor
|
|
89
110
|
|
|
90
|
-
## [0.2.65-5 - 2024-06-17
|
|
111
|
+
## [0.2.65-5] - 2024-06-17
|
|
91
112
|
- [Dev] Update for GDKTest Unity 2022.3 project
|
|
92
113
|
- [Dev] Update for GDKTest Unity 2021.3 project
|
|
93
114
|
- [Dev] Enable pipeline for unity 2020
|
|
@@ -99,23 +120,23 @@
|
|
|
99
120
|
- [Dev] Degrade GDKDev project to Unity 2020
|
|
100
121
|
- [Dev] Audio module supports Unity 2020
|
|
101
122
|
|
|
102
|
-
## [0.2.65-4 - 2024-06-14
|
|
123
|
+
## [0.2.65-4] - 2024-06-14
|
|
103
124
|
- [Dev] Audio module supports Unity 2020
|
|
104
125
|
- [Dev] Degrade GDKDev project to Unity 2020
|
|
105
126
|
|
|
106
|
-
## [0.2.65-3 - 2024-06-14
|
|
127
|
+
## [0.2.65-3] - 2024-06-14
|
|
107
128
|
- [Dev] Simplify LocalBuild + Minor editor fixes for GDK Analytics
|
|
108
129
|
- [Dev] fix PostBuild unity 2020
|
|
109
130
|
- [Dev] Audio Device Detector and Bluetooth Audio Latency
|
|
110
131
|
- [Dev] Update SDK configs
|
|
111
132
|
|
|
112
|
-
## [0.2.65-2 - 2024-06-13
|
|
133
|
+
## [0.2.65-2] - 2024-06-13
|
|
113
134
|
- [Feature] Implement analytics event correction for force kill app
|
|
114
135
|
- [Feature] Upload version tracking to Airtable
|
|
115
136
|
- [Fix] Unity 2020 compatible
|
|
116
137
|
- [Fix] Wrong condition check for first time remote config
|
|
117
138
|
|
|
118
|
-
## [0.2.65 - 2024-06-13
|
|
139
|
+
## [0.2.65] - 2024-06-13
|
|
119
140
|
- [Dev] Add GDKRoutine
|
|
120
141
|
- [Dev] Add option to preload banners
|
|
121
142
|
- [Fix] Handle GoogleCMP callback in main-thread
|
|
@@ -125,7 +146,7 @@
|
|
|
125
146
|
- [Feature] Add fullads_impression & videoads_impression events for better fill rate tracking
|
|
126
147
|
- [Klavar] Improve parameter validation
|
|
127
148
|
|
|
128
|
-
## [0.2.64 - 2024-06-06
|
|
149
|
+
## [0.2.64] - 2024-06-06
|
|
129
150
|
- [Dev] Log gdk_init
|
|
130
151
|
- [Fix] map_user_id must contain FRB, AF, [GAID, IDFA]
|
|
131
152
|
- [Dev] Check duplicated SKAdNetwork
|
|
@@ -137,7 +158,7 @@
|
|
|
137
158
|
- Also: Hide config details
|
|
138
159
|
- [Feature] Support AF Purchase Connector and deeplinking
|
|
139
160
|
|
|
140
|
-
## [0.2.63 - 2024-06-01
|
|
161
|
+
## [0.2.63] - 2024-06-01
|
|
141
162
|
- [Fix] Do not include default GDK config asset
|
|
142
163
|
- [Fix] Support compare SemVer with an invalid value
|
|
143
164
|
- [Dev] Add ShowBanner/ HideBanner buttons to AmaGDKExample
|
|
@@ -149,7 +170,7 @@
|
|
|
149
170
|
- - Min iOS 13.0
|
|
150
171
|
- [Klavar] Parse Klavar structure v0.3
|
|
151
172
|
|
|
152
|
-
## [0.2.62 - 2024-05-27
|
|
173
|
+
## [0.2.62] - 2024-05-27
|
|
153
174
|
- [Dev] Remove pipeline for unity 2020
|
|
154
175
|
- [Dev] Dispatch changes / support callback for when UserId updated
|
|
155
176
|
- Also: Improve log to show UserId in GDK Ready message
|
|
@@ -167,11 +188,11 @@
|
|
|
167
188
|
- Also: Update AppsFlyer + GMA SDK
|
|
168
189
|
- [Dev] Fix change log post JSON error
|
|
169
190
|
|
|
170
|
-
## [0.2.61 - 2024-04-25
|
|
191
|
+
## [0.2.61] - 2024-04-25
|
|
171
192
|
- Add immediate event logging logic
|
|
172
193
|
- [Feature] Improve handling of locked parameters in Klavar
|
|
173
194
|
|
|
174
|
-
## [0.2.60 - 2024-04-23
|
|
195
|
+
## [0.2.60] - 2024-04-23
|
|
175
196
|
- [Feature] Ensured container's context values remain unchanged
|
|
176
197
|
- [Feature] Check sent funnel event
|
|
177
198
|
- [Feature] IRS test suite option
|
|
@@ -180,11 +201,10 @@
|
|
|
180
201
|
- [Dev] Auto get tag and push change log to Notion
|
|
181
202
|
- [Dev] Warning missing adapter when using .OnlyTo()
|
|
182
203
|
|
|
183
|
-
## [0.2.59 - 2024-04-12
|
|
204
|
+
## [0.2.59] - 2024-04-12
|
|
184
205
|
- [Dev] Improve code coverage
|
|
185
206
|
|
|
186
|
-
|
|
187
|
-
## [0.2.58 - 2024-04-09]
|
|
207
|
+
## [0.2.58] - 2024-04-09
|
|
188
208
|
- [DEV] combine code coverage report
|
|
189
209
|
- [Dev] Improve GDK Utils
|
|
190
210
|
- [Dev] Add hints to AdCallback APIs
|
|
@@ -192,7 +212,7 @@
|
|
|
192
212
|
- [Fix] Various warnings fixes due to invalid examples
|
|
193
213
|
- [Fix] Warning on AdContext destroyed caused by invalid editor ad callback
|
|
194
214
|
|
|
195
|
-
## [0.2.57 - 2024-04-08
|
|
215
|
+
## [0.2.57] - 2024-04-08
|
|
196
216
|
- [Dev] Fix bug in value conversion within KlavarEvent
|
|
197
217
|
- [Dev] Auto get change log
|
|
198
218
|
- [Dev] Auto publish command
|
|
@@ -201,28 +221,28 @@
|
|
|
201
221
|
- [Dev] Clean up and add tooltip for options
|
|
202
222
|
- [Fix] Null exception in LocalBuild Version
|
|
203
223
|
|
|
204
|
-
## [0.2.56 - 2024-04-03
|
|
224
|
+
## [0.2.56] - 2024-04-03
|
|
205
225
|
- Release AmaGDK v0.2.56
|
|
206
226
|
|
|
207
|
-
## [0.2.55 - 2024-03-28
|
|
227
|
+
## [0.2.55] - 2024-03-28
|
|
208
228
|
- Send af_inters_displayed & af_rewarded_displayed to AppsFlyer
|
|
209
229
|
- Use Sqlite for analytics
|
|
210
230
|
- Fix IRS callback for RW not working properly in Editor
|
|
211
231
|
- Split google sheet name by platform for SDK version tracking
|
|
212
232
|
- Track version of ACM, Facebook, Build number, build time
|
|
213
233
|
|
|
214
|
-
## [0.2.54 - 2024-03-20
|
|
234
|
+
## [0.2.54] - 2024-03-20
|
|
215
235
|
- Update temp total count after accumulated count change
|
|
216
236
|
- Update FirebaseHook
|
|
217
237
|
|
|
218
|
-
## [0.2.53 - 2024-03-14
|
|
238
|
+
## [0.2.53] - 2024-03-14
|
|
219
239
|
- Add FirebaseCrashlyticsHook
|
|
220
240
|
- Fix Change to dev mode
|
|
221
241
|
- Public analytics config
|
|
222
242
|
- Update SDK version tracking
|
|
223
243
|
- Update GDKLocalBuild
|
|
224
244
|
|
|
225
|
-
## [0.2.52 - 2024-02-27
|
|
245
|
+
## [0.2.52] - 2024-02-27
|
|
226
246
|
- Change post processing order
|
|
227
247
|
- Remove GDKInstaller after installed
|
|
228
248
|
- Enable pipeline execution for branches with active merge requests
|
|
@@ -230,17 +250,17 @@
|
|
|
230
250
|
- Update Google Sheet Id default
|
|
231
251
|
- Optimize GC for Analytics
|
|
232
252
|
|
|
233
|
-
## [0.2.51 - 2024-02-20
|
|
253
|
+
## [0.2.51] - 2024-02-20
|
|
234
254
|
- Change Google Mobile Ads SDK version , iosPod 10.5.0
|
|
235
255
|
|
|
236
|
-
## [0.2.50 - 2024-02-20
|
|
256
|
+
## [0.2.50] - 2024-02-20
|
|
237
257
|
- New feature: Modify Android post processor
|
|
238
258
|
- [Fix] remove installer should be skipped in DEV mode
|
|
239
259
|
- New feature: Check Disk Space
|
|
240
260
|
- Update version tracking: Add SkAdnetwork count
|
|
241
261
|
- Add check internet option for Ad module
|
|
242
262
|
|
|
243
|
-
## [0.2.49 - 2024-01-29
|
|
263
|
+
## [0.2.49] - 2024-01-29
|
|
244
264
|
- New feature: SDK version tracking
|
|
245
265
|
- New feature: Google Consent Management (CMP)
|
|
246
266
|
- New feature: Force update pop-up
|
|
@@ -250,92 +270,92 @@
|
|
|
250
270
|
- Fix IAP editor
|
|
251
271
|
- Improve generated code for Klavar
|
|
252
272
|
|
|
253
|
-
## [0.2.48 - 2024-01-15
|
|
273
|
+
## [0.2.48] - 2024-01-15
|
|
254
274
|
- Add GDKTest project for Unity versions 2020.3, 2021.3 and 2022.3
|
|
255
275
|
- Integrate Klavar library & toolset
|
|
256
276
|
|
|
257
|
-
## [0.2.47 - 2024-01-09
|
|
277
|
+
## [0.2.47] - 2024-01-09
|
|
258
278
|
- Some clean up, null checks & improvements for AmaGDK Editor
|
|
259
279
|
- Add GDKTest project for Unity versions 2020.3, 2021.3 and 2022.3
|
|
260
280
|
|
|
261
|
-
## [0.2.46 - 2023-12-19
|
|
281
|
+
## [0.2.46] - 2023-12-19
|
|
262
282
|
- Cleaner UI interface for AmaGDK Inspector
|
|
263
283
|
- Add AmaGUI to centralize all GUI handles
|
|
264
284
|
- [Fix] OnAdResult callback being looped through calling StopWaitForAd
|
|
265
285
|
- [Fix] Exception while loading / parsing LoadJsonFromFile
|
|
266
286
|
|
|
267
|
-
## [0.2.45 - 2023-12-13
|
|
287
|
+
## [0.2.45] - 2023-12-13
|
|
268
288
|
- [Fix] Able to assign ama_device_id in Editor
|
|
269
289
|
|
|
270
|
-
## [0.2.44 - 2023-12-08
|
|
290
|
+
## [0.2.44] - 2023-12-08
|
|
271
291
|
- [Fix] Auto log Ad events
|
|
272
292
|
|
|
273
|
-
## [0.2.43 - 2023-12-06
|
|
293
|
+
## [0.2.43] - 2023-12-06
|
|
274
294
|
- [Fix] Support AmaDeviceId on Standalone
|
|
275
295
|
|
|
276
|
-
## [0.2.42 - 2023-11-28
|
|
296
|
+
## [0.2.42] - 2023-11-28
|
|
277
297
|
- [Fix] AdShowNotReady only trigger for 3 type of status
|
|
278
298
|
- [Fix] WaitForSeconds can not be shared between different routines
|
|
279
299
|
|
|
280
|
-
## [0.2.41 - 2023-11-28
|
|
300
|
+
## [0.2.41] - 2023-11-28
|
|
281
301
|
- Add more state callbacks for AdShowReadyStatus
|
|
282
302
|
- Fix not wait for RewardCancel event (not exist any more)
|
|
283
303
|
- Timeout for Adapter init should be 1s
|
|
284
304
|
|
|
285
|
-
## [0.2.40 - 2023-11-27
|
|
305
|
+
## [0.2.40] - 2023-11-27
|
|
286
306
|
- Fix ShowAdTimeout = 0 should not wait for Ad
|
|
287
307
|
|
|
288
|
-
## [0.2.39 - 2023-11-27
|
|
308
|
+
## [0.2.39] - 2023-11-27
|
|
289
309
|
- Fix variable name and variable value of "ChangeDevMode"
|
|
290
310
|
- Load Ad timeout should cancel
|
|
291
311
|
|
|
292
|
-
## [0.2.38 - 2023-11-22
|
|
312
|
+
## [0.2.38] - 2023-11-22
|
|
293
313
|
- Improve Ads API
|
|
294
314
|
- Add Ad Quality
|
|
295
315
|
|
|
296
|
-
## [0.2.37 - 2023-11-21
|
|
316
|
+
## [0.2.37] - 2023-11-21
|
|
297
317
|
- Improve GDK logs
|
|
298
318
|
- Banner will not show when ad adapter is not ready
|
|
299
319
|
- Fix ama_device_id on Android
|
|
300
320
|
|
|
301
|
-
## [0.2.36 - 2023-11-15
|
|
321
|
+
## [0.2.36] - 2023-11-15
|
|
302
322
|
- Add OnAdShowReadyStatus callback
|
|
303
323
|
- Revamp AdEventTracking
|
|
304
324
|
|
|
305
|
-
## [0.2.35 - 2023-11-14
|
|
325
|
+
## [0.2.35] - 2023-11-14
|
|
306
326
|
- [Fix] Save UserID
|
|
307
327
|
|
|
308
|
-
## [0.2.34 - 2023-11-10
|
|
328
|
+
## [0.2.34] - 2023-11-10
|
|
309
329
|
- [Fix] ShowSuccessed event not call in editor
|
|
310
330
|
- Add clear all data button on AmaGDK prefab
|
|
311
331
|
|
|
312
|
-
## [0.2.33 - 2023-11-09
|
|
332
|
+
## [0.2.33] - 2023-11-09
|
|
313
333
|
- Remove Adjust
|
|
314
334
|
- Update RevenueCat attributes
|
|
315
335
|
|
|
316
|
-
## [0.2.32 - 2023-11-08
|
|
336
|
+
## [0.2.32] - 2023-11-08
|
|
317
337
|
- User mapping
|
|
318
338
|
- Auto log Ad events
|
|
319
339
|
|
|
320
|
-
## [0.2.31 - 2023-11-06
|
|
340
|
+
## [0.2.31] - 2023-11-06
|
|
321
341
|
- [Fix] False alarm when video reward ready
|
|
322
342
|
- [Fix] Callbacks should trigger earlier (being delayed like 1s)
|
|
323
343
|
|
|
324
|
-
## [0.2.3 - 2023-11-06
|
|
344
|
+
## [0.2.3] - 2023-11-06
|
|
325
345
|
- [Fix] GDK should base on realtime instead of game time (which may be pause due to timescale)
|
|
326
346
|
|
|
327
|
-
## [0.2.29 - 2023-11-03
|
|
347
|
+
## [0.2.29] - 2023-11-03
|
|
328
348
|
- Fix accumulated_count
|
|
329
349
|
- Fix missing IDFA
|
|
330
350
|
|
|
331
|
-
## [0.2.28 - 2023-11-01
|
|
351
|
+
## [0.2.28] - 2023-11-01
|
|
332
352
|
- Ads: Set timescale to 0 after save
|
|
333
353
|
|
|
334
|
-
## [0.2.27 - 2023-11-01
|
|
354
|
+
## [0.2.27] - 2023-11-01
|
|
335
355
|
- No longer stop ad
|
|
336
356
|
- Update ad status by adapter
|
|
337
357
|
|
|
338
|
-
## [0.2.26 - 2023-10-30
|
|
358
|
+
## [0.2.26] - 2023-10-30
|
|
339
359
|
- Add Ads event tracking
|
|
340
360
|
- Check real internet connection
|
|
341
361
|
- Add onResult callback
|
|
@@ -344,7 +364,7 @@
|
|
|
344
364
|
- Move SkAdNetwork Fetch to GameObject context menu
|
|
345
365
|
- Remove IS event publisher from Ad module
|
|
346
366
|
|
|
347
|
-
## [0.2.25 - 2023-10-25
|
|
367
|
+
## [0.2.25] - 2023-10-25
|
|
348
368
|
Update Ads module:
|
|
349
369
|
- OnRewardedAvailable
|
|
350
370
|
- OnRewardedUnavailable
|
|
@@ -353,59 +373,59 @@ Update Ads module:
|
|
|
353
373
|
- Polish display of ironSource config's inspector
|
|
354
374
|
- Move SKAdnetwork's destination to Editor
|
|
355
375
|
|
|
356
|
-
## [0.2.23 - 2023-10-18
|
|
376
|
+
## [0.2.23] - 2023-10-18
|
|
357
377
|
- Fix UserProfile out of main thread
|
|
358
378
|
- Handle multiple Firebase's dependency check
|
|
359
379
|
|
|
360
|
-
## [0.2.22 - 2023-10-11
|
|
380
|
+
## [0.2.22] - 2023-10-11
|
|
361
381
|
- Get adapter info
|
|
362
382
|
|
|
363
|
-
## [0.2.21 - 2023-10-11
|
|
383
|
+
## [0.2.21] - 2023-10-11
|
|
364
384
|
- RevenueCat adapter v6.0.0
|
|
365
385
|
- Handle early Firebase call
|
|
366
386
|
- Fix null exception in non-subscription game
|
|
367
387
|
- Add log level
|
|
368
388
|
|
|
369
|
-
## [0.2.20 - 2023-10-05
|
|
389
|
+
## [0.2.20] - 2023-10-05
|
|
370
390
|
- Update RevenueCat 5.3.0
|
|
371
391
|
|
|
372
|
-
## [0.2.19 - 2023-09-12
|
|
392
|
+
## [0.2.19] - 2023-09-12
|
|
373
393
|
- Add `ama_device_id` to all events
|
|
374
394
|
|
|
375
|
-
## [0.2.18 - 2023-09-11
|
|
395
|
+
## [0.2.18] - 2023-09-11
|
|
376
396
|
- Add dev mode switch
|
|
377
397
|
- Auto get SDK version
|
|
378
398
|
- Add in-app purchase module, RevenueCat
|
|
379
399
|
- Support Unity 2019.4
|
|
380
400
|
- Remove AmaPassport
|
|
381
401
|
|
|
382
|
-
## [0.2.14 - 2023-08-08
|
|
402
|
+
## [0.2.14] - 2023-08-08
|
|
383
403
|
- Support multiple embed remote config and load config by id
|
|
384
404
|
- Clear cached remote config on new app update
|
|
385
405
|
- Override remote config value in editor mode
|
|
386
406
|
- New feature: Analytics Quality
|
|
387
407
|
|
|
388
|
-
## [0.2.13 - 2023-07-20
|
|
408
|
+
## [0.2.13] - 2023-07-20
|
|
389
409
|
- Fix error Remote Config JSON caused by special chars (", ', \)
|
|
390
410
|
|
|
391
|
-
## [0.2.12 - 2023-07-07
|
|
411
|
+
## [0.2.12] - 2023-07-07
|
|
392
412
|
- Restructure GDK - symlink GDK source to unity projects
|
|
393
413
|
- Unity 2019 compatible - no null coalescing
|
|
394
414
|
- Remove redundant AmaPassport config field
|
|
395
415
|
- Auto request AmaId
|
|
396
416
|
|
|
397
|
-
## [0.2.11 - 2023-06-29
|
|
417
|
+
## [0.2.11] - 2023-06-29
|
|
398
418
|
- SetLogCondition with EventParam
|
|
399
419
|
- Rename Migrated -> HasMigrated
|
|
400
420
|
- Fix StopShowAd
|
|
401
421
|
|
|
402
|
-
## [0.2.10 - 2023-06-23
|
|
422
|
+
## [0.2.10] - 2023-06-23
|
|
403
423
|
- Extra package: Project Panel
|
|
404
424
|
- Remote config: Allow user to enable / disable automatic default valuye updating (in play mode)
|
|
405
425
|
- Fix ad routine
|
|
406
426
|
- Expose analytics migration flag
|
|
407
427
|
|
|
408
|
-
## [0.2.9 - 2023-06-15
|
|
428
|
+
## [0.2.9] - 2023-06-15
|
|
409
429
|
- Show total init time
|
|
410
430
|
- Show adapter version + status at init time
|
|
411
431
|
- Remove AmaGDK version in debug log
|
|
@@ -415,73 +435,73 @@ Update Ads module:
|
|
|
415
435
|
- Add csc.rsp to enable AMAGDK_DEV
|
|
416
436
|
- Update Ads module
|
|
417
437
|
|
|
418
|
-
## [0.2.8 - 2023-06-12
|
|
438
|
+
## [0.2.8] - 2023-06-12
|
|
419
439
|
- Mute Appsflyer's init log on Editor
|
|
420
440
|
- Clear analytics log in adapters
|
|
421
441
|
- Check null event params before calling AddParam()
|
|
422
442
|
- Export AmaPassport info
|
|
423
443
|
|
|
424
|
-
## [0.2.7 - 2023-06-09
|
|
444
|
+
## [0.2.7] - 2023-06-09
|
|
425
445
|
- Fix log single adapter
|
|
426
446
|
|
|
427
|
-
## [0.2.6 - 2023-06-08
|
|
447
|
+
## [0.2.6] - 2023-06-08
|
|
428
448
|
- Update AmaPassport
|
|
429
449
|
- Fix JSON parse in RemoteConfig
|
|
430
450
|
- Ads adds interstitial callbacks
|
|
431
451
|
- Clean & export AmaGDK Installer
|
|
432
452
|
|
|
433
|
-
## [0.2.5 - 2023-06-07
|
|
453
|
+
## [0.2.5] - 2023-06-07
|
|
434
454
|
- Remove ATT dependency package
|
|
435
455
|
|
|
436
|
-
## [0.2.4 - 2023-06-07
|
|
456
|
+
## [0.2.4] - 2023-06-07
|
|
437
457
|
- Hotfix Ads module
|
|
438
458
|
- Update Analytics unit tests
|
|
439
459
|
|
|
440
|
-
## [0.2.3 - 2023-06-06
|
|
460
|
+
## [0.2.3] - 2023-06-06
|
|
441
461
|
- Refactor Ads module, support ironSource
|
|
442
462
|
- Refactor AmaPassport
|
|
443
463
|
- Refactor AmaGDK structure
|
|
444
464
|
- Add callback when RemoteConfig module completes fetching
|
|
445
465
|
|
|
446
|
-
## [0.1.20 - 2023-04-20
|
|
466
|
+
## [0.1.20] - 2023-04-20
|
|
447
467
|
- Refactor Adapter architure to support reading adapter config from Core
|
|
448
468
|
- Add session stat for Analytics module
|
|
449
469
|
- Unit test for Json parser and Analytics module
|
|
450
470
|
|
|
451
|
-
## [0.1.19 - 2023-04-11
|
|
471
|
+
## [0.1.19] - 2023-04-11
|
|
452
472
|
- Move AmaGDKTest out of AmaGDKCore
|
|
453
473
|
|
|
454
|
-
## [0.1.18 - 2023-03-27
|
|
474
|
+
## [0.1.18] - 2023-03-27
|
|
455
475
|
- Fix AmaGDK's autoInit saving issue
|
|
456
476
|
|
|
457
|
-
## [0.1.17 - 2023-03-13
|
|
477
|
+
## [0.1.17] - 2023-03-13
|
|
458
478
|
- Release AmaGDK v0.1.17
|
|
459
479
|
- Rename Analytics APIs
|
|
460
480
|
|
|
461
|
-
## [0.1.16 - 2023-03-10
|
|
481
|
+
## [0.1.16] - 2023-03-10
|
|
462
482
|
- Release AmaGDK v0.1.16
|
|
463
483
|
- SemVer supports 4 parts
|
|
464
484
|
- Analytics supports EventConfig
|
|
465
485
|
|
|
466
|
-
## [0.1.15 - 2023-03-06
|
|
486
|
+
## [0.1.15] - 2023-03-06
|
|
467
487
|
- Release AmaGDK v0.1.15
|
|
468
488
|
- Fix null exception in VersionExtractor
|
|
469
489
|
- Warn unhandle platform in Appsflyer initialization
|
|
470
490
|
- Allow dev to SetPermittedEvents and SetForbiddenEvents to the adapter config
|
|
471
491
|
|
|
472
|
-
## [0.1.14 - 2023-03-02
|
|
492
|
+
## [0.1.14] - 2023-03-02
|
|
473
493
|
- Release AmaGDK v0.1.14
|
|
474
494
|
|
|
475
|
-
## [0.1.13 - 2023-03-01
|
|
495
|
+
## [0.1.13] - 2023-03-01
|
|
476
496
|
- Release AmaGDK v0.1.13
|
|
477
497
|
- Fix Semver parser
|
|
478
498
|
|
|
479
|
-
## [0.1.12 - 2023-03-01
|
|
499
|
+
## [0.1.12] - 2023-03-01
|
|
480
500
|
- Release AmaGDK v0.1.12
|
|
481
501
|
- Prioritize analytics instant config over the base config
|
|
482
502
|
- Public common config
|
|
483
503
|
|
|
484
|
-
## [0.1.11 - 2023-02-28
|
|
504
|
+
## [0.1.11] - 2023-02-28
|
|
485
505
|
- Release AmaGDK v0.1.11
|
|
486
506
|
- Auto start and log Appsflyer open session
|
|
487
507
|
- Add analytics adapter base config
|
|
@@ -490,26 +510,26 @@ Update Ads module:
|
|
|
490
510
|
- Add AmaGDKManager
|
|
491
511
|
- Refactor Adapter to support for init order configuration
|
|
492
512
|
|
|
493
|
-
## [0.1.10 - 2023-02-17
|
|
513
|
+
## [0.1.10] - 2023-02-17
|
|
494
514
|
- Release AmaGDK v0.1.10
|
|
495
515
|
|
|
496
|
-
## [0.1.9 - 2023-02-15
|
|
516
|
+
## [0.1.9] - 2023-02-15
|
|
497
517
|
- Release AmaGDK v0.1.9
|
|
498
518
|
- Change Documentation URL
|
|
499
519
|
- Support API LogEvent(eventName, parameters)
|
|
500
520
|
|
|
501
|
-
## [0.1.8 - 2023-02-15
|
|
521
|
+
## [0.1.8] - 2023-02-15
|
|
502
522
|
- Release AmaGDK v0.1.8
|
|
503
523
|
- Add AdapterID
|
|
504
524
|
|
|
505
|
-
## [0.1.5 - 2023-02-13
|
|
525
|
+
## [0.1.5] - 2023-02-13
|
|
506
526
|
- Release AmaSDK v0.1.5
|
|
507
527
|
- Validate EventParams
|
|
508
528
|
|
|
509
|
-
## [0.1.4 - 2023-02-13
|
|
529
|
+
## [0.1.4] - 2023-02-13
|
|
510
530
|
- Release AmaSDK v0.1.4
|
|
511
531
|
|
|
512
|
-
## [0.1.3 - 2023-02-10
|
|
532
|
+
## [0.1.3] - 2023-02-10
|
|
513
533
|
- Release AmaSDK v0.1.3
|
|
514
534
|
|
|
515
535
|
## [0.1.2] - 2023-02-08
|