app-store

Xcode error when uploading to App Store: “No suitable application records were found”

▼魔方 西西 提交于 2019-11-27 03:42:27
I'm using Ionic to build an html app for iOS. I've registered an app on iTunes Connect. All goes well in Xcode until I upload to the App Store. I get the following error: iTunes Store operation failed. No suitable application records were found. Verify your bundle identifier 'com.iconicframework.app315125' is correct. I suspect you should not be calling your app "com.ionicframework.app315125". That looks like a leftover name from an example project. You need to create a new Bundle Identifier in the Developer portal: Then choose it when you "Create New App" in iTunesConnect: For me, I'd pick

Detect TestFlight?

*爱你&永不变心* 提交于 2019-11-27 03:19:58
问题 I would prefer to use the same build configuration for TestFlight vs. App Store. Is there a way to detect at runtime whether the app has been installed via TestFlight or the App Store? (My thinking is I'll only call takeOff if it's not installed via the App Store.) I want to avoid using TestFlight in App Store builds to protect my users' privacy, and also to avoid the potential derailing of networking discussed here. 回答1: I believe this to be close enough to a duplicate of Check if iOS app is

How to track marketing efforts for iPhone apps on the App Store?

空扰寡人 提交于 2019-11-27 02:57:53
问题 Is there a way to track marketing campaigns in the app store to find out what works and what doesn't, so you can determine which marketing techniques are actually working? 回答1: You can sign yourself up as a referrer (or seven), so that you can see which links result in the most sales http://losingfight.com/blog/2010/04/09/tracking-iphone-ads-to-app-sales/ 回答2: I was trying out different messages and promotions on different sites, and using bit.ly to make the links and linkshare to track

Invalid iPhone Application Binary

落花浮王杯 提交于 2019-11-27 02:55:49
I'm trying to upload an application to the iPhone App Store, but I get this error message from iTunes Connect: The binary you uploaded was invalid. The signature was invalid, or it was not signed with an Apple submission certificate. Note: The details of original question have been removed, as this page has turned into a repository for all information about possible causes of that particular error message. For general information on submitting iPhone applications to the App Store, see Steps to upload an iPhone application to the AppStore . Mark Bessey It's been my experience that Xcode

Which open source licenses are compatible with the Apple's iPhone and its official App Store ? [closed]

六月ゝ 毕业季﹏ 提交于 2019-11-27 02:53:48
I'm writing an iPhone app, and I would like to use a 3rd party library for part of its functionality. I intend on selling it through the App Store and my code will not be open sourced. Which open source licenses allow to make derivate works and publish them under apple's own conditions ? In Short/TL;DR: The LGPL and application stores have a few incompatibilities which means that you do not have the rights to distribute LGPL code on DRM-enabled AppStores or locked devices. It is best if you look for alternative implementations of the library under other laxer licenses like the Apache 2 License

How can I link to my app in the App Store (iTunes)?

点点圈 提交于 2019-11-27 02:32:38
I want to have a feature in my app where the user can send an email to a friend with the iTunes URL to my application. How is it possible? Thanks. Rather than the long and confusing urls that you usually see, you can create App Store links that are much simpler and more logical. The iTunes Store has a hidden URL format that’s much more logical. Depending on what you’re linking to, you just need to build a URL in one of these formats: Artist’s name or App Store developer’s name: http://itunes.com/Artist_Or_Developer_Name Album name: http://itunes.com/Artist_Name/Album_Name Apps: http://itunes

Restricting app installations from AppStore only to users with iPhone 5/5s/5c

半世苍凉 提交于 2019-11-27 02:09:16
Will adding to the UIRequiredDeviceCapabilities "armv7s" and "armv8" restrict users to install my app from AppStore on devices other than iPhone 5/5s/5c? I have found these articles very useful: UIRequiredDeviceCapabilities and Device Compatibility Matrix (is there any up-to-date info from Apple about device capabilities?) List of iOS devices I've also searched all over SO and there was no full/correct answer to my question. Maybe except this one: Limit the app working on iPhone5 only? , but it should(?) work only for iPhone 5 and iPhone 5C, not iPhone 5S. AndrewShmig I have found this

Procedure to submit iPhone application to App Store? [closed]

不问归期 提交于 2019-11-27 01:54:36
Is it necessary to pay $99 before I can watch the video to submit an iPhone application to the App Store, or it is available free of cost anywhere? Stephen Darlington You can join the developer program and watch the video without paying. It's on Video → App Store and Distribution after you've logged in: https://developer.apple.com/videos/app-store-and-distribution/ You may also read: https://developer.apple.com/ios/submit/ What you can't do without putting down your $99 is get your application on an iPhone or iPod touch (and that includes your own). I assume you are referring to the $99 fee to

How to resolve app validation “The app references non-public selectors in Payload/MyApp.app/MyApp: _setAlwaysRunsAtForegroundPriority:”?

丶灬走出姿态 提交于 2019-11-27 01:49:35
问题 Just days ago I successfully upload Ionic app to Apple Store, and on this day I am receiving validation warning: The app references non-public selectors in Payload/something.app/something: _setAlwaysRunsAtForegroundPriority: While I was unable to resolve, I was able to upload app to App Store. Does anyone know where it is documented or have any insights on how to resolve? Thanks. 回答1: Expanding on @Véger Lóránd answer: The bug was re-introduced in the 4.1.1 version. Installing the latest

Raising minimum iOS Deployment Target Version for App Update

时光怂恿深爱的人放手 提交于 2019-11-27 01:32:50
问题 Let's say we have an application with a deployment target set to 3.0 and we want to raise the deployment target to 3.2. Normally, the App Store won't let the App be installed on devices with an IOS version less then this, but what about devices which already had the App installed prior to the update? Will they see the update but won't be able to install, will they just not see the update or, heavens forbid, will be able to install and the app just won't start? I searched everywhere for this,