Create provisioning profile without real device? - xcode7

I need to make archive for my app to upload it on iTunes store but the problem is I don't have a physical device like "iphone/Ipade" tried with Generic deivce but it doesn't work don't have UDID to register anyway.
Xcode7

I believe that you can create a provisioning profile by going into Xcode Preferences and adding it.
To start with, press Command + comma to enter preferences. Go ahead and navigate to the Accounts tab and log into your Apple ID.
Proceed to click on view details, and simply create a iOS Development Signing Identity. Afterwards, simply go back to the root area of your project and click on 'Fix Issue - No provisioning profile found'
EDIT: If you don't have a physical iDevice, you'll need to register an Apple Developer Account on their developer site. Afterwards, simply follow this tutorial to proceed: Tutorial
Hope that helped :3

Related

How to allow Chrome Kiosk App configuration access for administrators?

I'm building a Chrome kiosk app that will be in a public space. Users can interact with the app, but there are a variety of settings (server addresses, timeouts, etc.) that need to be set. I'm looking for a strategy on how to allow access to that administration config.
On first run - This is straightforward, but I want administrators to be able to pull it up again.
Detect if the app ran as a kiosk app or manually - This would kind of work, not sure if it's the greatest
Detect some key combination - Ctrl + Alt + Something switches over to the settings page, this feels like people could stumble on it accidentally.
Is there another approach I'm missing?
If your Chrome device(s) is managed you have a further option which is to use the Chrome App Management area within the Google Apps admin interface.
To do this you code your app to use the storage.managed API and this should allow a Configure section for your app within Chrome App Management.
I haven't tried this myself yet but this appears to be the way the Chrome Sign Builder app is configured with its schedule.
Another approach would be to have an administrator login button in a corner of the app. You can set a default password for administrators, which could then be changed in the settings dialog.
You can also think of combining suggestions you have made, first run and then a key combination, and this could bring up a password prompt as also suggested. For an example of this see the Zebradog Kiosk app which is in GitHub so you can see code of how this could be done.
I use ctrl-alt-S at boot. This allows me to login and make changes. I know you have to do a couple of reboots, but it is out of service during admin time anyway.

App42 - deactivate whole database for update

Is it possible, to deactive an app (all requests will get a error answer from the app42 service) for a while (or even better, for all except one special user), update the database and after everything is valid again, reactivate the app again?
You can easily deactivate your app through dashboard.
Follow just simple steps:
Login to your AppHQ Management Console
Click on View Apps under App Manager section
Click on Disable to deactivate your app
Same you can follow when you have to activate click on enable.
Let me know if it helps.

Not able to install app made using App studio Windows phone 8

Initially I was able to install on my lumia 620 apps made using app studio.
Now I'm getting the following error.
"We haven’t been able to contact the Microsoft Corporation company account to make sure you can install this app. Make sure you’re connected to a mobile or WiFi network, and we’ll try again as soon as we can.
Unfortunately, it may take a couple of days before we can make that connection. If you continue to have trouble contact your company’s support person for help."
I'm in India and I'm using the same live account I used earlier.
Take a look at this : How do I get my app on my Windows Phone device?
It explains in details all the steps you need to do.
For Windows Phone 8.1
As well as various 3rd party QR Code readers you can use, you can also use Bing vision by doing the following. Open your camera on your Windows phone. Press the “Lenses” button Search icon( Sometimes the lenses button won’t be bound to your screen, you can do this by pressing the three dots and adding it to your bindings ) From here, a new menu will appear with various lenses listed. Choose Bing Vision.
Remember that by clicking “install” you download the app. By clicking Tap to open, you add the company certificate. It pushes you back to “Install company app” at that point, but you do not have to do it a second time. At this point, go to your app menu and you will see your app. Point the phone’s camera at the QR code that opens with the certificate link, and the phone will automatically scan it. Click “add” and the certificate is successfully installed once it returns to the original Install the certificate page.
...... CAN'T UNDERSTAND THIS FULLY. PLEASE EXPLAIN

Installing company app and application enrollment token through company portal. IE 10 in wp8 freezes in tap to open

We are distributing the company app and application enrollment token through our company portal. We observe the following behavior. When the user downloads the AETX through the IE 10 that comes with Windows phone 8 there is a prompt that comes as "tap to install", then a prompt to install the certificate automatically appears. After installing the certificate the IE browser tab just stays there. It does not move to my original web site.
We tried to perform the action on the page using various standard technique like loading the content in a Iframe and opening a windows etc. But apparently we see that whether we try to open it in IFRAME or new windows, the download link for ATEX and XAP opens in the same. It does not eve create a new tab/page.
Every time the user has to click the back button after install to reach the main site. This is very annoying for users.
Any help/suggestion would be of immense help
I would suggest you 3 checklists:-
Its recommended by the Wp8 enrollment Application file download should not be coming as "chunked" in HTTP protocol. Please ensure it comes in one piece.
Try serving the XAP file without any Content-Type header (which by default is set to octet stream usually on the server end).
Try pushing your Enterprise app during the enrollment phase itself to avoid these complications. Its the best way to install the company app as a last step in the WAP Provisioning.
Thanks for the suggestion. I believe that is a default behavior of IE on WP8. I used this plug in to schedule the download one after another
http://johnculviner.com/jquery-file-download-plugin-for-ajax-like-feature-rich-file-downloads/

iOS installing apps from HTML

yesterday night I was using my iPad and opened the app: FQ Genius, it prompted me that there's an update so when I clicked update, it redirected me to a safari webpage. There I can click download and iOS prompts me to install the app. At the end it did success install and I can run the native app (Note that it is not a web app). I wonder how do they do it? Many thanks!
Attaching this link to the webpage:
You can achive this using Distribute Enterprise applications Over The Air (OTA) help you see the following step by step
iOS supports over-the-air installation of enterprise apps, letting you distribute in-house software to your users without using iTunes or iPhone Configuration Utility.
Here are the steps by which you can create OTA distribution for your Enterprise apps.
Step 1: Archive your project as usual and open Organizer.
Step 2: Select the file you want to distribute and press the Share button.
Step 3: Select “iOS App Store Package (.ipa) and press next.
Step 4: A new window will which will ask you to enter the name of the ipa file. There is a check box at the bottom of the screen “Save for Enterprise Distribution”, select this check box.
Step 5: The window will expand to look something like this.
It will ask you few information on where you want to host the file, its icons and title.
Make sure you enter the application URL to the complete url of the file you would host on your server. Then enter title, subtitle, large icon url (512×512) and small icon url (57×57). Once you select the “ok” a .ipa file and .plist file will save in your select folder.
Step 6: Now we need to create a html file which will have the link of the plist file. Here is the sample file -
Credit goes to this bellow link
http://www.makebetterthings.com/iphone/distribute-enterprise-applications-over-the-air-ota/