affise-attribution-lib 1.7.4 → 1.7.5

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.4'
164
+ final affise_version = '1.7.5'
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.4'
204
+ affise_version = '1.7.5'
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.4'
20
+ s.dependency 'AffiseInternal', '1.7.5'
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
@@ -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.4'
5
+ affise_version = '1.7.5'
6
6
  agp_version = '7.2.2'
7
7
  }
8
8
 
@@ -1,5 +1,5 @@
1
1
  AffiseAttributionNative_kotlinVersion=1.9.0
2
- AffiseAttributionNative_minSdkVersion=21
2
+ AffiseAttributionNative_minSdkVersion=24
3
3
  AffiseAttributionNative_targetSdkVersion=35
4
4
  AffiseAttributionNative_compileSdkVersion=35
5
5
  AffiseAttributionNative_ndkversion=21.4.7075529
@@ -31,7 +31,7 @@ class AffiseDebug {
31
31
  * Debug get version of flutter library
32
32
  */
33
33
  version() {
34
- return "1.7.4";
34
+ return "1.7.5";
35
35
  }
36
36
 
37
37
  /**
@@ -25,7 +25,7 @@ export class AffiseDebug {
25
25
  * Debug get version of flutter library
26
26
  */
27
27
  version() {
28
- return "1.7.4";
28
+ return "1.7.5";
29
29
  }
30
30
 
31
31
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "affise-attribution-lib",
3
- "version": "1.7.4",
3
+ "version": "1.7.5",
4
4
  "description": "Affise Attribution Library",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -33,7 +33,7 @@ export class AffiseDebug implements AffiseDebugApi {
33
33
  * Debug get version of flutter library
34
34
  */
35
35
  version(): string {
36
- return "1.7.4";
36
+ return "1.7.5";
37
37
  }
38
38
 
39
39
  /**