app binary organization [closed] - iphone

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Two questions, kind of same category:
When I checked from Xcode, I saw a folder library/cache/imagecaches (quite some files there) on iPhone under my app, I never created that folder, I guess it it was managed by iOS itself, nothing for me to concern.
I have a sqlite file called app.sqlite, and it is in documents folder. that's the right place to pass app review right, right?

If you have never seen it before then it is iOS's own cache system, you shouldn't mess with it.
Check it out https://developer.apple.com/appstore/guidelines.html

Related

How would I prevent copying of my itch.io published game? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I have recently made a page on itch.io, I am wondering how I would be able to prevent people from copying the files and sending it instead of paying the $20. In other words, I want to make sure that the person who tries to run the launcher / installer has purchased the game from itch.io
What you can do is the same as mojang, create yourgameaccount#gmail.com and yourgameusertag. That way you can prevent maybe. Try to do like minecraft where you require registered account to play the game.

iPad Application Distribution [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I have create an iPad application for enterprise distribution and its working very well but I want to change the message that appear when application start installing on the iPad from waiting to loading or something like that, how I can do that?
And what is the full list of variable I can use it with Manifest file (.pList)?
You may not change the "Waiting" and "Installing" text. It has nothing to do with your application, but with iOS.

How to add my iPhone web app to apple.com/webapps [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I have created a webapp which is for iPhone. I need 2 helps.
App URL: http://classictutorials.com/ts/
How do i submit it to http://www.apple.com/webapps/ ?
Whats the best way to share with people who would be using it. Its a free app and neither am asking for any donation. So don't want to share across using money.
Apple adds the webapps on its own, and it didnt add anything to that list after 12/03/2010. So that is a stale list.
If you dont want to spend anything, you may want to advertise it on some forums, where they discuss about the problem your app could solve. Other than that you could try telling people, writing blogs about it or do a link exchange with other apps.

Decompile ipsw? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
How do hackers decompile ipsw files and read the code ?
Recently I read an update that some hacker was able to find out about jabber and aim services integrated in new versions of ios.
How did he do that ?
First off, it is a IPA file. Every app is a IPA file. IPSW is the iOS file type.
He did not get the full code, he probably just jailbreaks his phone, looks in the file directory of the phone that you can only see when jailbroken and looks for any new files.
He most likely saw a name like AIM.plist or something like that.
This really isn't a coding question and more of a hacking questions in general for the iPhone.

Will the app get rejected if you write image to /private/var/mobile/Media/DCIM/100APPLE/ directly? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
Instead of using UIImageWirteToSavedAlbum, is it safe to write your image to /private/var/mobile/Media/DCIM/100APPLE/ directly?
Without consulting the actual developer contracts at all, I feel safe in saying "Count on it, you will get rejected".
(Besides, is this even possible, given the sandboxing?)
Edit: The iPhone Application Programming Guide says that "for security purposes, your application is placed in its own directory and is limited to reading and writing files in that directory only." If that isn't actually the case (i.e. you can write to /private/var/... anyway, I'm pretty sure it's still "forbidden").