affise-attribution-lib 1.6.42 → 1.6.43

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/README.md CHANGED
@@ -22,8 +22,8 @@
22
22
  - [Module AppsFlyer](#module-appsflyer)
23
23
  - [Module Huawei](#module-huawei)
24
24
  - [Module Link](#module-link)
25
- - [Module Persistent](#module-persistent)
26
25
  - [Module Meta](#module-meta)
26
+ - [Module Persistent](#module-persistent)
27
27
  - [Module Status](#module-status)
28
28
  - [Module Subscription](#module-subscription)
29
29
  - [AffiseProductType](#affiseproducttype)
@@ -177,14 +177,14 @@ Add modules to iOS project
177
177
 
178
178
  | Module | Version |
179
179
  |----------------|:------------------------------------------------------------------------------------:|
180
- | `ADSERVICE` | [`1.6.56`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
181
- | `ADVERTISING` | [`1.6.56`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
182
- | `APPSFLYER` | [`1.6.56`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
183
- | `LINK` | [`1.6.56`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
184
- | `PERSISTENT` | [`1.6.56`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
185
- | `STATUS` | [`1.6.56`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
186
- | `SUBSCRIPTION` | [`1.6.56`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
187
- | `TIKTOK` | [`1.6.56`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
180
+ | `ADSERVICE` | [`1.6.57`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
181
+ | `ADVERTISING` | [`1.6.57`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
182
+ | `APPSFLYER` | [`1.6.57`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
183
+ | `LINK` | [`1.6.57`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
184
+ | `PERSISTENT` | [`1.6.57`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
185
+ | `STATUS` | [`1.6.57`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
186
+ | `SUBSCRIPTION` | [`1.6.57`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
187
+ | `TIKTOK` | [`1.6.57`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
188
188
 
189
189
  Example [example/ios/Podfile](example/ios/Podfile)
190
190
 
@@ -192,7 +192,7 @@ Example [example/ios/Podfile](example/ios/Podfile)
192
192
  target 'YourAppProject' do
193
193
  # ...
194
194
 
195
- affise_version = '1.6.56'
195
+ affise_version = '1.6.57'
196
196
  # Affise Modules
197
197
  pod 'AffiseModule/AdService', affise_version
198
198
  pod 'AffiseModule/Advertising', affise_version
@@ -338,18 +338,6 @@ Affise.module.link.hasModule().then((hasModule) => {
338
338
  })
339
339
  ```
340
340
 
341
- #### Module Persistent
342
-
343
- `iOS Only`
344
-
345
- > [!NOTE]
346
- >
347
- > Module requires user phone to be authenticated by Apple ID
348
- >
349
- > It uses Apple `Security` framework to store protected information in user account
350
-
351
- Persist `device id` value for [Get random device Id](#get-random-device-id) on application reinstall
352
-
353
341
  #### Module Meta
354
342
 
355
343
  - [Meta Install Referrer Docs](https://developers.facebook.com/docs/app-ads/meta-install-referrer)
@@ -384,6 +372,18 @@ Affise
384
372
  .start(); // Start Affise SDK
385
373
  ```
386
374
 
375
+ #### Module Persistent
376
+
377
+ `iOS Only`
378
+
379
+ > [!NOTE]
380
+ >
381
+ > Module requires user phone to be authenticated by Apple ID
382
+ >
383
+ > It uses Apple `Security` framework to store protected information in user account
384
+
385
+ Persist `device id` value for [Get random device Id](#get-random-device-id) on application reinstall
386
+
387
387
  #### Module Status
388
388
 
389
389
  > [!CAUTION]
@@ -1763,9 +1763,9 @@ Affise.debug.versionNative().then((version) => {
1763
1763
  >
1764
1764
  > If Affise settings doesn't change after version update or api is working incorrectly.
1765
1765
  >
1766
- > **First**: try **reset cache** for `React Native`
1766
+ > **First**: try **reset cache** for `React Native`. `npm start -- --reset-cache` or `npm cache clean --force`
1767
1767
  >
1768
- > **Second**: completely stop android application on device **and** stop `React Native` `Metro server`
1768
+ > **Second**: completely stop application on device **and** stop `React Native` `Metro server`
1769
1769
  >
1770
1770
  > React Native relaunch `JavaScript`/`TypeScript` on live code change,
1771
1771
  > but native code (such as Affise native library) won't restart
@@ -1773,6 +1773,28 @@ Affise.debug.versionNative().then((version) => {
1773
1773
  >
1774
1774
  > 🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥
1775
1775
 
1776
+ > [!NOTE]
1777
+ >
1778
+ > 🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥
1779
+ >
1780
+ > Then reporting a **BUG**
1781
+ >
1782
+ > **Please** provide information:
1783
+ >
1784
+ > 1. From command `npx react-native doctor`
1785
+ >
1786
+ > 2. From command `npx react-native info`
1787
+ >
1788
+ > 3. On which platform bug occurred `iOS` or `Android`
1789
+ >
1790
+ > 4. Detailed log of a bug
1791
+ >
1792
+ > 5. Steps to reproduse a bug
1793
+ >
1794
+ > 6. Code which cause a bug
1795
+ >
1796
+ > 🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥
1797
+
1776
1798
  ## iOS
1777
1799
 
1778
1800
  > [!CAUTION]
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
17
17
  s.source_files = "ios/**/*.{h,m,mm,swift}"
18
18
 
19
19
  s.dependency "React-Core"
20
- s.dependency 'AffiseInternal', '1.6.56'
20
+ s.dependency 'AffiseInternal', '1.6.57'
21
21
 
22
22
  # Don't install the dependencies when we run `pod install` in the old architecture.
23
23
  if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
@@ -35,7 +35,7 @@ class AffiseDebug {
35
35
  * Debug get version of flutter library
36
36
  */
37
37
  version() {
38
- return "1.6.42";
38
+ return "1.6.43";
39
39
  }
40
40
 
41
41
  /**
@@ -29,7 +29,7 @@ export class AffiseDebug {
29
29
  * Debug get version of flutter library
30
30
  */
31
31
  version() {
32
- return "1.6.42";
32
+ return "1.6.43";
33
33
  }
34
34
 
35
35
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "affise-attribution-lib",
3
- "version": "1.6.42",
3
+ "version": "1.6.43",
4
4
  "description": "Affise Attribution Library",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -33,7 +33,7 @@ export class AffiseDebug implements AffiseDebugApi {
33
33
  * Debug get version of flutter library
34
34
  */
35
35
  version(): string {
36
- return "1.6.42";
36
+ return "1.6.43";
37
37
  }
38
38
 
39
39
  /**