app-store

My new version of iOS app crash on loading only when loaded from the app store

牧云@^-^@ 提交于 2019-12-01 00:24:00
My app crash only on after I loaded it to the app store. Some background, I have tested the app with test flight on multiple physical devices. The app doesn't crash on all devices, first install on a device works fine ( a device that never had the app). Install on a device that had the app before cause the crash on most devices I tested with. That happens even if I first removed the app from the device, and then installed it from the app store. One more thing is that on the devices the crash happened, when installing from the app store it first installed the old version and then allowed me to

Link to an app in the App Store before approved?

回眸只為那壹抹淺笑 提交于 2019-11-30 23:51:56
From what I understand, you have to use the appname when linking which is the slug that apple generates. So, for an app like like 'Guns and Weapons Encyclopedia' the slug will be 'guns-and-weapons-encyclopedia' or it can be 'guns-weapons-encyclopedia' So one doesn't know in advance what the name will be -- only after Apple approves and processes the app for the store. Is there a way to generate a reliable link before the app is approved? Thanks Yes, there is. You can use the app ID to generate the link. You get the ID when you register an app in the iTunes portal. You want a link like this:

Error Domain=SKErrorDomain Code=0 “Operation could not be completed. (SKErrorDomain error 0.)”

▼魔方 西西 提交于 2019-11-30 23:48:02
问题 I'm working with In App Purchase. I'm trying to get all my transactions from AppleStore. After request, I catch an error code: request error Error Domain=SKErrorDomain Code=0 “Operation could not be completed. (SKErrorDomain error 0.)” [[SKPaymentQueue defaultQueue] restoreCompletedTransactions]; I have not even enter my user credentials. How to fix it? Whats a problem? Anybody know? PS: I'm testing it on iPad and iPhone devices - not Simulator. Thanx! 回答1: You must logout from your iTunes

How can i make a link to update my iPhone application?

ⅰ亾dé卋堺 提交于 2019-11-30 23:36:11
i know how to make a link to my app on the appstore with this URL itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id= but i don't want the user goes on the software page but directly in the update tab what is the link to do this? is there a link to update the app ?(if an update existing) thanks Launching App Store is explained in "QA1629: Launching the App Store from an iPhone application": http://developer.apple.com/iphone/library/qa/qa2008/qa1629.html I'm not sure if it's possible to link directly to an update. I've found once an advice to replace "viewSoftware" to

iPhone 5 Optimization Requirement - Launch image really necessary?

青春壹個敷衍的年華 提交于 2019-11-30 23:10:38
When trying to upload a binary to App Store, I get the following response in an email: "iPhone 5 Optimization Requirement - Your binary is not optimized for iPhone 5. As of May 1, all new iPhone apps and app updates submitted must support the 4-inch display on iPhone 5. All apps must include a launch image of the appropriate size. Learn more about iPhone 5 support by reviewing the iOS Human Interface Guidelines." Also, the status of the app is "Illegal binary". I've read that I must include a launch image called "Default-568h@2x.png". Question is: My app was not intending to have a launch

Distribute Ipad App without app store

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-30 22:56:13
问题 Supposing the following scenario: Company A asks company B to produce an IPad App for them. Company A only wants to use it for themselves on a very limited amount of IPads (less than 100). Company A is not necessarily interested in offering it on the app store. How can company B distribute the app (sell it) to company A? It could install the App on the iPads via ad hoc provisioning profile, but this is only meant for testing and the app can't be used once the profile expires. How can B

Android PlayStore warning your app currently targets API level 25

倾然丶 夕夏残阳落幕 提交于 2019-11-30 22:51:04
问题 Warnings Your app currently targets API level 25 and must target at least API level 26 to ensure it is built on the latest APIs optimized for security and performance. From August 2018, new apps must target at least Android 8.0 (API level 26). From November 2018, app updates must target Android 8.0 (API level 26). Tip: Change your app's target API level. Learn how. I am using Cordova and Ionic 3. Just built the app using: ionic cordova build android --release-prod What should I do, ignore

App Reject By ios App Store

旧时模样 提交于 2019-11-30 22:23:03
I am using libgdx to create an ios app. I checked the sdk that is is compiling with, and it is 7.0.2. How do I fix this? 1 package(s) were not uploaded because they had problems: /var/folders/cj/t7129jm93gv3pj_wjdfjq2qm0000gn/T/834524929.itmsp - Error Messages: Apple's web service operation was not successful Unable to authenticate the package: 834524929.itmsp ERROR ITMS-9000: "This bundle is invalid. New apps and app updates submitted to the App Store must be built with public (GM) versions of Xcode 5 and iOS 7 SDK. Do not submit apps built with beta software." at SoftwareAssets/SoftwareAsset

From where to upload app binary file on App store

旧城冷巷雨未停 提交于 2019-11-30 21:02:18
问题 I have followed all the steps to upload my first application on "https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa" at last i had uploaded the Large image & Screenshots. I had not an option to upload the Binary file. Now application status is "Waiting For Upload". I am right now confuse about to upload my binary file, from where & how i can upload it? is appliacation under review? is everything ok? or I will have to do any change? Please, help me out, i am new to upload application

Updating new version to app store with different sqlite db structure

一笑奈何 提交于 2019-11-30 20:53:08
I have uploaded an app on app store (version 1.0). My app is using a sqlite database for storing some data. Now, I have made some changes in the database (I have added 2 or 3 new columns in one of the tables in my db). I want to update the previous version of my app with the new version 1.1 (which is having different db structure). Now, when the users which are already using the version 1.0 upgrade the app to version 1.1, the db is already present in app sandbox and hence, the app is pointing to version 1.1, but my db is still the old one. I want to have the new db with the old data, if any.