Custom Android app not launched during Android Management API enrollment with the setupActions keyword2019 Community Moderator ElectionAndroid Management API and MDMHow does designing custom android DPC app relate to Android management API?Android Management API and VpnServiceDevice settings and tracking with Management API?Enrollment token expiry in Android Management APIIs it possible to enroll a non-play-certified device into the Android management API?Management API remove blocked appsAndroid Management API featuresAndroid Management API for private use?Android Management API not working in Korea
Asserting that Atheism and Theism are both faith based positions
Violin - Can double stops be played when the strings are not next to each other?
Bash - pair each line of file
Turning a hard to access nut?
How difficult is it to simply disable/disengage the MCAS on Boeing 737 Max 8 & 9 Aircraft?
Do I need to be arrogant to get ahead?
Am I eligible for the Eurail Youth pass? I am 27.5 years old
What does Jesus mean regarding "Raca," and "you fool?" - is he contrasting them?
Using Past-Perfect interchangeably with the Past Continuous
Why didn't Héctor fade away after this character died in the movie Coco?
두음법칙 - When did North and South diverge in pronunciation of initial ㄹ?
Recruiter wants very extensive technical details about all of my previous work
How to generate binary array whose elements with values 1 are randomly drawn
Optimising a list searching algorithm
Is honey really a supersaturated solution? Does heating to un-crystalize redissolve it or melt it?
Worshiping one God at a time?
What is the significance behind "40 days" that often appears in the Bible?
Maths symbols and unicode-math input inside siunitx commands
What does "Four-F." mean?
Can other pieces capture a threatening piece and prevent a checkmate?
How to get the n-th line after a grepped one?
Have the tides ever turned twice on any open problem?
Is there a hypothetical scenario that would make Earth uninhabitable for humans, but not for (the majority of) other animals?
What does "^L" mean in C?
Custom Android app not launched during Android Management API enrollment with the setupActions keyword
2019 Community Moderator ElectionAndroid Management API and MDMHow does designing custom android DPC app relate to Android management API?Android Management API and VpnServiceDevice settings and tracking with Management API?Enrollment token expiry in Android Management APIIs it possible to enroll a non-play-certified device into the Android management API?Management API remove blocked appsAndroid Management API featuresAndroid Management API for private use?Android Management API not working in Korea
Following the Android Management API reference, we've configured our Android Companion App to be automatically launched during the enrollment.
We've added the following information in our policy
configuration:
"name": "enterprises/XXX/policies/85f57716-8b02-48f2-abdf-5aeb6beef585",
"version": "1",
"applications": [
"packageName": "app.XXX.companionapp.test",
"installType": "REQUIRED_FOR_SETUP",
"defaultPermissionPolicy": "GRANT",
"managedConfiguration":
"namespace": "XXX",
"enterpriseId": "enterprises/XXX"
],
"openNetworkConfiguration":
"NetworkConfigurations": [
"Type": "WiFi",
"GUID": "a0989e28-9c23-43e5-b5d3-9b37d86723a3",
"WiFi":
"AutoConnect": false,
"Passphrase": "XXX",
"Security": "WPA-PSK",
"SSID": "SFR-9548"
,
"Name": "XXX"
]
,
"systemUpdate":
"type": "AUTOMATIC"
,
"safeBootDisabled": true,
"statusReportingSettings":
"applicationReportsEnabled": true,
"deviceSettingsEnabled": true,
"softwareInfoEnabled": true,
"memoryInfoEnabled": true,
"networkInfoEnabled": true,
"displayInfoEnabled": true,
"powerManagementEventsEnabled": true,
"hardwareStatusEnabled": true
,
"stayOnPluggedModes": [
"BATTERY_PLUGGED_MODE_UNSPECIFIED"
],
"locationMode": "HIGH_ACCURACY",
"appAutoUpdatePolicy": "ALWAYS",
"playStoreMode": "WHITELIST",
"setupActions": [
"launchApp":
"packageName": "app.XXX.companionapp.test"
,
"title":
"defaultMessage": "Companion"
,
"description":
"defaultMessage": "Install Companion App to run custom tasks on your device."
],
"passwordPolicies": [
]
It used to work well, but lately, our companion app is not launched anymore during enrollment, whereas it's actually installed on the device.
Do you have any idea about what could be wrong?
Thanks a lot in advance.
PS: There is a mismatch in the SetupAction
key. In the Android Management API guides, it refers to setupAction
, and in the API documentation it refers to setupActions
.
android-management-api
add a comment |
Following the Android Management API reference, we've configured our Android Companion App to be automatically launched during the enrollment.
We've added the following information in our policy
configuration:
"name": "enterprises/XXX/policies/85f57716-8b02-48f2-abdf-5aeb6beef585",
"version": "1",
"applications": [
"packageName": "app.XXX.companionapp.test",
"installType": "REQUIRED_FOR_SETUP",
"defaultPermissionPolicy": "GRANT",
"managedConfiguration":
"namespace": "XXX",
"enterpriseId": "enterprises/XXX"
],
"openNetworkConfiguration":
"NetworkConfigurations": [
"Type": "WiFi",
"GUID": "a0989e28-9c23-43e5-b5d3-9b37d86723a3",
"WiFi":
"AutoConnect": false,
"Passphrase": "XXX",
"Security": "WPA-PSK",
"SSID": "SFR-9548"
,
"Name": "XXX"
]
,
"systemUpdate":
"type": "AUTOMATIC"
,
"safeBootDisabled": true,
"statusReportingSettings":
"applicationReportsEnabled": true,
"deviceSettingsEnabled": true,
"softwareInfoEnabled": true,
"memoryInfoEnabled": true,
"networkInfoEnabled": true,
"displayInfoEnabled": true,
"powerManagementEventsEnabled": true,
"hardwareStatusEnabled": true
,
"stayOnPluggedModes": [
"BATTERY_PLUGGED_MODE_UNSPECIFIED"
],
"locationMode": "HIGH_ACCURACY",
"appAutoUpdatePolicy": "ALWAYS",
"playStoreMode": "WHITELIST",
"setupActions": [
"launchApp":
"packageName": "app.XXX.companionapp.test"
,
"title":
"defaultMessage": "Companion"
,
"description":
"defaultMessage": "Install Companion App to run custom tasks on your device."
],
"passwordPolicies": [
]
It used to work well, but lately, our companion app is not launched anymore during enrollment, whereas it's actually installed on the device.
Do you have any idea about what could be wrong?
Thanks a lot in advance.
PS: There is a mismatch in the SetupAction
key. In the Android Management API guides, it refers to setupAction
, and in the API documentation it refers to setupActions
.
android-management-api
add a comment |
Following the Android Management API reference, we've configured our Android Companion App to be automatically launched during the enrollment.
We've added the following information in our policy
configuration:
"name": "enterprises/XXX/policies/85f57716-8b02-48f2-abdf-5aeb6beef585",
"version": "1",
"applications": [
"packageName": "app.XXX.companionapp.test",
"installType": "REQUIRED_FOR_SETUP",
"defaultPermissionPolicy": "GRANT",
"managedConfiguration":
"namespace": "XXX",
"enterpriseId": "enterprises/XXX"
],
"openNetworkConfiguration":
"NetworkConfigurations": [
"Type": "WiFi",
"GUID": "a0989e28-9c23-43e5-b5d3-9b37d86723a3",
"WiFi":
"AutoConnect": false,
"Passphrase": "XXX",
"Security": "WPA-PSK",
"SSID": "SFR-9548"
,
"Name": "XXX"
]
,
"systemUpdate":
"type": "AUTOMATIC"
,
"safeBootDisabled": true,
"statusReportingSettings":
"applicationReportsEnabled": true,
"deviceSettingsEnabled": true,
"softwareInfoEnabled": true,
"memoryInfoEnabled": true,
"networkInfoEnabled": true,
"displayInfoEnabled": true,
"powerManagementEventsEnabled": true,
"hardwareStatusEnabled": true
,
"stayOnPluggedModes": [
"BATTERY_PLUGGED_MODE_UNSPECIFIED"
],
"locationMode": "HIGH_ACCURACY",
"appAutoUpdatePolicy": "ALWAYS",
"playStoreMode": "WHITELIST",
"setupActions": [
"launchApp":
"packageName": "app.XXX.companionapp.test"
,
"title":
"defaultMessage": "Companion"
,
"description":
"defaultMessage": "Install Companion App to run custom tasks on your device."
],
"passwordPolicies": [
]
It used to work well, but lately, our companion app is not launched anymore during enrollment, whereas it's actually installed on the device.
Do you have any idea about what could be wrong?
Thanks a lot in advance.
PS: There is a mismatch in the SetupAction
key. In the Android Management API guides, it refers to setupAction
, and in the API documentation it refers to setupActions
.
android-management-api
Following the Android Management API reference, we've configured our Android Companion App to be automatically launched during the enrollment.
We've added the following information in our policy
configuration:
"name": "enterprises/XXX/policies/85f57716-8b02-48f2-abdf-5aeb6beef585",
"version": "1",
"applications": [
"packageName": "app.XXX.companionapp.test",
"installType": "REQUIRED_FOR_SETUP",
"defaultPermissionPolicy": "GRANT",
"managedConfiguration":
"namespace": "XXX",
"enterpriseId": "enterprises/XXX"
],
"openNetworkConfiguration":
"NetworkConfigurations": [
"Type": "WiFi",
"GUID": "a0989e28-9c23-43e5-b5d3-9b37d86723a3",
"WiFi":
"AutoConnect": false,
"Passphrase": "XXX",
"Security": "WPA-PSK",
"SSID": "SFR-9548"
,
"Name": "XXX"
]
,
"systemUpdate":
"type": "AUTOMATIC"
,
"safeBootDisabled": true,
"statusReportingSettings":
"applicationReportsEnabled": true,
"deviceSettingsEnabled": true,
"softwareInfoEnabled": true,
"memoryInfoEnabled": true,
"networkInfoEnabled": true,
"displayInfoEnabled": true,
"powerManagementEventsEnabled": true,
"hardwareStatusEnabled": true
,
"stayOnPluggedModes": [
"BATTERY_PLUGGED_MODE_UNSPECIFIED"
],
"locationMode": "HIGH_ACCURACY",
"appAutoUpdatePolicy": "ALWAYS",
"playStoreMode": "WHITELIST",
"setupActions": [
"launchApp":
"packageName": "app.XXX.companionapp.test"
,
"title":
"defaultMessage": "Companion"
,
"description":
"defaultMessage": "Install Companion App to run custom tasks on your device."
],
"passwordPolicies": [
]
It used to work well, but lately, our companion app is not launched anymore during enrollment, whereas it's actually installed on the device.
Do you have any idea about what could be wrong?
Thanks a lot in advance.
PS: There is a mismatch in the SetupAction
key. In the Android Management API guides, it refers to setupAction
, and in the API documentation it refers to setupActions
.
android-management-api
android-management-api
asked Mar 7 at 17:30
FlorianFlorian
255
255
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
There was an issue on Google's side preventing the new setupActions
feature to work. This issue is now fixed and the feature is now working properly.
1
Thanks a lot Fred, it's working properly now.
– Florian
Mar 13 at 8:59
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55049723%2fcustom-android-app-not-launched-during-android-management-api-enrollment-with-th%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
There was an issue on Google's side preventing the new setupActions
feature to work. This issue is now fixed and the feature is now working properly.
1
Thanks a lot Fred, it's working properly now.
– Florian
Mar 13 at 8:59
add a comment |
There was an issue on Google's side preventing the new setupActions
feature to work. This issue is now fixed and the feature is now working properly.
1
Thanks a lot Fred, it's working properly now.
– Florian
Mar 13 at 8:59
add a comment |
There was an issue on Google's side preventing the new setupActions
feature to work. This issue is now fixed and the feature is now working properly.
There was an issue on Google's side preventing the new setupActions
feature to work. This issue is now fixed and the feature is now working properly.
answered Mar 11 at 22:02
FredFred
1,10439
1,10439
1
Thanks a lot Fred, it's working properly now.
– Florian
Mar 13 at 8:59
add a comment |
1
Thanks a lot Fred, it's working properly now.
– Florian
Mar 13 at 8:59
1
1
Thanks a lot Fred, it's working properly now.
– Florian
Mar 13 at 8:59
Thanks a lot Fred, it's working properly now.
– Florian
Mar 13 at 8:59
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55049723%2fcustom-android-app-not-launched-during-android-management-api-enrollment-with-th%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown