Setting wallpaper using mdm - ios

I want to set device's lock and home wallpaper using mdm command.
I looking into apple configuration but didn't find any xml that can be used to set the wallpapers.
Please help for getting me the XML.

Apple didn't release new configuration profile reference guide for iOS 7 yet.
If you really want to try it, go and disassemble managedconfiguration private framework. It contains info on all payloads.

You can set lockscreen with Apple Configurator however the background option is not present in current Apple Configurator(Please note ac is not updated since IOS 7.
Regarding settings lockscreen and background in "mdm" it depends on what mdm "brand" you'r using.

Related

Use Restrictions Payload **allowScreenShot** from configuration profile on IOS app

Is there any way to use the allowScreenShot restriction payload inside and IOS app to disable screen captures?
I've been looking for a way to block screen captures on my IOS app and I came across with this document: Configuration Profile Reference
So I start wondering if it's possible to use this information inside an IOS app.
If someone knows the answer please help me with an example. Thanks!

Change App icon in iOS through Custom URL

I know we could change the app icon of the application in iOS 10.3 above and I achieved this successfully, but my question is that could we achieve this using a custom url.
Suppose that the app icon is stored in the backend server and the icon while changed according to the user login in the system. Is it possible?
This is not possible. Any alternate icons must be predefined the the app's info.plist file and are subject to app review.
Check out the documentation here: https://developer.apple.com/documentation/uikit/uiapplication/2806818-setalternateiconname
Apple's Human Interface Guidelines discusses some of the limitations of custom app icons: https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/

How Apple TV is used to control Homekit Accesory

I have created an application for Homekit which works fine when both accessory and device is in same network.
I read somewhere that Apple TV is required to control accessories remotely.
Can anybody please tell how to achieve this exactly?
No you can not pair homekit with the appleTV. You can use the remote app either from you iPhone or iPad
If you have Apple TV try to set it up.
I have given the details.
I have done a much workaround for this. First of all handling things by our own is not preferable for multiple users.
I had this query that how all configuration done on one device will reflect on another device for same home. Unfortunately apple didn't provided much information on this and they also didn't clarify that Apple TV will require or not(As I have referred to some reports that says Apple TV will use as intermediator between iOS devices.
Now at application side i have tried to add User to home. There is a HMUser class and we can add user to any home that we want to sync. I was running my app in iOS 8.1 in both the devices, I was also logged in to icloud and keychain access was also enabled.
Now i have tried to add user using method of HMHome class
-addUserWithCompletionHandler()
I shows a popup in which we need to enter the email id of user to which we want to give access to current home.
But it didn't work. I always get error "notification not enable at remote side"
I think that login to Apple TV is require for adding user. I am not sure about this, Apple hasn't clarify on this too. I don't have Apple TV if you have try to login in it and use two other iOS devices to give access to any icloud account.
Also revert me if it works.
I have been working on HAP Over iCloud concept since last 2 to 3 hours. The beauty in this concept is according to the documentation we should need the following things.
1. Apple tv 3rd generation.
2. Have to use same iCloud account in both apple tv and iOS device.
3. This is most important that Apple tv and Accessory should be on same network.
Eventhough you are on different network it is able to pass the switch on/off,brightness increase/decrease ... actions. For this you can use siri commands or programmatically call the accessory write value functionality
Note : As I know I think when you are passing the commands to the Accessory it checks for the iCloud account in the apple tv and from there it is passing the commands to the Accessory.

How to make mobileconfig file on ios device

Detail: Every stuff in our company has his own calendar and a fixed subscribe url, which is known, I am working on an iOS app, which can help stuffs to install a mobileconfig file and automatically subscribe the calendar, I just don't know where to start
Here is an example of 163EMAIL: https://ssl.mail.163.com/config/mobileconfig/index
I am trying to make one exactly like this!
if all this can be done within only one iOS device will be better.
so all you have is an url of a calendar, with which I can manually subscribe by entering setting-email-add-other-subscribe
and I want to make it a mobileconfig file!
THX!
Here is a good place to start.
"Creating a Profile Server for Over-The-Air Enrollment and Configuration" is the part you should really focus on.
You can use the built-in Apple Configurator on OS X

How to add specific requirements while submitting iOS app to Apple Store?

I am ready to submit my iOS application to Apple Store. But I want to add specific requirements such as "app requires iOS 4 or greater ,iphone 4 , ipod touch 4g,ipad ,camera & multitasking support". I don't know where should I set these requirements.
I set the base sdk & deployement target to 4.0.
Any help is appreciated. Thanks.
You need to add UIRequiredDeviceCapabilities key to info.plist file and set still-camera value.
Here is a table of all possible iDevice requirements.
As for target iOS version and backgrounding it's right to set deployment target at least 4.0.
If you require iOS 4, you already have multitasking support. There's no way (that I know of) for any user to disable that.
Camera is trickier though. Make it very clear in your app description that your app requires a camera. And that caveat ("you must have a camera") should keep non-camera device using people from downloading.
I got it. Brigadir is right. When you setUIRequiredDeviceCapabilities key to info.plist file & set the required values then it will automatically list the devices required. See Appendix C: Device Compatibility Matrix in itunes_connect_developer_guide.pdf.

Resources