Skip to content

Commit 590e496

Browse files
committed
Update doc.
1 parent d924658 commit 590e496

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Documentation/ConfigureAppSecrets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Note: License strings are not required for development. Without licensing or lic
1212
touch .secrets
1313
```
1414

15-
2. Add your **License String** to the secrets file. Licensing the app will remove the 'Licensed for Developer Use Only' watermark. Licensing the app is optional in development but required for production. Add your **Extension License String** and **API Key** access token to the secrets file if needed. Learn more about how to [Get a license](https://developers.arcgis.com/swift/license-and-deployment/get-a-license/).
15+
2. Add your **License String** to the secrets file. Licensing the app will remove the 'Licensed for Developer Use Only' watermark. Licensing the app is optional in development but required for production. Add your **Extension License String** and **API Key** access token to the secrets file if needed. If the license string is set, an **Advanced Editing** extension will be required to access all the samples, such as those with utility network capabilities. Learn more about how to [Get a license](https://developers.arcgis.com/swift/license-and-deployment/get-a-license/).
1616

1717
```sh
1818
echo ARCGIS_LICENSE_KEY=your-license-key >> .secrets

Shared/SamplesApp.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ extension SamplesApp {
3838
func license() {
3939
if let licenseStringLiteral = String.licenseKey,
4040
let licenseKey = LicenseKey(licenseStringLiteral) {
41-
// Sets the license with an extension if one is included. An
42-
// advanced editing extension is required to access all the samples,
43-
// such as ones with utility network capabilities.
41+
// Sets the license with an extension if one is included. Both are
42+
// required to access all samples, including utility network
43+
// capabilities.
4444
if let extensionLicenseStringLiteral = String.extensionLicenseKey,
4545
let extensionLicenseKey = LicenseKey(extensionLicenseStringLiteral) {
4646
_ = try? ArcGISEnvironment.setLicense(

0 commit comments

Comments
 (0)