Search results for

“translate scheme”

6,671 results found

Post

Replies

Boosts

Views

Activity

Reply to Any penalties for using NSAllowsArbitraryLoads?
Very well phrased question, where we likewise are keen on more information from Apple. Just like written, enabling ATS on all related networks is a monumental task, so rather than consciously or not spreading fear in their developer community about it, forcing action, they should responsible reveal their timeline and the risks involved.Apart from any alerts to users a la launching other apps via URL schemes, if/when 'NSAllowsArbitraryLoads' will be deprececated in the future is of elemental interest to iOS developers. There even might be phase before where it is still technically possible to disable ATS, but it might lead to rejections in App review.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
xcodebuild archive not "single-bundle archive"
I'm running into a wall trying to do a command line build from Xcode7. With Xcode 6.4 (and the last build I have that compiles on 6.4) I can successfully run the following commands:xcodebuild -workspace App.xcworkspace -scheme App SYMROOT=$PWD/build OBJROOT=$PWD/build archive -configuration Release -archivePath build/App.xcarchive xcodebuild -exportProvisioningProfile ... -exportArchive -exportFormat IPA -archivePath build/App.xcarchive -exportPath App.ipa CODE_SIGN_IDENTITY=...With Xcode 7β6, however, the second command fails with the following error:error: the archive at path '.../App.xcarchive' is not a single-bundle archive ** EXPORT FAILED **I've checked historical answers and verified that Skip Install is NO for all but the application. I've also recreated the scheme and created a similar sample project, verified that it exports, and copied build settings from it.Looking inside the archive the only real difference I see between the app built on 6 and the one built on 7 is that the one
1
0
2.7k
Aug ’15
Xcode 7 Beta 6 Watch simulator localization not working
I have localized my app in different languages (Xcode 7 Beta 6 and iOS9 Beta 5).It works fine within the iPhone/iPad simulator and I can edit/change the scheme or directly the language on the iPhone but for some reason it doesn't work at all when using the Watch simulator and always displays text in English (default/base).I specifically edited the Watch scheme to force another language but no luck.Any idea how to fix this so I can test the localiztion of my Watch app?
0
0
511
Aug ’15
UIPageControl voice over localization
Using voiceover on pageControl will read, for example, : Page 1 of 5.I got this for free from the frame work.If I change my language settings to some other langugae, then numbers 1, 5 get translated, but the word Page and of stays as English.Does anyone know if there is any API I can use to specify the what strings to use so that I can localized the strings?I also notice something: If I put the focus of voice over to the battery power status icon on top right coner of the screen, and set the language setting to, say Chinese, it will read the percentage of battery in Chinese, but battery power in English. Is this a framework bug that relate to my quesiton?Thank you so much for reading my post and trying to help!Pei
0
0
627
Aug ’15
ERROR ITMS-4236
Hi,We seemed to have reached an impasse with Apple support and after sending all relevent information at their request have not recieved a reply, so checking here to see if anyone can help. Thank you in advance.We are getting the following error, eventhough we have incremented the build number as required:xcode settings are:Additional notes:The team is not set in the identity settings, but we we build the project using the following commands:> xcodebuild archive -project /path/to/project/output/Take7_IOS_Release/Take7/Unity-iPhone.xcodeproj -archivePath /path/to/project/output/Take7_IOS_Release/Take7.xcarchive -scheme Unity-iPhone > xcodebuild -exportArchive -archivePath /path/to/project/output/Take7_IOS_Release/Take7.xcarchive -exportPath /path/to/project/output/Take7.ipa -exportFormat ipa -exportProvisioningProfile T7-Dist_Store This all works without giving us any code-signing identity errors
3
0
1.3k
Aug ’15
Reply to Xcode UI Testing on device
Actually managed to get it to run on device after messing around with the original target's code signing and scheme (needed the Test scheme to run in Debug mode, and removed the entitlements file from the UI Test target). Now it starts to run on the device, but doesn't get very far, before crashing with this message:2015-08-28 17:41:32.352 XCTRunner[2368:439401] The bundle “CJournalUITests” couldn’t be loaded because it is damaged or missing necessary resources. Try reinstalling the bundle.2015-08-28 17:41:32.353 XCTRunner[2368:439401] (dlopen_preflight(/var/mobile/Containers/Bundle/Application/03159F5D-D4C9-4CF6-BE67-05AFC2E9BA43/CJournalUITests-Runner.app/PlugIns/CJournalUITests.xctest/CJournalUITests): Library not loaded: @rpath/ContactsJournalDataKit.framework/ContactsJournalDataKit Referenced from: /var/mobile/Containers/Bundle/Application/03159F5D-D4C9-4CF6-BE67-05AFC2E9BA43/CJournalUITests-Runner.app/PlugIns/CJournalUITests.xctest/CJournalUITests Reason: image not found)Thanks.
Aug ’15
Reply to canOpenURL failing for system-wide URL schemes
In my experience telprompt works without being whitelisted. From your error it looks like the problem is that you're on a device that doesn't support telprompt (maybe you're on ipad or ipod?). If it's a whitelist issue you should get a proper error:-canOpenURL: failed for URL: imdb: - error: This app is not allowed to query for scheme imdb
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
Reply to Debugging Release Version
Turn on the Debug Random Issues flag (just kidding ;-).If you want to run in Release mode then just do that. Under Edit Scheme > Run change the Build Configuration to Release. Then run in the debugger like normal.If your issues don't appear when running in Release mode under the debugger but do appear in adhoc builds then you're likely in for some printf debugging.If your issues really seem to be random then how do you know that they don't occur in Debug mode? I'm not trying to argue but merely to suggest that you keep an open mind. It could be a compiler bug but it's more likely a bug revealed by the optimizer.
Aug ’15
GLKit adding "extra" translation?
I've been working an issue for the past couple of days on OpenGL-ES2. I am using almost all standard OpenGL calls, but use GLKView to manage the rendering surface. I have noticed that I am getting a translation of .5 on top of my stuff that is coming from somewhere, but not my stuff. I put my eyepoint at the origin and am using identity shaders: passing the geometry to be displayed with no transformations at all.I almost wonder if glkView is trying to hard to be my friend, and is tossing in a .5 translation so my scene is nicely centered in a normalized default bounding box. (And yes, the geometry is all original based as well).
0
0
365
Aug ’15
failed to attach to process - debuggin in simulators
So I followed the instructions for debugging simultaneously in the simulatorshttps://developer.apple.com/library/prerelease/watchos/documentation/General/Conceptual/AppleWatch2TransitionGuide/ConfiguretheXcodeProject.html#//apple_ref/doc/uid/TP40015234-CH5-SW1Building, Running, and Debugging Your New App When you create a Watch app target for watchOS 2, Xcode automatically creates the necessary build schemes to run and debug each of your app’s interfaces in the simulator. Xcode provides separate simulators for Apple Watch and iOS devices so that you can debug your Watch app and iOS app at the same time. When you build and run your Watch app, Xcode automatically launches both simulators but only begins a debugging session for your Watch app. To debug your iPhone app at the same time as your Watch app Build and run your Watch app. Select a build scheme for your iPhone app. Click Run to run your iPhone app. Xcode launches your iPhone app in the simulator and adds it to the debugging pane. I've
3
0
3.2k
Aug ’15
Reply to Application won't run GetDYLDEntryPointWithImage error
In the meantime, I've been doing this in terminal instead to much success!xcodebuild -workspace /path/to/workspace.xcworkspace -scheme YourScheme -configuration ReleaseOrWhateverYourReleaseConfigNameIs archive -archivePath OutputArchiveName.xcarchivexcodebuild -exportArchive -exportFormat APP -archivePath OutputArchiveName.xcarchive -exportPath YourAppName.app -exportSigningIdentity Developer ID Application: Your Name (Your ID)
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
Reply to Any penalties for using NSAllowsArbitraryLoads?
Very well phrased question, where we likewise are keen on more information from Apple. Just like written, enabling ATS on all related networks is a monumental task, so rather than consciously or not spreading fear in their developer community about it, forcing action, they should responsible reveal their timeline and the risks involved.Apart from any alerts to users a la launching other apps via URL schemes, if/when 'NSAllowsArbitraryLoads' will be deprececated in the future is of elemental interest to iOS developers. There even might be phase before where it is still technically possible to disable ATS, but it might lead to rejections in App review.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’15
URL scheme whitelist - submission
Hi, what is the process for providing justification for the apps outlined in our whitelist for canOpenURL. Will we need to provide this detail in iTunes Connect when we submit or elsewhere? Thanks.
Replies
0
Boosts
0
Views
924
Activity
Aug ’15
xcodebuild archive not "single-bundle archive"
I'm running into a wall trying to do a command line build from Xcode7. With Xcode 6.4 (and the last build I have that compiles on 6.4) I can successfully run the following commands:xcodebuild -workspace App.xcworkspace -scheme App SYMROOT=$PWD/build OBJROOT=$PWD/build archive -configuration Release -archivePath build/App.xcarchive xcodebuild -exportProvisioningProfile ... -exportArchive -exportFormat IPA -archivePath build/App.xcarchive -exportPath App.ipa CODE_SIGN_IDENTITY=...With Xcode 7β6, however, the second command fails with the following error:error: the archive at path '.../App.xcarchive' is not a single-bundle archive ** EXPORT FAILED **I've checked historical answers and verified that Skip Install is NO for all but the application. I've also recreated the scheme and created a similar sample project, verified that it exports, and copied build settings from it.Looking inside the archive the only real difference I see between the app built on 6 and the one built on 7 is that the one
Replies
1
Boosts
0
Views
2.7k
Activity
Aug ’15
Reply to Does passbook have custom url?
I only know about the shoebox:// url-scheme, which will open the Passbook / Wallet app.I didn't try to give a serial number in the URL in order to have that specific pass showing up.B.
Replies
Boosts
Views
Activity
Aug ’15
Xcode 7 Beta 6 Watch simulator localization not working
I have localized my app in different languages (Xcode 7 Beta 6 and iOS9 Beta 5).It works fine within the iPhone/iPad simulator and I can edit/change the scheme or directly the language on the iPhone but for some reason it doesn't work at all when using the Watch simulator and always displays text in English (default/base).I specifically edited the Watch scheme to force another language but no luck.Any idea how to fix this so I can test the localiztion of my Watch app?
Replies
0
Boosts
0
Views
511
Activity
Aug ’15
Reply to Tracking volume purchase program (VPP) downloads for free apps?
See the iTC FAQ for translation and the raw monthly financial reports for details if the new analytics/metrics don't shed light.As well, maybe one of the 3rd party report managers, such as AppAnnie, may break that out for us.
Replies
Boosts
Views
Activity
Aug ’15
UIPageControl voice over localization
Using voiceover on pageControl will read, for example, : Page 1 of 5.I got this for free from the frame work.If I change my language settings to some other langugae, then numbers 1, 5 get translated, but the word Page and of stays as English.Does anyone know if there is any API I can use to specify the what strings to use so that I can localized the strings?I also notice something: If I put the focus of voice over to the battery power status icon on top right coner of the screen, and set the language setting to, say Chinese, it will read the percentage of battery in Chinese, but battery power in English. Is this a framework bug that relate to my quesiton?Thank you so much for reading my post and trying to help!Pei
Replies
0
Boosts
0
Views
627
Activity
Aug ’15
ERROR ITMS-4236
Hi,We seemed to have reached an impasse with Apple support and after sending all relevent information at their request have not recieved a reply, so checking here to see if anyone can help. Thank you in advance.We are getting the following error, eventhough we have incremented the build number as required:xcode settings are:Additional notes:The team is not set in the identity settings, but we we build the project using the following commands:> xcodebuild archive -project /path/to/project/output/Take7_IOS_Release/Take7/Unity-iPhone.xcodeproj -archivePath /path/to/project/output/Take7_IOS_Release/Take7.xcarchive -scheme Unity-iPhone > xcodebuild -exportArchive -archivePath /path/to/project/output/Take7_IOS_Release/Take7.xcarchive -exportPath /path/to/project/output/Take7.ipa -exportFormat ipa -exportProvisioningProfile T7-Dist_Store This all works without giving us any code-signing identity errors
Replies
3
Boosts
0
Views
1.3k
Activity
Aug ’15
What is the URL Scheme for Apple Tips app?
From another mobile app or Safari, I can launch Maps using the url scheme maps://What is the URL scheme for the Apple Tips app?
Replies
1
Boosts
0
Views
395
Activity
Aug ’15
Reply to Xcode UI Testing on device
Actually managed to get it to run on device after messing around with the original target's code signing and scheme (needed the Test scheme to run in Debug mode, and removed the entitlements file from the UI Test target). Now it starts to run on the device, but doesn't get very far, before crashing with this message:2015-08-28 17:41:32.352 XCTRunner[2368:439401] The bundle “CJournalUITests” couldn’t be loaded because it is damaged or missing necessary resources. Try reinstalling the bundle.2015-08-28 17:41:32.353 XCTRunner[2368:439401] (dlopen_preflight(/var/mobile/Containers/Bundle/Application/03159F5D-D4C9-4CF6-BE67-05AFC2E9BA43/CJournalUITests-Runner.app/PlugIns/CJournalUITests.xctest/CJournalUITests): Library not loaded: @rpath/ContactsJournalDataKit.framework/ContactsJournalDataKit Referenced from: /var/mobile/Containers/Bundle/Application/03159F5D-D4C9-4CF6-BE67-05AFC2E9BA43/CJournalUITests-Runner.app/PlugIns/CJournalUITests.xctest/CJournalUITests Reason: image not found)Thanks.
Replies
Boosts
Views
Activity
Aug ’15
Reply to canOpenURL failing for system-wide URL schemes
In my experience telprompt works without being whitelisted. From your error it looks like the problem is that you're on a device that doesn't support telprompt (maybe you're on ipad or ipod?). If it's a whitelist issue you should get a proper error:-canOpenURL: failed for URL: imdb: - error: This app is not allowed to query for scheme imdb
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’15
Reply to Debugging Release Version
Turn on the Debug Random Issues flag (just kidding ;-).If you want to run in Release mode then just do that. Under Edit Scheme > Run change the Build Configuration to Release. Then run in the debugger like normal.If your issues don't appear when running in Release mode under the debugger but do appear in adhoc builds then you're likely in for some printf debugging.If your issues really seem to be random then how do you know that they don't occur in Debug mode? I'm not trying to argue but merely to suggest that you keep an open mind. It could be a compiler bug but it's more likely a bug revealed by the optimizer.
Replies
Boosts
Views
Activity
Aug ’15
GLKit adding "extra" translation?
I've been working an issue for the past couple of days on OpenGL-ES2. I am using almost all standard OpenGL calls, but use GLKView to manage the rendering surface. I have noticed that I am getting a translation of .5 on top of my stuff that is coming from somewhere, but not my stuff. I put my eyepoint at the origin and am using identity shaders: passing the geometry to be displayed with no transformations at all.I almost wonder if glkView is trying to hard to be my friend, and is tossing in a .5 translation so my scene is nicely centered in a normalized default bounding box. (And yes, the geometry is all original based as well).
Replies
0
Boosts
0
Views
365
Activity
Aug ’15
failed to attach to process - debuggin in simulators
So I followed the instructions for debugging simultaneously in the simulatorshttps://developer.apple.com/library/prerelease/watchos/documentation/General/Conceptual/AppleWatch2TransitionGuide/ConfiguretheXcodeProject.html#//apple_ref/doc/uid/TP40015234-CH5-SW1Building, Running, and Debugging Your New App When you create a Watch app target for watchOS 2, Xcode automatically creates the necessary build schemes to run and debug each of your app’s interfaces in the simulator. Xcode provides separate simulators for Apple Watch and iOS devices so that you can debug your Watch app and iOS app at the same time. When you build and run your Watch app, Xcode automatically launches both simulators but only begins a debugging session for your Watch app. To debug your iPhone app at the same time as your Watch app Build and run your Watch app. Select a build scheme for your iPhone app. Click Run to run your iPhone app. Xcode launches your iPhone app in the simulator and adds it to the debugging pane. I've
Replies
3
Boosts
0
Views
3.2k
Activity
Aug ’15
Reply to Application won't run GetDYLDEntryPointWithImage error
In the meantime, I've been doing this in terminal instead to much success!xcodebuild -workspace /path/to/workspace.xcworkspace -scheme YourScheme -configuration ReleaseOrWhateverYourReleaseConfigNameIs archive -archivePath OutputArchiveName.xcarchivexcodebuild -exportArchive -exportFormat APP -archivePath OutputArchiveName.xcarchive -exportPath YourAppName.app -exportSigningIdentity Developer ID Application: Your Name (Your ID)
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’15