Skip to content

Commit

Permalink
version bump to 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
x401om committed Oct 6, 2021
1 parent eb80b44 commit 7f88000
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.0.5
* [Android] added logLevel ALL, logLevel VERBOSE doesn't include analytical logs, but ALL does
* changed example for updating custom attribution
* various improvements

# 1.0.4

* added toString for `AdaptyAccessLevelInfo`, `AdaptySubscriptionInfo`, `AdaptyNonSubscriptionInfo` models
Expand Down
14 changes: 9 additions & 5 deletions example/lib/screens/main_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,16 @@ class _MainScreenState extends State<MainScreen> {
_buildMethodTile(
'Update Attribution',
() => callAdaptyMethod(() async {
final testAttributionMap = {
'af_message': 'organic install',
'af_status': 'Organic',
'is_first_launch': false,
final attribution = {
"status": "non_organicunknown",
"channel": "Google Ads",
"campaign": "Adapty in-app",
"ad_group": "adapty ad_group",
"ad_set": "adapty ad_set",
"creative": "12312312312312",
};
await Adapty.updateAttribution(testAttributionMap, source: AdaptyAttributionNetwork.adjust);
await Adapty.updateAttribution(attribution, source: AdaptyAttributionNetwork.custom);

print('#Example# updateAttribution done!');
}),
openNewScreen: false,
Expand Down
2 changes: 1 addition & 1 deletion ios/adapty_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A new flutter plugin project.
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.ios.dependency 'Adapty', '1.16.1'
s.ios.dependency 'Adapty', '1.16.2'
s.platform = :ios, '9.0'

# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: adapty_flutter
description: Adapty SDK is an open-source framework that makes implementing in-app subscriptions in Flutter applications fast and easy. It’s 100% open-source and lightweight.
version: 1.0.4
version: 1.0.5
homepage: https://adapty.io/
repository: https://github.com/adaptyteam/AdaptySDK-Flutter
issue_tracker: https://github.com/adaptyteam/AdaptySDK-Flutter/issues
Expand Down

0 comments on commit 7f88000

Please sign in to comment.