affise-attribution-lib 1.6.6 → 1.6.7
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 +16 -4
- package/affise-attribution-native.podspec +1 -1
- package/android/build.gradle +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -117,7 +117,7 @@ Add modules to iOS project
|
|
|
117
117
|
|
|
118
118
|
| Module | Version |
|
|
119
119
|
|-----------------------|:------------------------------------------------------------------------------------:|
|
|
120
|
-
| `AffiseModule/Status` | [`1.6.
|
|
120
|
+
| `AffiseModule/Status` | [`1.6.17`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
|
|
121
121
|
|
|
122
122
|
Example [example/ios/Podfile](example/ios/Podfile)
|
|
123
123
|
|
|
@@ -126,7 +126,7 @@ target 'YourAppProject' do
|
|
|
126
126
|
# ...
|
|
127
127
|
|
|
128
128
|
# Affise Modules
|
|
129
|
-
pod 'AffiseModule/Status', `1.6.
|
|
129
|
+
pod 'AffiseModule/Status', `1.6.17`
|
|
130
130
|
end
|
|
131
131
|
```
|
|
132
132
|
|
|
@@ -678,7 +678,7 @@ Add intent filter to `AndroidManifest.xml` as in [`example/android/app/src/main/
|
|
|
678
678
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
679
679
|
|
|
680
680
|
<data
|
|
681
|
-
android:host="
|
|
681
|
+
android:host="YOUR_DOMAIN"
|
|
682
682
|
android:scheme="react" />
|
|
683
683
|
</intent-filter>
|
|
684
684
|
```
|
|
@@ -711,7 +711,7 @@ Example: [`example/ios/AffiseAttributionLibExample/Info.plist`](example/ios/Affi
|
|
|
711
711
|
<key>CFBundleTypeRole</key>
|
|
712
712
|
<string>Editor</string>
|
|
713
713
|
<key>CFBundleURLName</key>
|
|
714
|
-
<string>
|
|
714
|
+
<string>YOUR_DOMAIN</string>
|
|
715
715
|
<key>CFBundleURLSchemes</key>
|
|
716
716
|
<array>
|
|
717
717
|
<string>react</string>
|
|
@@ -968,7 +968,12 @@ new AffiseAdRevenue(AffiseAdSource.ADMOB)
|
|
|
968
968
|
## Validate credentials
|
|
969
969
|
|
|
970
970
|
> **Warning**
|
|
971
|
+
>
|
|
972
|
+
> 🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥
|
|
973
|
+
>
|
|
971
974
|
> Debug methods WON'T work on Production
|
|
975
|
+
>
|
|
976
|
+
> 🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥
|
|
972
977
|
|
|
973
978
|
Validate your credentials by receiving `ValidationStatus` values:
|
|
974
979
|
|
|
@@ -999,8 +1004,15 @@ Affise.debug.validate((status) =>
|
|
|
999
1004
|
## iOS
|
|
1000
1005
|
|
|
1001
1006
|
> **Warning**
|
|
1007
|
+
>
|
|
1008
|
+
> 🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥
|
|
1009
|
+
>
|
|
1002
1010
|
> This app has crashed because it attempted to access privacy-sensitive data without a usage description.
|
|
1011
|
+
>
|
|
1003
1012
|
> The app's `Info.plist` must contain an `NSUserTrackingUsageDescription` key with a string value explaining
|
|
1013
|
+
>
|
|
1004
1014
|
> to the user how the app uses this data.
|
|
1015
|
+
>
|
|
1016
|
+
> 🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥🟥
|
|
1005
1017
|
|
|
1006
1018
|
Open `info.plist` and add key `NSUserTrackingUsageDescription` with string value. For more information [read requirements](#requirements)
|
|
@@ -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
|
+
s.dependency 'AffiseInternal', '1.6.17'
|
|
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
|
package/android/build.gradle
CHANGED
|
@@ -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.
|
|
76
|
+
implementation "com.affise:internal:1.6.20"
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
if (isNewArchitectureEnabled()) {
|