Support url for app submission in appstore
The support url is now required. You can make a free account at a site like: http://www.wordpress.com/ or similar.
The support url is now required. You can make a free account at a site like: http://www.wordpress.com/ or similar.
I fix this problem by enabling push notification capability. Click on .xcodeproj -> Capabilities -> Enable Push Notification
The following resolutions are acceptable to iTunes connect: Inch Height*Width Devices 3.5 640 x 960 iPhone 3+4 4 640 x 1136 iPhone 5, iPhone 5S, iPhone 5C 4.7 750 x 1334 iPhone 6, iPhone 6S, iPhone 7, iPhone 8 5.5 1242 x 2208 iPhone 6 Plus, iPhone 6S Plus, iPhone 7 Plus, iPhone 8 Plus … Read more
Apple may have updated the interface guidelines since this question was asked, but transparency is now expressly not allowed. See more here: https://developer.apple.com/ios/human-interface-guidelines/icons-and-images/app-icon/
Apple supports “Ad-Hoc” application distribution for exactly this purpose, but it is limited to 100 devices. If you have an Enterprise developer account, you can do Ad-hoc distribution within your organization, as well. iOS Developer Distribution Options iOS Developer Enterprise Program
Just remove files below and build your app as usual! GooglePlus.bundle/GPPSignIn3PResources GooglePlus.bundle/GPPCommonSharedResources.bundle/GPPCommonSharedResources GooglePlus.bundle/GPPShareboxSharedResources.bundle/GPPShareboxSharedResources
I had this error once, too. Then I realized the provisioning profile (Project Targets -> Code Signing) was set to ‘Ad-Hoc’ profile instead of ‘Production’ profile. Setting it back to ‘Production’ did the trick for me.
Use Linking to open up the url to the app store. To construct the proper url, follow the instructions for iOS and/or android. E.g. Linking.openURL(‘market://details?id=myandroidappid’) or Linking.openURL(‘itms-apps://itunes.apple.com/us/app/apple-store/myiosappid?mt=8’)
You can reject your first binary and upload the new one. Your position in the review queue will be reset. If you are worried about the release date more than your stability fixes you can just submit the update immediately after it is released to the app store. App Store Submission Tips Changing the Status … Read more
A QR code is just a link / URL, soo point to a URL on your site and use PHP to determines if the user is using Android or iPhone. Then do a PHP header location to the iPhone app URL if it is iPhone, or Android app if it is Android. Here is the … Read more