Delete or cancel app only with iTunes id [closed] - ios

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
Can i create app that the user can't delete without iTunes id or password?
Can i create app that the user can't cancel to background with home button without iTunes id or password?
Thanks in advance

No and No. The philosophy is that the user should always feel in control of their apps. You can only prevent app deletion on a device-by-device basis (using the device settings).

Related

knowing the bundle id of another app, may enable to hack the keychain access? [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 3 years ago.
Improve this question
I was really thinking is it possible that if a hacker gets bundle id of my app, the hacker can get access to key-chain of the my app ?
asak, bundle id are unique and hence it cannot be re-used.
I'm not sharing the keychain. If hacker somehow knows the bundle ID of my app, will hacker be able to access my app's keychain ?
thanks
No. You have to allow it specifically for which apps are you sharing the keychain.
https://developer.apple.com/documentation/security/keychain_services/keychain_items/sharing_access_to_keychain_items_among_a_collection_of_apps

Is the app will be approved by apple if the user registration is only through website not through app and can access the login content in the app [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 4 years ago.
Improve this question
Is the app will be approved by apple if the user registration is only through website not through app and can access the login content in the app.
In the website it might use some payment if needed.
Thank you in advance.
Yes, they will approve. Make sure to follow these steps:
Leave no traces about your website or payment in your app.
Provide a demo username/password to Apple so that they can login and go through your app at the time of review process.
Good luck!

In app purchase issues iOS [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 10 years ago.
Improve this question
I have tested in app purchase for a long time.
For testing in app purchase I have use TEST USER that I have crated in iTunes Conect.
But now when I try to sign in with my TEST USER account I get this message (before this message not appear)
So, this means that I have to enter all info about myself (bank account and etc). But I think for test user this items not needed.
Thanks for help!
This often happens if you accidentally attempt to purchase real content with a test user. Try defining a new test user and deleting the old one.

How to set a password for application in iOS [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 9 years ago.
Improve this question
I am developing an application in iOS where I want to provide a password option..where user can enter a password and set it,and later when he opens the app,it should first ask for password to enter,
So can we implement this?
Any ideas ,suggestions are welcomed.....
Regards
Ranjit
Maybe save the password in the NSUserDefaults and request that password if one is set...
http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSUserDefaults_Class/Reference/Reference.html
Save the password to the keychain. Don't store it anywhere else, if you care about security. You could use SFHFKeychainUtils to do this easily.

UDID of users who made inApp Purchase [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 5 years ago.
Improve this question
I need to get UDIDs of devices on which inApps from my app were made. Is it possible from iTunes connect or thru any API for developers?
Apple will not give you this information. The way they provide is to retrieve previous transactions made by the user on the current iTunes account. Apple would very much not like it if you were trying to limit the validity of the purchases to the devices not the user. You could have some analytics (flurry, google...) that keeps tracks this information but it is not usual practice, you should not attempt to identify individual users when building statistics on your app's usage.

Resources