Skip to content

Commit

Permalink
1.6.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Korney committed Jul 31, 2024
1 parent b927f79 commit 90484f4
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 16 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [1.6.18] - 2024-07-31

### Added

- Modules compatibility check.

### Fixed

- Api `Affise.Module.getStatus`.

### Changed

- Update native iOS to [`1.6.36`](https://github.com/affise/sdk-ios/blob/1.6.36/CHANGELOG.md).
- Update native Android to [`1.6.40`](https://github.com/affise/sdk-android/blob/v1.6.40/CHANGELOG.md).

## [1.6.17] - 2024-07-11

### Added
Expand Down Expand Up @@ -83,6 +98,8 @@
- Api `Affise.android.getReferrer` to `Affise.getReferrer`
- Api `Affise.android.getReferrerValue` to `Affise.getReferrerValue`

[1.6.18]: https://github.com/affise/sdk-react/compare/1.6.17...1.6.18
[1.6.17]: https://github.com/affise/sdk-react/compare/1.6.16...1.6.17
[1.6.16]: https://github.com/affise/sdk-react/compare/1.6.15...1.6.16
[1.6.15]: https://github.com/affise/sdk-react/compare/1.6.14...1.6.15
[1.6.14]: https://github.com/affise/sdk-react/compare/1.6.13...1.6.14
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
- [Android](#android-2)
- [iOS](#ios-2)
- [AppLinks](#applinks)
- [Android](#android-3)
- [iOS](#ios-3)
- [Android](#android-3)
- [iOS](#ios-3)
- [Offline mode](#offline-mode)
- [Disable tracking](#disable-tracking)
- [Disable background tracking](#disable-background-tracking)
Expand Down Expand Up @@ -127,7 +127,7 @@ Add modules to Android project
Example [`example/android/app/build.gradle`](example/android/app/build.gradle)

```gradle
final affise_version = '1.6.38'
final affise_version = '1.6.40'
dependencies {
// Affise modules
Expand All @@ -146,9 +146,9 @@ Add modules to iOS project

| Module | Version | Start |
|---------------|:------------------------------------------------------------------------------------:|----------|
| `ADVERTISING` | [`1.6.33`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` |
| `LINK` | [`1.6.33`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
| `STATUS` | [`1.6.33`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
| `ADVERTISING` | [`1.6.36`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` |
| `LINK` | [`1.6.36`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
| `STATUS` | [`1.6.36`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |

Example [example/ios/Podfile](example/ios/Podfile)

Expand All @@ -157,9 +157,9 @@ target 'YourAppProject' do
# ...

# Affise Modules
pod 'AffiseModule/Advertising', `1.6.33`
pod 'AffiseModule/Link', `1.6.33`
pod 'AffiseModule/Status', `1.6.33`
pod 'AffiseModule/Advertising', `1.6.36`
pod 'AffiseModule/Link', `1.6.36`
pod 'AffiseModule/Status', `1.6.36`
end
```

Expand Down
2 changes: 1 addition & 1 deletion affise-attribution-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.source_files = "ios/**/*.{h,m,mm,swift}"

s.dependency "React-Core"
s.dependency 'AffiseInternal', '1.6.33'
s.dependency 'AffiseInternal', '1.6.36'

# Don't install the dependencies when we run `pod install` in the old architecture.
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["AffiseAttributionNative_kotlinVersion"]
ext {
affise_version = '1.6.38'
affise_version = '1.6.40'
agp_version = '7.2.2'
}

Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ android {
}
}

final affise_version = '1.6.38'
final affise_version = '1.6.40'

dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
Expand Down
6 changes: 3 additions & 3 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ target 'AffiseAttributionLibExample' do
)

# Affise Modules
pod 'AffiseModule/Advertising', '1.6.33'
pod 'AffiseModule/Status', '1.6.33'
pod 'AffiseModule/Link', '1.6.33'
pod 'AffiseModule/Advertising', '1.6.36'
pod 'AffiseModule/Status', '1.6.36'
pod 'AffiseModule/Link', '1.6.36'

target 'AffiseAttributionLibExampleTests' do
inherit! :complete
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "affise-attribution-lib",
"version": "1.6.17",
"version": "1.6.18",
"description": "Affise Attribution Library",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit 90484f4

Please sign in to comment.