Can I send Push Notification to my app if I delete my app from App Store - iphone

I have a app in AppStore which I am sending push notification.
I need to know if I can continue to send push notification to the users of the app if I delete the app from itunesconnect (AppStore).
Thanks,
Yasin

If you are removing the app from sale but leaving it as an entry configured for Push then you can.

Related

Send push notification when the app is auto updated

I saw some apps send me notifications when the app is auto-updated by the Apple app store. We're building an app with Flutter. Is it possible to send a push notification to notify users when the app is auto-updated?

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 .

will push notifications work if user has neither allowed nor "not allowed" push notifications for my app yet?

I am currently updating my App, and I am planning on including Push notifications.
The main purpose for my push notification is to let users know that the app has been updated and they should check out the new features. Now with iOS7 automatically updating apps, users are less likely to open apps after they have been updated, let alone KNOW it has been updated. As a lot of users will just clear their notification centre's with out paying any attention.
So my question is...if a user has not launched my app yet to see the alert "[myApp] would like to send you Push Notifications" - Don't Allow / OK.
Will they see my push notification before they have had chance to allow or not allow?
Do push notifications work until "not allowed" has been pressed? Or do they not work until OK has been pressed???
Thanks for your help.
If they never launched your app, your app never registered to Apple Push Notifications on their device, so you can't send them push notifications.
In addition, your server is not likely to have the device token for a device in which your app was never launched (since it's the app's job to send the device token to your server).
And if you push a notification to a device token of a device on which your app never registered to push notifications, the notification won't be delivered (even if the app is installed on the device), and that device token will eventually be returned to you in the feedback service.

iPhone App Link To App Update in AppStore

Does anyone know if you can send a user to an app's update in the appstore?
We want to do this from within the app and/or when getting a Push Notification.
Thanks!
Yes, it is possible as long as you have the URL that links to your app.
I'm not 100% sure, but I seem to remember seeing something in the apple rules that means you may not be able to send a push notification advertising new apps. But an update may be ok.
Remember as well that a user may have already updated the app because they had the badge on the AppStore icon and then you push a notification out to all users. Could be annoying.

iphone- is it true that an app with push notification service needs to be on the app store?

If i wanted to test an app with push notification service, does it have to be approved in the app store?
No. You can use push notifications without ever submitting to the App Store via development or "Ad-Hoc" builds. You will however need a signed certificate from Apple, as push messages are routed through their network. Certs can be acquired with a paid Apple developer account.