Skip to content

Commit

Permalink
Merge pull request #1331 from JamesLeeTrigg/patch-1
Browse files Browse the repository at this point in the history
Updated Readme to use auto Bundle Id replacement
  • Loading branch information
oldalton committed Jul 16, 2021
2 parents 5658ed3 + 9871180 commit e4a09e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ You can also use Git Submodule or check out the latest release and use as framew
1. Register your app in the [Azure portal](https://aka.ms/MobileAppReg)
2. Make sure you register a redirect URI for your application. It should be in the following format:
`msauth.[BUNDLE_ID]://auth`
`msauth.$(PRODUCT_BUNDLE_IDENTIFIER)://auth`
3. Add a new keychain group to your project Capabilities. Keychain group should be `com.microsoft.adalcache` on iOS and `com.microsoft.identity.universalstorage` on macOS.
Expand All @@ -136,15 +136,15 @@ See more information about [keychain groups](https://docs.microsoft.com/en-us/az
#### iOS only steps:
1. Add your application's redirect URI scheme to your `Info.plist` file, it will be in the format of `msauth.[BUNDLE_ID]`
1. Add your application's redirect URI scheme to your `Info.plist` file
```xml
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>msauth.[BUNDLE_ID]</string>
<string>msauth.$(PRODUCT_BUNDLE_IDENTIFIER)</string>
</array>
</dict>
</array>
Expand Down

0 comments on commit e4a09e7

Please sign in to comment.