affise-attribution-lib 1.6.12 → 1.6.13

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
@@ -118,10 +118,10 @@ Example [`example/android/app/build.gradle`](example/android/app/build.gradle)
118
118
  ```gradle
119
119
  dependencies {
120
120
  // Affise modules
121
- implementation 'com.affise:module-advertising:1.6.+'
122
- implementation 'com.affise:module-network:1.6.+'
123
- implementation 'com.affise:module-phone:1.6.+'
124
- implementation 'com.affise:module-status:1.6.+'
121
+ implementation 'com.affise:module-advertising:1.6.23'
122
+ implementation 'com.affise:module-network:1.6.23'
123
+ implementation 'com.affise:module-phone:1.6.23'
124
+ implementation 'com.affise:module-status:1.6.23'
125
125
  }
126
126
  ```
127
127
 
@@ -131,8 +131,8 @@ Add modules to iOS project
131
131
 
132
132
  | Module | Version | Start |
133
133
  |---------------|:------------------------------------------------------------------------------------:|----------|
134
- | `ADVERTISING` | [`1.6.20`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` |
135
- | `STATUS` | [`1.6.20`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
134
+ | `ADVERTISING` | [`1.6.25`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` |
135
+ | `STATUS` | [`1.6.25`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
136
136
 
137
137
  Example [example/ios/Podfile](example/ios/Podfile)
138
138
 
@@ -141,8 +141,8 @@ target 'YourAppProject' do
141
141
  # ...
142
142
 
143
143
  # Affise Modules
144
- pod 'AffiseModule/Advertising', `1.6.20`
145
- pod 'AffiseModule/Status', `1.6.20`
144
+ pod 'AffiseModule/Advertising', `1.6.25`
145
+ pod 'AffiseModule/Status', `1.6.25`
146
146
  end
147
147
  ```
148
148
 
@@ -476,6 +476,13 @@ Use any of custom events if default doesn't fit your scenario:
476
476
  - `CustomId09`
477
477
  - `CustomId10`
478
478
 
479
+ If above event functionality still limits your usecase, you can use `UserCustomEvent`
480
+
481
+ ```typescript
482
+ new UserCustomEvent({eventName: "MyCustomEvent"})
483
+ .send();
484
+ ```
485
+
479
486
  ## Predefined event parameters
480
487
 
481
488
  To enrich your event with another dimension, you can use predefined parameters for most common cases.
@@ -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.20'
20
+ s.dependency 'AffiseInternal', '1.6.25'
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
@@ -73,7 +73,7 @@ dependencies {
73
73
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
74
74
 
75
75
  implementation "com.android.installreferrer:installreferrer:2.2"
76
- implementation "com.affise:internal:1.6.22"
76
+ implementation "com.affise:internal:1.6.23"
77
77
  }
78
78
 
79
79
  if (isNewArchitectureEnabled()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "affise-attribution-lib",
3
- "version": "1.6.12",
3
+ "version": "1.6.13",
4
4
  "description": "Affise Attribution Library",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",