affise-attribution-lib 1.6.27 → 1.6.28
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
|
@@ -136,7 +136,7 @@ Add modules to Android project
|
|
|
136
136
|
Example [`example/android/app/build.gradle`](example/android/app/build.gradle)
|
|
137
137
|
|
|
138
138
|
```gradle
|
|
139
|
-
final affise_version = '1.6.
|
|
139
|
+
final affise_version = '1.6.52'
|
|
140
140
|
|
|
141
141
|
dependencies {
|
|
142
142
|
// Affise modules
|
|
@@ -158,10 +158,10 @@ Add modules to iOS project
|
|
|
158
158
|
|
|
159
159
|
| Module | Version | Start |
|
|
160
160
|
|----------------|:------------------------------------------------------------------------------------:|----------|
|
|
161
|
-
| `ADVERTISING` | [`1.6.
|
|
162
|
-
| `LINK` | [`1.6.
|
|
163
|
-
| `STATUS` | [`1.6.
|
|
164
|
-
| `SUBSCRIPTION` | [`1.6.
|
|
161
|
+
| `ADVERTISING` | [`1.6.43`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` |
|
|
162
|
+
| `LINK` | [`1.6.43`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
|
|
163
|
+
| `STATUS` | [`1.6.43`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
|
|
164
|
+
| `SUBSCRIPTION` | [`1.6.43`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
|
|
165
165
|
|
|
166
166
|
Example [example/ios/Podfile](example/ios/Podfile)
|
|
167
167
|
|
|
@@ -170,10 +170,10 @@ target 'YourAppProject' do
|
|
|
170
170
|
# ...
|
|
171
171
|
|
|
172
172
|
# Affise Modules
|
|
173
|
-
pod 'AffiseModule/Advertising', `1.6.
|
|
174
|
-
pod 'AffiseModule/Link', `1.6.
|
|
175
|
-
pod 'AffiseModule/Status', `1.6.
|
|
176
|
-
pod 'AffiseModule/Subscription', `1.6.
|
|
173
|
+
pod 'AffiseModule/Advertising', `1.6.43`
|
|
174
|
+
pod 'AffiseModule/Link', `1.6.43`
|
|
175
|
+
pod 'AffiseModule/Status', `1.6.43`
|
|
176
|
+
pod 'AffiseModule/Subscription', `1.6.43`
|
|
177
177
|
end
|
|
178
178
|
```
|
|
179
179
|
|
|
@@ -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.43'
|
|
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.52'
|
|
6
6
|
agp_version = '7.2.2'
|
|
7
7
|
}
|
|
8
8
|
|