Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 1.3.0 #96

Merged
merged 27 commits into from
Sep 23, 2020
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7ac4d4c
bumped purchases-hybrid-common to 1.3.1
aboedo Sep 11, 2020
b60bbb8
bumped common version to 1.4.0
aboedo Sep 18, 2020
4012aaf
added empty swift file so that swift code compiles correctly
aboedo Sep 18, 2020
bee1db6
ignored .last_build_id
aboedo Sep 18, 2020
ea83a47
updated deployment target version to 9.0.
aboedo Sep 18, 2020
6fb6d81
added new methods for attribution v2 to flutter plugin interface
aboedo Sep 18, 2020
577afa6
added new methods to the flutter dart interface
aboedo Sep 18, 2020
5fa3b1d
added deprecation warning in dart
aboedo Sep 18, 2020
1130ed1
fixeed param names typo for iOS, added new methods for Android
aboedo Sep 18, 2020
9ffd43f
updated purchases-hybrid-common version for Android
aboedo Sep 18, 2020
2f4d36c
bumped version number and added changelog
aboedo Sep 19, 2020
b233ff5
reverted accidental changes in podfile and main.dart
aboedo Sep 19, 2020
9e25469
removed deprecated call to addAttributionData in the example app
aboedo Sep 21, 2020
ebc1013
fix typo in purchases_flutter.dart
aboedo Sep 21, 2020
e6e2933
fixed typo in build.gradle, updated version of gradle build
aboedo Sep 21, 2020
cbe83f8
fixed missing semicolons
aboedo Sep 21, 2020
dae7745
updated calls to common code in PurchasesFlutterPlugin
aboedo Sep 21, 2020
3fc061e
updated version of purchases-hybrid-common
aboedo Sep 21, 2020
c3be6bb
updated podfile to use purchases-hybrid-common 1.4.1
aboedo Sep 21, 2020
9997355
fix typo in fbAnonymousID
aboedo Sep 21, 2020
ce01a05
fix docs from PR comments
aboedo Sep 21, 2020
6bc5c8c
added nonSubscriptionTransactions
aboedo Sep 21, 2020
1eff4a9
fixed mapping of transactions
aboedo Sep 22, 2020
3755ef9
updates to documentation for collectDeviceIdentifiers
aboedo Sep 22, 2020
8cd51fb
bumped purchases-hybrid-common to 1.4.2
aboedo Sep 22, 2020
3a2f786
fixes docs for non-subscription transactions
aboedo Sep 23, 2020
857bf0b
ran flutter format
aboedo Sep 23, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed deprecated call to addAttributionData in the example app
  • Loading branch information
aboedo committed Sep 21, 2020
commit 9e25469f5e0fd9255b33a2325856eabdb7a7309a
1 change: 0 additions & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class _MyAppState extends State<InitialScreen> {
Future<void> initPlatformState() async {
await Purchases.setDebugLogsEnabled(true);
await Purchases.setup("api_key");
await Purchases.addAttributionData({}, PurchasesAttributionNetwork.facebook);
PurchaserInfo purchaserInfo = await Purchases.getPurchaserInfo();
Offerings offerings = await Purchases.getOfferings();
// If the widget was removed from the tree while the asynchronous platform
Expand Down