Can i get email notification from App Store when my app is downloaded from app store? - app-store

Is there any way that Apple can send us a notification email every time a user downloads our app from App Store?

No. But you can use App Analytics, iTunes Connect, or a third-party service such as App Annie, which can email you daily summaries.

No, but you can create a webservices rest and in your method DidFinishLaunching you save when your app is the first Open.. save open with the boolean value in NSUserDefaults and call your API.

Related

Get data from all app's notification in IOS

I would like to develop an IOS app to get notification such as title and body from all applications in iPhone. Is it possible to do that?
No it is not. On Android, yes this is possible. But not on Apple. They restrict permissions so that you cannot access that information as a developer.
Every application is given a sandbox, a directory it can use to store data in. If the application needs access to data on the device that isn't located in the application's sandbox, it needs to request the data through a system interface.
App can only read their notifications, other things are possible with Jailbreak.
Learn about app sandbox here

How to send notification to all users when new version is uploaded in appstore?

I want to send notification to all user when application is release in appstore without using push notifcation.Is there any method I can notify to my users.
there is no way to send notification to alert user with out APNS or socket (backround running ). with out APNS, you can check only when the app is opening and call an apple API or your api for getting latest app version and then you can trigger a local notification .

Itune Application sharing blocking

IOS paid application sharing we need to block.
Planning to submit paid application in Apple store. Suppose a user brought application and download to Itunes account, then i sync to my mobile device, able to use that.
1.From itunes can we share application ipa to any other user?
2.is there any way to identify which apple id used for downloading?
3.any option for blocking user without downloading from apple store?
Apps bought/downloaded from the app store are linked to the account that download the app. You can there for not just share the IPA.
On a jailbroke device you might be able to remove the security measures that restrict this. But what you are proposing is not possible with official App Store apps.
You cant code to UDID anymore since the update to the iTunes ToS. They are all account bound. In the cases I have tried to share the .ipa file the app data inside that app specific to me did not migrate to the new user

iphone application update

i would like to check:
if a user downloaded my app, than i make some update to app, data etc., itunes will auto remind the user of the update through app store, and the user can update for free? or do i have to set such reminder in my application?
else, is there a way for me to send this notification?
thks
Rgds
Yes, the phone notifies of app updates through the App Store app and app updates are free.
Alternatively, you can use push notifications to notify the user that a new version is available, or display an alert the next time they open the app.
To do the latter you can query the version of the app ([[NSBundle mainBundle] objectForInfoDictionaryKey:#"CFBundleVersion"];) and compare it to a value provided by your web server.

how to retrieve data from app of In App purchase

My IN App Purchase application is running fine in iPhone but when i purchase the item through In App purchase that time i get the message that you have successfully purchase but download hasn't done. So I want to know that by using which code I will download the item and where it will be use to store.
In app purchases can't actually download anything by themselves. When the user completes the purchase, your application is notified and then you can either initiate the download from a remote server, or activate code or functionality already in your application.
More information here: In App Purchase Documentation