This question already has answers here:
Get list of installed apps on iPhone
(5 answers)
Closed 9 years ago.
i found one android application that display the list of all installed applications and on selecting a particular application it will display the name and email id of the app developer/publisher and app version etc...
so my question is - Can we implement the same concept in non-jailbreak iOS device?
thanks for reply in advance
danish
No this is not possible in non jailbreak device. In Ios apps in sandbox so you not get information of other apps in device. you can check some apps are install in device by open url schema but not get all apps..
No, the best you can do is go over the list of app launch URLs and see if there's a responsible app, but this only covers a tiny bit of app store.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am attempting to run my app an iOS device but I can't seem to figure it out. This is the question. I am unsure of how to add a device to run it on because I never had to do it before. I release this is a fairly simple question but I searched this site and Google very hard and was unable to find an answer that I could understand.
Any suggestions would be greatly appreciated.
Thanks in advance.
First of all Go to your apple developer account and create an app certifications for development and distribution (Skip this step if you have credentials already).
Create new app identifier which you need to specify your bundle identifier.
Create or select the device which your app is going to run.
Create a signing entity (provisional profile) which is authorised for the specific app and select the created app identifier and list of device(s) to run the app. Make sure that you're using the same app identifier (Bundle identifier in your app).
Generate your certificates and that's all done from the account perspective.
Open xcode and goto preferences. Choose the account which is associated with the certification created for the app.
Refresh the account certification to download the recent copy of the certifications.
Go to build settings of your app and in the signing entity section, you'll see lot of rows. Blindly choose iOS developer (if you want to test on your device) or iOS distribution (if you want to distribute the app) and the last row, select your created provisional profile.
That's all. Start testing and sharing!!
If you want to build the app use Command+B and for running the app, use Command+R.
Hope the above steps helps you... Please do let me know, if you need more help regarding this.
here i am getting finally answer
xcode>product>build
or press command+f5 button...
You must have an iOS developer account.
Add UDID of your device to developer account.
Create iOS App IDs
Create and add Provisioning Profiles to XCode
Connect your device to Mac
Select device and run
Follow this Deploying iPhone Apps to Real Devices
read carefully the tutorial at Apple ADC site, are really well written.
https://developer.apple.com/library/ios/referencelibrary/GettingStarted/DevelopiOSAppsSwift/
Hey Stackoverflow People,
I'm working on implementing the UAAppReviewManager tool developed by Urban Apps (which is basically a super version of Appirater) into my app to have a rating and feedback function. I have devices (running iOS 5/6) where I've tested the Rate feature of the tool and its been able to properly redirect the user to the App Store after they select Rate the App from the pop-up dialogue, but for devices using iOS 7, it redirects the user to the App Store app and displays a pop-up saying the following:
The certificate for this server is invalid. You might be connecting to a server that is pretending to be "ax.itunes.apple.com" which could put your confidential information at risk.
Has anybody used this tool on iOS 7 and encountered this message before? If so, does anyone know what the workaround is? It seems iOS 7 processes things differently underneath with URLs and I'm not doing anything different or specific for earlier versions.
I am the developer of UAAppReviewManager. iOS 7 does not allow this url anymore so it was changed to a new value for iOS 7 in UAAppReviewManager. Update to the most recent (0.1.3) as of this writing and you should be fine
I upgraded my Iphone IOS to 7 weeks ago.
Today automaticaly it has been upgraded to the last beta IOS and ask me for Activation.
On display there's a text "Activation Error, register for developer program" and I have not access to my phone.
also, since i installed a new windows on my laptop, I didnot connect the phone to my itunes. Now for finding UDID I just connect it to Itune and Itune ask me to Trust the phone but i have not access to iphone to trust.
seems i have the option to downgrade to ios6 through dfu mode, but i need my data on it and it will be lost if i use udf/restore.
plz provide me solution
This seems like it would answer your question: http://www.imore.com/how-downgrade-ios-7-beta-back-ios-6
Sometimes it's tricky knowing if you made it into DFU mode properly, this should help: http://www.iclarified.com/entry/index.php?enid=1034
Please be careful putting your primary phone on unstable versions of software, Apple has a nasty history of trying to prevent people from going backward.
Has anyone successfully been able to submit an app created with TideSDK to the Windows 8 app store? Any helpful tutorials around?
Apologies if this question is repetitive - I've been looking around for resources without much avail.
Thanks.
This question already has answers here:
Sending an iPhone app to customer for review
(2 answers)
Closed 8 years ago.
I have to deliver the current state of the project to the custumer to validate it. My doubt is how to do it. The .app build is the executable file of the project? Is it possible to be executed by the customer on their iPhone?
Many thanks!
I would recommend https://testflightapp.com/. Easy for everyone involved.
As Richard says, Ad-Hoc versions are the way to go.
(and if Richard changes his comment to an answer, I'll upvote that too).
Here is a tutorial that you can refer to:
http://mayurbirari.wordpress.com/2011/01/20/ad-hoc-distribution-build-for-iphone/
Try this.
A)have you added the UDID of Client's device to your using Provision Profile..?.
if yes, then you can send ".app" file to your client along with the Provisioning profile.
Then Installing .app file into Client's device
1) Drop the .app file with the Provision Profile into the Itunes application.
2) Choose the device from right window of itunes.
3) Click Apps
4) Click SynchApps
5) Choose the App(you going to install) and
6) Then After Click On Apply
B)If No,then You need to create Adhoc/Distribution build.
For creating the Distribution Build You need Distribution Certificate and provision Profile.
Go through this Link for creating the Adhoc/Distribution Build
then you may send the Build to your Client.
I hope it'll help you.