affise-attribution-lib 1.6.37 → 1.6.39

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
@@ -15,6 +15,7 @@
15
15
  - [Modules](#modules)
16
16
  - [Android](#android)
17
17
  - [iOS](#ios)
18
+ - [Module AdService](#module-adservice)
18
19
  - [Module Advertising](#module-advertising)
19
20
  - [Module AppsFlyer](#module-appsflyer)
20
21
  - [Module Huawei](#module-huawei)
@@ -32,6 +33,7 @@
32
33
  - [Features](#features)
33
34
  - [ProviderType identifiers collection](#providertype-identifiers-collection)
34
35
  - [Attribution](#attribution)
36
+ - [AdService](#adservice)
35
37
  - [Advertising](#advertising)
36
38
  - [AndroidId](#androidid)
37
39
  - [Huawei](#huawei)
@@ -158,7 +160,7 @@ Add modules to Android project
158
160
  Example [`example/android/app/build.gradle`](example/android/app/build.gradle)
159
161
 
160
162
  ```gradle
161
- final affise_version = '1.6.60'
163
+ final affise_version = '1.6.61'
162
164
 
163
165
  dependencies {
164
166
  // Affise modules
@@ -182,12 +184,13 @@ Add modules to iOS project
182
184
 
183
185
  | Module | Version | Start |
184
186
  |----------------|:------------------------------------------------------------------------------------:|----------|
185
- | `ADVERTISING` | [`1.6.52`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` |
186
- | `APPSFLYER` | [`1.6.52`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
187
- | `LINK` | [`1.6.52`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
188
- | `PERSISTENT` | [`1.6.52`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
189
- | `STATUS` | [`1.6.52`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
190
- | `SUBSCRIPTION` | [`1.6.52`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
187
+ | `ADSERVICE` | [`1.6.53`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
188
+ | `ADVERTISING` | [`1.6.53`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` |
189
+ | `APPSFLYER` | [`1.6.53`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
190
+ | `LINK` | [`1.6.53`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
191
+ | `PERSISTENT` | [`1.6.53`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
192
+ | `STATUS` | [`1.6.53`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
193
+ | `SUBSCRIPTION` | [`1.6.53`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
191
194
 
192
195
  Example [example/ios/Podfile](example/ios/Podfile)
193
196
 
@@ -195,8 +198,9 @@ Example [example/ios/Podfile](example/ios/Podfile)
195
198
  target 'YourAppProject' do
196
199
  # ...
197
200
 
198
- affise_version = '1.6.52'
201
+ affise_version = '1.6.53'
199
202
  # Affise Modules
203
+ pod 'AffiseModule/AdService', affise_version
200
204
  pod 'AffiseModule/Advertising', affise_version
201
205
  pod 'AffiseModule/AppsFlyer', affise_version
202
206
  pod 'AffiseModule/Link', affise_version
@@ -218,6 +222,12 @@ end
218
222
 
219
223
  Open `info.plist` and add key `NSUserTrackingUsageDescription` with string value. For more information [read requirements](#requirements)
220
224
 
225
+ #### Module AdService
226
+
227
+ `iOS 14.3+`
228
+
229
+ Sends `attributionToken` from `AdServices` framework `AAAttribution.attributionToken()` to Affise server
230
+
221
231
  #### Module Advertising
222
232
 
223
233
  `iOS`
@@ -597,6 +607,10 @@ To match users with events and data library is sending, these `ProviderType` ide
597
607
  - `IS_ROOTED`
598
608
  - `IS_EMULATOR`
599
609
 
610
+ ### AdService
611
+
612
+ - `AD_SERVICE_ATTRIBUTION`
613
+
600
614
  ### Advertising
601
615
 
602
616
  - `GAID_ADID`
@@ -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.52'
20
+ s.dependency 'AffiseInternal', '1.6.53'
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
@@ -2,7 +2,7 @@ buildscript {
2
2
  // Buildscript is evaluated before everything else so we can't use getExtOrDefault
3
3
  def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["AffiseAttributionNative_kotlinVersion"]
4
4
  ext {
5
- affise_version = '1.6.60'
5
+ affise_version = '1.6.61'
6
6
  agp_version = '7.2.2'
7
7
  }
8
8
 
@@ -35,7 +35,7 @@ class AffiseDebug {
35
35
  * Debug get version of flutter library
36
36
  */
37
37
  version() {
38
- return "1.6.37";
38
+ return "1.6.39";
39
39
  }
40
40
 
41
41
  /**
@@ -7,6 +7,7 @@ exports.AffiseModules = void 0;
7
7
  let AffiseModules;
8
8
  exports.AffiseModules = AffiseModules;
9
9
  (function (AffiseModules) {
10
+ AffiseModules["ADSERVICE"] = "AdService";
10
11
  AffiseModules["ADVERTISING"] = "Advertising";
11
12
  AffiseModules["ANDROIDID"] = "AndroidId";
12
13
  AffiseModules["APPSFLYER"] = "AppsFlyer";
@@ -1 +1 @@
1
- {"version":3,"names":["AffiseModules"],"sourceRoot":"../../src","sources":["AffiseModules.ts"],"mappings":";;;;;;IAAYA,aAAa;AAAA;AAAA,WAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;AAAA,GAAbA,aAAa,6BAAbA,aAAa"}
1
+ {"version":3,"names":["AffiseModules"],"sourceRoot":"../../src","sources":["AffiseModules.ts"],"mappings":";;;;;;IAAYA,aAAa;AAAA;AAAA,WAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;AAAA,GAAbA,aAAa,6BAAbA,aAAa"}
@@ -29,7 +29,7 @@ export class AffiseDebug {
29
29
  * Debug get version of flutter library
30
30
  */
31
31
  version() {
32
- return "1.6.37";
32
+ return "1.6.39";
33
33
  }
34
34
 
35
35
  /**
@@ -1,5 +1,6 @@
1
1
  export let AffiseModules;
2
2
  (function (AffiseModules) {
3
+ AffiseModules["ADSERVICE"] = "AdService";
3
4
  AffiseModules["ADVERTISING"] = "Advertising";
4
5
  AffiseModules["ANDROIDID"] = "AndroidId";
5
6
  AffiseModules["APPSFLYER"] = "AppsFlyer";
@@ -1 +1 @@
1
- {"version":3,"names":["AffiseModules"],"sourceRoot":"../../src","sources":["AffiseModules.ts"],"mappings":"AAAA,WAAYA,aAAa;AAaxB,WAbWA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;AAAA,GAAbA,aAAa,KAAbA,aAAa"}
1
+ {"version":3,"names":["AffiseModules"],"sourceRoot":"../../src","sources":["AffiseModules.ts"],"mappings":"AAAA,WAAYA,aAAa;AAcxB,WAdWA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;AAAA,GAAbA,aAAa,KAAbA,aAAa"}
@@ -1,4 +1,5 @@
1
1
  export declare enum AffiseModules {
2
+ ADSERVICE = "AdService",
2
3
  ADVERTISING = "Advertising",
3
4
  ANDROIDID = "AndroidId",
4
5
  APPSFLYER = "AppsFlyer",
@@ -1 +1 @@
1
- {"version":3,"file":"AffiseModules.d.ts","sourceRoot":"","sources":["../../../src/module/AffiseModules.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACrB,WAAW,gBAAgB;IAC3B,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,UAAU,eAAe;IACzB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,YAAY,iBAAiB;IAC7B,OAAO,YAAY;IACnB,MAAM,WAAW;CACpB"}
1
+ {"version":3,"file":"AffiseModules.d.ts","sourceRoot":"","sources":["../../../src/module/AffiseModules.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACrB,SAAS,cAAc;IACvB,WAAW,gBAAgB;IAC3B,SAAS,cAAc;IACvB,SAAS,cAAc;IACvB,IAAI,SAAS;IACb,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,UAAU,eAAe;IACzB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,YAAY,iBAAiB;IAC7B,OAAO,YAAY;IACnB,MAAM,WAAW;CACpB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "affise-attribution-lib",
3
- "version": "1.6.37",
3
+ "version": "1.6.39",
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.37";
36
+ return "1.6.39";
37
37
  }
38
38
 
39
39
  /**
@@ -1,4 +1,5 @@
1
1
  export enum AffiseModules {
2
+ ADSERVICE = "AdService",
2
3
  ADVERTISING = "Advertising",
3
4
  ANDROIDID = "AndroidId",
4
5
  APPSFLYER = "AppsFlyer",