affise-attribution-lib 1.7.3 → 1.7.4
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
|
@@ -161,7 +161,7 @@ Add modules to Android project
|
|
|
161
161
|
Example [`example/android/app/build.gradle`](example/android/app/build.gradle)
|
|
162
162
|
|
|
163
163
|
```gradle
|
|
164
|
-
final affise_version = '1.7.
|
|
164
|
+
final affise_version = '1.7.4'
|
|
165
165
|
|
|
166
166
|
dependencies {
|
|
167
167
|
// Affise modules
|
|
@@ -201,7 +201,7 @@ Example [example/ios/Podfile](example/ios/Podfile)
|
|
|
201
201
|
target 'YourAppProject' do
|
|
202
202
|
# ...
|
|
203
203
|
|
|
204
|
-
affise_version = '1.7.
|
|
204
|
+
affise_version = '1.7.4'
|
|
205
205
|
# Affise Modules
|
|
206
206
|
pod 'AffiseModule/AdService', affise_version
|
|
207
207
|
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.7.
|
|
20
|
+
s.dependency 'AffiseInternal', '1.7.4'
|
|
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.7.
|
|
5
|
+
affise_version = '1.7.4'
|
|
6
6
|
agp_version = '7.2.2'
|
|
7
7
|
}
|
|
8
8
|
|
package/package.json
CHANGED