Skip to content
This repository was archived by the owner on Nov 17, 2022. It is now read-only.

Commit a4c8e8d

Browse files
committed
docs: minor updates
1 parent f27933a commit a4c8e8d

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/tooling/ios-app-extensions.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,16 @@ Steps to include the App Extension
4242
```
4343

4444
Where:
45-
46-
- `frameworks` key - the value is an array of framework names.
47-
- `assetcatalogCompilerAppiconName` key - the value is the icon file name located in `.xcassets` catalog with `AppIconExtension.appiconset` inside the extension folder.
45+
`frameworks` key - the value is an array of framework names.
46+
`assetcatalogCompilerAppiconName` key - the value is the icon file name located in `.xcassets` catalog with `AppIconExtension.appiconset` inside the extension folder.
4847

4948
4. Create an application group.
5049

5150
In typical cases, the App Extensions are used to pass/receive data and actions from and to your iOS application. In iOS to enable this functionality, both the application and the App Extension must be part of the same [**application group**](https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_application-groups?language=objc).
5251

5352
Example for creating the same group for both the extension and the application
5453

55-
- Create `TestExtension.entitlments` file inside `TestExtension` folder and add the specific group.
54+
Create `TestExtension.entitlments` file inside `TestExtension` folder and add the specific group.
5655
```plist
5756
<?xml version="1.0" encoding="UTF-8"?>
5857
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
@@ -66,7 +65,7 @@ Example for creating the same group for both the extension and the application
6665
</plist>
6766
```
6867

69-
- Create the `app.entitlements` file in `<project-name>/app/App_Resources/iOS/` and make sure it contains the same group used by the extension
68+
Create the `app.entitlements` file in `<project-name>/app/App_Resources/iOS/` and make sure it contains the same group used by the extension
7069
```plist
7170
<?xml version="1.0" encoding="UTF-8"?>
7271
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">

0 commit comments

Comments
 (0)