I need to lauch iOS Simulator that uses specific language using command line. So I found that I can use
instruments -w
and i
To run your app must be installed and located (if not, will open default language)
Use this command to run your app with some language
xcrun simctl launch -AppleLanguages "(pt-BR)"
Sample:
xcodebuild -sdk iphonesimulator8.4 -arch i386 install DSTROOT=SomeFolder
xcrun instruments -w "iPhone 6 (8.4 Simulator)"
xcrun simctl install booted SomeFolder/Applications/YourApp.app
xcrun simctl launch booted com.yourdomain.yourapp -AppleLanguages "(pt-BR)"