app-store

Localized app description does not appear on the App Store

五迷三道 提交于 2019-11-29 13:20:31
问题 I have a new iPhone app up on the App Store. This app has been fully localized into English and German. German is the native language of this app. I added the English App Store description, added localized screenshots (and entered an English name for this app) in iTunes Connect ("Manage Localizations" - "Add Localization") Unfortunately this translation does not appear on the App Store. Even in the UK and US App Store, there's always the German version of the app description. This is not my

Cannot update .geojson file for app submission on App Store

一世执手 提交于 2019-11-29 12:44:45
My GeoJSON file is supposed to cover the entire world. Here is the GeoJSON file: { "type": "MultiPolygon", "coordinates": [ [[[-169.4,58.8], [-168.0,83.4], [188.4,83.3], [194.0,-72.8], [-166.6,-73.6], [-169.4,58.8]]] ] } The name of the file is example.GeoJSON . I keep getting the following error when uploading the file: Your routing app coverage file is invalid. For more information see the Developer Guide. What is wrong with the above file? My app has a mapkit that shows the annotation of a particular place depending on the place that is chosen. When tapping the map in the app, Apple Maps

Combine two iOS apps into one

眉间皱痕 提交于 2019-11-29 11:39:28
I have a situation where two separate companies wish to 'join' their iOS apps together to form a single app (so that only one App store download is required). The apps have entirely separate code-bases. The companies are looking to partner together but they don't really want one another seeing each others code. A degree of fiddling with the code would be acceptable. Is there any way to 'package' the code-bases or binaries so that app 1 could be incorporated into app2 without the app2 developers having access to the app 1 code base? Thanks Sure, make one (or both) of the apps into libaries or

Launching App Store from App in Swift

半腔热情 提交于 2019-11-29 11:18:02
问题 I am creating an app, and I have a banner which promotes my other app. This is my code: var barsButton : UIButton = UIButton(frame: CGRectMake((self.view.bounds.width / 2) - 51, self.view.bounds.height - 100, 102, 30)) barsButton.setImage(UIImage(named: "Bars Icon 2.png"), forState: .Normal) barsButton.addTarget(self, action: "openBarsLink", forControlEvents: UIControlEvents.TouchUpInside) func openBarsLink() { var barsLink : String = "itms-apps:https://itunes.apple.com/app/bars/id706081574

How we know if our app uninstalled from iphone? [closed]

我怕爱的太早我们不能终老 提交于 2019-11-29 11:03:09
I want to know the date if suppose our app uninstalled from iphone? Edwin Iskandar As others have already answered - you can't. However, if you have push notifications enabled in your app, you can get a very rough idea by using APN feedback service to see which apn tokens have been removed (assumed uninstall). There is more info in this SO post: "Push notification" - feedback, uninstall application Again, this should only be used to give a very ~rough idea on your uninstalls since the user may opt out of push notifications or the user's token changes for whatever reason. There are a few tools

iOS Frameworks with x86 Slice for Simulator + Appstore Approval

走远了吗. 提交于 2019-11-29 10:40:19
问题 I am building and distributing an iOS Framework library for consumption by other developers. Recently I ran into a bug (feature?) of the Apple Store whereby if an iOS Framework is built with the x86 Architecture (for the simulator) then the entire app fails App Store approval with the error: [Transporter Error Output]: ERROR ITMS-90087: "Unsupported Architectures. The executable for blah.app/Frameworks/MyLib.framework contains unsupported architectures '[x86_64, i386]'." What is the best

Distribute Ipad App without app store

混江龙づ霸主 提交于 2019-11-29 09:27:16
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 legally install this app on the iPads without the app expiring after one year? When using the app store, is

update an app which is pending developer release

佐手、 提交于 2019-11-29 09:22:59
I have an app which is in pending developer release (approved by Apple). The app was never released at all. Now I wanted to submit an update. Therefore I increased the CFBundleVersion , but he complained. So I increased the CFBundleShortVersionString too. In iTunes Connect I can see under pre-releases my new submission. But in the versions view I see the old release. So how can I approve the update? It would be nice if I could manage the time of the release by myself. So that it stays in pending for developer release. What are my options? Should I reject the binary? What version/build numbers

Application not in the App Store Search

为君一笑 提交于 2019-11-29 09:14:28
I just got an Email this morning saying my Application (Fuel+) is Ready for Sale. So I "Rushed" to my iPhone and typed Fuel+ in the App Store Search to not find my Application not there. Why is my App in iTunes Connect Preview but not in the App Store Search Menu. (This is my first App in the App Store.) It takes a while (less than a day) for the App Store to index your application in the search engine. Also, app listings on the app store are ranked based on popularity (number of downloads, number of ratings, etc.) Seeing that you are using a very common term "fuel" in your app name, and that

App Store - Method Swizzling Legality [closed]

心已入冬 提交于 2019-11-29 09:08:45
Is there any current information on wether or not method swizzling is legal/illegal on the App Store? The only data point I can find is the Three20 framework shakeup a while back, which started with this notice: Your application, xxx, currently posted to the App Store is using method_exchangeImplementations to exchange the implementation of Apple provided APIs with your own implementations. Because of upcoming changes, this behavior in your application may cause a crash or cause user data loss on iPhone OS 4.0. xxx uses method_exchangeImplementations to exchange the implementation of dealloc