-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding DEP auto enroll and configure ability
In order to remotely push and configure iOS agent, Apple's managed app configurations needs to be implemented. This provides the ability to listen to remote configurations and auto enroll the agent. https://developer.apple.com/library/content/samplecode/sc2279/Introduction/Intro.html Fixed - wso2/product-iots#1738
- Loading branch information
1 parent
80559a8
commit 7c85baa
Showing
4 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>enrollmentURL</key> | ||
<string></string> | ||
<key>serverURL</key> | ||
<string></string> | ||
<key>UDID</key> | ||
<string></string> | ||
<key>clientSecret</key> | ||
<string></string> | ||
<key>clientId</key> | ||
<string></string> | ||
<key>accessToken</key> | ||
<string></string> | ||
<key>refreshToken</key> | ||
<string></string> | ||
<key>depEnabled</key> | ||
<false/> | ||
</dict> | ||
</plist> |