-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat(Core): handle EMM maanged configurations
- Loading branch information
Showing
7 changed files
with
204 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2712,4 +2712,4 @@ | |
<DRIVER>wp</DRIVER> | ||
</CONTROLLERS> | ||
</CONTENT> | ||
</REQUEST> | ||
</REQUEST> |
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,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<!-- Choice restriction --> | ||
<string name="title_server_itemtype">Type</string> | ||
<string name="description_server_itemtype">Type of asset</string> | ||
<string name="entry_server_itemtype_computer">Computer</string> | ||
<string name="entry_server_itemtype_phone">Phone</string> | ||
<string-array name="entries_server_itemtype"> | ||
<item>@string/entry_server_itemtype_computer</item> | ||
<item>@string/entry_server_itemtype_phone</item> | ||
</string-array> | ||
<string-array name="entry_values_server_itemtype"> | ||
<item>Computer</item> | ||
<item>Phone</item> | ||
</string-array> | ||
<string name="default_server_itemtype">Computer</string> | ||
</resources> |
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,46 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<restrictions xmlns:android="http://schemas.android.com/apk/res/android" > | ||
<restriction | ||
android:key="server_configuration_list" | ||
android:restrictionType="bundle_array" | ||
android:title="@string/server_list"> | ||
|
||
<restriction | ||
android:key="server_configuration" | ||
android:restrictionType="bundle" | ||
android:title="@string/server_configuration"> | ||
|
||
<restriction | ||
android:key="server_url" | ||
android:restrictionType="string" | ||
android:title="@string/server_url"/> | ||
<restriction | ||
android:key="server_tag" | ||
android:restrictionType="string" | ||
android:title="@string/server_tag"/> | ||
<restriction | ||
android:key="server_login" | ||
android:restrictionType="string" | ||
android:title="@string/server_login"/> | ||
<restriction | ||
android:key="server_password" | ||
android:restrictionType="string" | ||
android:title="@string/server_password"/> | ||
<restriction | ||
android:defaultValue="@string/default_server_itemtype" | ||
android:description="@string/server_itemtype" | ||
android:entries="@array/entries_server_itemtype" | ||
android:entryValues="@array/entry_values_server_itemtype" | ||
android:key="server_itemtype" | ||
android:restrictionType="choice" | ||
android:title="@string/title_server_itemtype"/> | ||
<restriction | ||
android:key="server_custom_asset_serial" | ||
android:restrictionType="string" | ||
android:title="@string/server_custom_asset_serial"/> | ||
</restriction> | ||
|
||
|
||
|
||
</restriction> | ||
</restrictions> |