「Unity/実機/iOS」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→This iPhone 6 is running iOS 11.4.1 (15G77), which may not be supported by this version of Xcode.エラー) |
(→'autorelease' is unavailable: not available in automatic reference counting modeエラーとなるとき") |
||
行55: | 行55: | ||
参考:https://qiita.com/_CHUBURA/items/ffd280e50ed623989045 | 参考:https://qiita.com/_CHUBURA/items/ffd280e50ed623989045 | ||
− | =='autorelease' is unavailable: not available in automatic reference counting | + | =="'autorelease' is unavailable: not available in automatic reference counting mode"エラーとなるとき== |
target/BuildPhases/CopileSourcesの適用したいフィアルを選択して、以下をいれる。 | target/BuildPhases/CopileSourcesの適用したいフィアルを選択して、以下をいれる。 | ||
-fno-objc-arc | -fno-objc-arc | ||
参考:https://blog.77jp.net/automaticreferencecountingarc%E3%81%A7arc%E9%9D%9E%E5%AF%BE%E5%BF%9C%E3%81%AE%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%E3%81%AE%E5%88%A9%E7%94%A8%E6%96%B9%E6%B3%95-ios-%E9%80%86%E5%BC%95 | 参考:https://blog.77jp.net/automaticreferencecountingarc%E3%81%A7arc%E9%9D%9E%E5%AF%BE%E5%BF%9C%E3%81%AE%E3%83%A2%E3%82%B8%E3%83%A5%E3%83%BC%E3%83%AB%E3%81%AE%E5%88%A9%E7%94%A8%E6%96%B9%E6%B3%95-ios-%E9%80%86%E5%BC%95 |
2019年11月25日 (月) 15:57時点における版
目次
- 1 iOS実機で動かす
- 2 No `Podfile' found in the project directory.エラー
- 3 Consider adding the following to ~/.profile: エラーの場合
- 4 After the failure, "pod repo update" was executed and succeeded. "pod install" was then attempted again, and still failed. エラーの場合
- 5 Bundle Identifier has not been set up correctly
- 6 Code Signing Error: Signing for "Unity-iPhone" requires a development team. Select a development team in the project editor.
- 7 Verify the Developer App certificate for your account is trusted on your device. Open Settings on and navigate to General -> Device Management, then select your Developer App certificate to trust it.
- 8 This iPhone 6 is running iOS 11.4.1 (15G77), which may not be supported by this version of Xcode.エラー
- 9 "'autorelease' is unavailable: not available in automatic reference counting mode"エラーとなるとき
iOS実機で動かす
- File/BuildSettingsを選択
- iOSを選択
- OpenDownloadPageからプレイヤーをDL
- Edit/ProjectSetting/Playerを選択しPlayerSettingsを開く
- Inspector/端末マークタブ選択/OtherSetting
- Bundle Identifierの"com.company.ProjectName"を適宜変更する(デフォから変えないとbuild時にエラーとなる)
- File/BuildSettingsからbuildボタンを押しiPhone用のxcodeプロジェクトDir一式を作成する
- あとはxcodeプロジェクトを実機で動作させる方法と同じ
- 最新xcodeを起動する
- 縦向き・横向きで確認する
No `Podfile' found in the project directory.エラー
cocoapodsが入ってるか確認。
$ sudo gem update --system $ sudo gem install cocoapods $ pod setup > Setup completed
Consider adding the following to ~/.profile: エラーの場合
デフォだとja_JP.UTF-8になるっぽいのでutf8に変更してあげる
$ vi ~/.profile export LANG=en_US.UTF-8 $ source ~/.profile $ echo $LANG en_US.UTF-8
After the failure, "pod repo update" was executed and succeeded. "pod install" was then attempted again, and still failed. エラーの場合
xcodeのプロジェクトのdirに入って以下実行
$ pod repo update $ pod install
Bundle Identifier has not been set up correctly
- 上記のBundle Identifierがデフォルトの"com.company.ProjectName"だと起こるエラー。適宜変更する
Code Signing Error: Signing for "Unity-iPhone" requires a development team. Select a development team in the project editor.
- xcodeのgeneralのteamが選択されてない
- 実機の設定/一般/デバイス管理/アプリを許可する
This iPhone 6 is running iOS 11.4.1 (15G77), which may not be supported by this version of Xcode.エラー
- 開発端末のxcodeの中身を確認する
$ cd ~/Library/Developer/Xcode/iOS\ DeviceSupport/ $ ls 10.0.2 (14A456) 10.3.1 (14E304)
もしくは
$ cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport $ ls 10.0 10.1 10.2
- https://github.com/iGhibli/iOS-DeviceSupport/tree/master/DeviceSupport から
- 上記どちか存在するDIRに11.4.1をいれてビルド、もしくはxcode再起動すれば良い。
- 11.4 (15F79) と 11.4 を入れたら動いた。
参考:https://qiita.com/_CHUBURA/items/ffd280e50ed623989045
target/BuildPhases/CopileSourcesの適用したいフィアルを選択して、以下をいれる。
-fno-objc-arc