From 4dac70e97d415672fefce2e9c7591374833e0036 Mon Sep 17 00:00:00 2001 From: MCYBA <36483874+MCYBA@users.noreply.github.com> Date: Wed, 19 Jan 2022 14:11:47 +0300 Subject: [PATCH 1/2] Enable capability for developer accounts Add `com.apple.developer.applesignin` (or with create `Runner.entitlements` file) to enabling capability for developer accounts. --- .../sign_in_with_apple/README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/packages/sign_in_with_apple/sign_in_with_apple/README.md b/packages/sign_in_with_apple/sign_in_with_apple/README.md index efded6a5..70f35446 100644 --- a/packages/sign_in_with_apple/sign_in_with_apple/README.md +++ b/packages/sign_in_with_apple/sign_in_with_apple/README.md @@ -232,3 +232,22 @@ The setup for macOS is mostly similar to iOS. As usual for Flutter development f - Ensure that "Sign in with Apple" is listed under the capabilities (if not, add it via the `+`) - Additionally there should be no warning on that screen. (For example your Mac must be registered for local development. (If not, you'll see a "one click fix" button to do so.)) - In the terminal navigate back to the root of the `example` folder and `flutter run` on your test device + +### Enable For Developer Accounts + +If you want to enable capability using an Apple developer account, you need to add or create a `com.apple.developer.applesignin` entitlement - either through Xcode (see below) or by editing (or creating and adding to Xcode) `ios/Runner/Runner.entitlements` file. + +```xml + + + + + + com.apple.developer.applesignin + + Default + + + + +``` From b4badebdccf2663211e461130def9810d53cc572 Mon Sep 17 00:00:00 2001 From: MCYBA <36483874+MCYBA@users.noreply.github.com> Date: Mon, 31 Jan 2022 13:20:33 +0300 Subject: [PATCH 2/2] Update README.md --- packages/sign_in_with_apple/sign_in_with_apple/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/sign_in_with_apple/sign_in_with_apple/README.md b/packages/sign_in_with_apple/sign_in_with_apple/README.md index 70f35446..c0e9bfef 100644 --- a/packages/sign_in_with_apple/sign_in_with_apple/README.md +++ b/packages/sign_in_with_apple/sign_in_with_apple/README.md @@ -233,9 +233,9 @@ The setup for macOS is mostly similar to iOS. As usual for Flutter development f - Additionally there should be no warning on that screen. (For example your Mac must be registered for local development. (If not, you'll see a "one click fix" button to do so.)) - In the terminal navigate back to the root of the `example` folder and `flutter run` on your test device -### Enable For Developer Accounts +### Enable Without Xcode (And Additionally For Developer Accounts) -If you want to enable capability using an Apple developer account, you need to add or create a `com.apple.developer.applesignin` entitlement - either through Xcode (see below) or by editing (or creating and adding to Xcode) `ios/Runner/Runner.entitlements` file. +If you want to enable capability without using Xcode (or for an Apple developer account), you need to add or create a `com.apple.developer.applesignin` entitlement - either through Xcode (see below) or by editing (or creating and adding to Xcode) `ios/Runner/Runner.entitlements` file. ```xml