affise-attribution-lib 1.6.17 → 1.6.18
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 +9 -9
- package/affise-attribution-native.podspec +1 -1
- package/android/build.gradle +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
- [Android](#android-2)
|
|
49
49
|
- [iOS](#ios-2)
|
|
50
50
|
- [AppLinks](#applinks)
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
- [Android](#android-3)
|
|
52
|
+
- [iOS](#ios-3)
|
|
53
53
|
- [Offline mode](#offline-mode)
|
|
54
54
|
- [Disable tracking](#disable-tracking)
|
|
55
55
|
- [Disable background tracking](#disable-background-tracking)
|
|
@@ -127,7 +127,7 @@ Add modules to Android project
|
|
|
127
127
|
Example [`example/android/app/build.gradle`](example/android/app/build.gradle)
|
|
128
128
|
|
|
129
129
|
```gradle
|
|
130
|
-
final affise_version = '1.6.
|
|
130
|
+
final affise_version = '1.6.40'
|
|
131
131
|
|
|
132
132
|
dependencies {
|
|
133
133
|
// Affise modules
|
|
@@ -146,9 +146,9 @@ Add modules to iOS project
|
|
|
146
146
|
|
|
147
147
|
| Module | Version | Start |
|
|
148
148
|
|---------------|:------------------------------------------------------------------------------------:|----------|
|
|
149
|
-
| `ADVERTISING` | [`1.6.
|
|
150
|
-
| `LINK` | [`1.6.
|
|
151
|
-
| `STATUS` | [`1.6.
|
|
149
|
+
| `ADVERTISING` | [`1.6.36`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` |
|
|
150
|
+
| `LINK` | [`1.6.36`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
|
|
151
|
+
| `STATUS` | [`1.6.36`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
|
|
152
152
|
|
|
153
153
|
Example [example/ios/Podfile](example/ios/Podfile)
|
|
154
154
|
|
|
@@ -157,9 +157,9 @@ target 'YourAppProject' do
|
|
|
157
157
|
# ...
|
|
158
158
|
|
|
159
159
|
# Affise Modules
|
|
160
|
-
pod 'AffiseModule/Advertising', `1.6.
|
|
161
|
-
pod 'AffiseModule/Link', `1.6.
|
|
162
|
-
pod 'AffiseModule/Status', `1.6.
|
|
160
|
+
pod 'AffiseModule/Advertising', `1.6.36`
|
|
161
|
+
pod 'AffiseModule/Link', `1.6.36`
|
|
162
|
+
pod 'AffiseModule/Status', `1.6.36`
|
|
163
163
|
end
|
|
164
164
|
```
|
|
165
165
|
|
|
@@ -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.36'
|
|
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
|
@@ -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.
|
|
5
|
+
affise_version = '1.6.40'
|
|
6
6
|
agp_version = '7.2.2'
|
|
7
7
|
}
|
|
8
8
|
|