affise-attribution-lib 1.6.44 → 1.6.46
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
|
@@ -154,7 +154,7 @@ Add modules to Android project
|
|
|
154
154
|
Example [`example/android/app/build.gradle`](example/android/app/build.gradle)
|
|
155
155
|
|
|
156
156
|
```gradle
|
|
157
|
-
final affise_version = '1.6.
|
|
157
|
+
final affise_version = '1.6.68'
|
|
158
158
|
|
|
159
159
|
dependencies {
|
|
160
160
|
// Affise modules
|
|
@@ -179,14 +179,14 @@ Add modules to iOS project
|
|
|
179
179
|
|
|
180
180
|
| Module | Version |
|
|
181
181
|
|----------------|:------------------------------------------------------------------------------------:|
|
|
182
|
-
| `ADSERVICE` | [`1.6.
|
|
183
|
-
| `ADVERTISING` | [`1.6.
|
|
184
|
-
| `APPSFLYER` | [`1.6.
|
|
185
|
-
| `LINK` | [`1.6.
|
|
186
|
-
| `PERSISTENT` | [`1.6.
|
|
187
|
-
| `STATUS` | [`1.6.
|
|
188
|
-
| `SUBSCRIPTION` | [`1.6.
|
|
189
|
-
| `TIKTOK` | [`1.6.
|
|
182
|
+
| `ADSERVICE` | [`1.6.58`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
|
|
183
|
+
| `ADVERTISING` | [`1.6.58`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
|
|
184
|
+
| `APPSFLYER` | [`1.6.58`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
|
|
185
|
+
| `LINK` | [`1.6.58`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
|
|
186
|
+
| `PERSISTENT` | [`1.6.58`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
|
|
187
|
+
| `STATUS` | [`1.6.58`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
|
|
188
|
+
| `SUBSCRIPTION` | [`1.6.58`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
|
|
189
|
+
| `TIKTOK` | [`1.6.58`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) |
|
|
190
190
|
|
|
191
191
|
Example [example/ios/Podfile](example/ios/Podfile)
|
|
192
192
|
|
|
@@ -194,7 +194,7 @@ Example [example/ios/Podfile](example/ios/Podfile)
|
|
|
194
194
|
target 'YourAppProject' do
|
|
195
195
|
# ...
|
|
196
196
|
|
|
197
|
-
affise_version = '1.6.
|
|
197
|
+
affise_version = '1.6.58'
|
|
198
198
|
# Affise Modules
|
|
199
199
|
pod 'AffiseModule/AdService', affise_version
|
|
200
200
|
pod 'AffiseModule/Advertising', affise_version
|
|
@@ -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.58'
|
|
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.68'
|
|
6
6
|
agp_version = '7.2.2'
|
|
7
7
|
}
|
|
8
8
|
|
package/package.json
CHANGED