How to revert "Waiting for Upload" status - ios7

I am trying to upload my app to iTunesconnect. It asked me if my app used IDFA and I said "No". When i tried to validate my submission through Xcode organizer, it says that my app uses IDFA.
I am using Google AdMob SDK to display ads.
Now I want to submit my app, how can I?

According to this answer: How to cancel 'waiting for upload'? you should upload a binary and then reject it.
You could just create a new "Hello World" project and then submit it to Apple.
Once you submit it, you'll find there is a button in iTunes Connect "Reject this Binary".
Specifically, these are the steps:
go to iTunesConnect
Manage your apps
Select your app
Click on "View Details"
Click on "Binary details"
Click on "Reject this binary"

Related

How to make Android Instant App without "try now" button on google play? android-app

How to make Android Instant App without "try now" button on google play?
But can enter the instant app by android link
Open the instant-app only through the android link, and the Google store no longer has a try now button

Google OK (Now) integration with our app not working

We setup Google OK (Google Now) with my app success fully integrate with this
example.
in example, its says "App must be uploaded on play store" or you can test using adb command.
So may app work with command, but in some device(not all device) also work with "google now".
My requirement is , when user launch "Google Now" and speak like "Total amount of site number 117 in 2017 on "App name" then my app is open.
Here my app is not open directly search in search bar.
So what's problem here.
Note: My app is not available in play store yet.

Google Drive Android Api reset Play Services Authorization

When debugging a GDAA app, I need to re-test a "brand new account" situation. I.e. getting the dialog that asks user to allow the Drive access:
"[YourApp] would like to: View and manage Google drive files that you
have opened or created by this app"
Is there a re-set method that would get me back to ground zero?
You can reset this via the Drive "manage apps" page on the web. Disconnect the app from your drive.
Have a look at the 'Google Settings' app on your device, in the 'Connected apps' section you should be able to select and disconnect your app. At least for other kinds of permissions (e.g. contacts), allowed apps show up there.
Edit: The same can be done via the web here.

How to publish a Shopify App as Beta

I have a Shopify App that I would like to test in the App marketplace as a beta. According to this link in the docs, it says I should be able to click 'Publish Beta App' at the top of the app listing to make it public. I do not see that option in the submission, I only see a submit button and the categories do not show a beta option. Can someone help me understand what I am missing?
As far as I remember, you have to just click on "App Store Publishing" and fill in the form. After that you application will become 'Beta' and you will be able to request a review from Shopify to become published.
In other words, there is no dedicated button to publish beta.

IOS Provisioning Profile and Push Notification on New Device

I can send push notification to an IOS device (IOS 5.1 IPAD 3rd gen) and handle notifications etc.. So it works quite well.
Now I have to use another device(IOS 5.1 IPAD 3rd gen), on organizer by right clicking I add my device to provisioning profile I can install my app to device but I can not send push notifications because I can not get device's token.
I guess it is because when I right click and add device to my provisioning profile It only adds the iOS Team Provisioning Profile rather then myApp Development Profile
On apples developer portal I have:
On My Organizer In Library-->Provisioning Profiles
On my teams
And I handle error code on push Notification:
- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
NSLog(#"Failed to get token, error: %#", error);
}
Error Is: Failed to get token, error: Error Domain=NSCocoaErrorDomain Code=3000 "no valid 'aps-environment' entitlement string found for application" UserInfo=0xxxxxxx {NSLocalizedDescription=no valid 'aps-environment' entitlement string found for application}
In case error is because provisioning profile:
How can add that Paper Developement profile to my device?
or
How can I learn device token and send push notification without creating provisioning profile all over?
Thanks in advance
I had similar issues before so I will list your possible issues,
Firstly do not use a provisioning profile with a wild card it is highly possible that your IOS Team Provisoning Profile includes a wild card. So just go to your device's provisioning profile on organizer and delete that IOS Team Provisoning Profile
Secondly go to your provisoning profiles on developer.apple and click edit as on your second picture in question. When you click edit you will see Modify click on that
and add your device by checking squares like below:
Click save and download new profile, now go to your provisioning profiles on your organizer and delete previous Pape Developement Profile. Double click your downloaded profile or click refresh on your organizer. Now drag and drop proviosinig profile to your device on organizer.
Finally if none of above solves your problem that means probably your bundle identifier and your app id does not much in this case check this answer
Hope you solve this issue....
For me it was just changing the bundle identifier and code signing identity to IOS Developer. The bundle identifier Changing it back and forth and building between changes did the trick (not sure if this step necessary). Not sure what it really was. Hope this helps someone someday, probably not.