bundle-identifier
iOS8 extension needs own provisioning profile?
It would seem that Xcode would prefer it that way, however there’s nothing stopping you from using a wildcard profile until you want to do an Adhoc or Release to the App Store. More to the point of your question though, for every target that you have, you need a profile and bundle ID. So … Read more
iOS extensions with multiple targets
To share one widget with others targets, you only need to add widget.appex target to Embedded Binaries for every parent target in General configuration tab Then you’ll get Embed App Extensions area at Build Phases automatically
How to get bundle id in flutter
To find the project name manually, you can look in AndroidManifest.xml or in Info.plist. Android In Android the package name is in the AndroidManifest: <manifest xmlns:android=”http://schemas.android.com/apk/res/android” … package=”com.example.appname”> iOS In iOS the package name is the bundle identifier in Info.plist: <key>CFBundleIdentifier</key> <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> which is found in Runner.xcodeproj/project.pbxproj: PRODUCT_BUNDLE_IDENTIFIER = com.example.appname; See also How to change … Read more
WatchKit Extension bundle identifiers
You have to be careful when changing the bundle identifiers, and here’s how they should be set (you need to change each identifier in the Info.plist for the iPhone app, for the Watchkit Extension and for the Watchkit App): iPhone Application Info.plist: Set any bundle identifier as you like (the “Bundle identifier” property). Example: Bundle … Read more
Install claimed to have succeeded, but application could not be found on device
I ran into the same issue while testing a Cordova app on iOS 13 via XCode 11 Beta 4. Building via the legacy system solved it (File > Workspace Settings… > Build System > Legacy Build System). Hope it helps
Obtain bundle identifier programmatically in Swift?
Try this: let bundleID = NSBundle.mainBundle().bundleIdentifier Swift 3+: let bundleID = Bundle.main.bundleIdentifier