Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

[various] Update to use sharedDarwinSource #7027

Merged
merged 3 commits into from
Jan 31, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## NEXT
## 0.3.4+2

* Uses the new `sharedDarwinSource` flag when available.
* Updates minimum Flutter version to 3.0.

## 0.3.4+1
Expand All @@ -12,7 +13,7 @@

## 0.3.3

* Supports adding discount information to AppStorePurchaseParam.
* Supports adding discount information to AppStorePurchaseParam.
* Fixes iOS Promotional Offers bug which prevents them from working.

## 0.3.2+2
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: in_app_purchase_storekit
description: An implementation for the iOS and macOS platforms of the Flutter `in_app_purchase` plugin. This uses the StoreKit Framework.
repository: https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase_storekit
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
version: 0.3.4+1
version: 0.3.4+2

environment:
sdk: ">=2.14.0 <3.0.0"
Expand All @@ -14,8 +14,10 @@ flutter:
platforms:
ios:
pluginClass: InAppPurchasePlugin
sharedDarwinSource: true
macos:
pluginClass: InAppPurchasePlugin
sharedDarwinSource: true

dependencies:
collection: ^1.15.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## NEXT
## 2.1.3

* Uses the new `sharedDarwinSource` flag when available.
* Updates minimum Flutter version to 3.0.

## 2.1.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: shared_preferences_foundation
description: iOS and macOS implementation of the shared_preferences plugin.
repository: https://github.com/flutter/plugins/tree/main/packages/shared_preferences/shared_preferences_foundation
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+shared_preferences%22
version: 2.1.2
version: 2.1.3

environment:
sdk: ">=2.12.0 <3.0.0"
Expand All @@ -12,14 +12,14 @@ flutter:
plugin:
implements: shared_preferences
platforms:
# TODO(stuartmorgan): Add sharedDarwinSource to these once
# https://github.com/flutter/flutter/pull/115337 lands.
ios:
pluginClass: SharedPreferencesPlugin
dartPluginClass: SharedPreferencesFoundation
sharedDarwinSource: true
macos:
pluginClass: SharedPreferencesPlugin
dartPluginClass: SharedPreferencesFoundation
sharedDarwinSource: true

dependencies:
flutter:
Expand Down