facebook twitter hatena line email

Unity/実機/共通

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

The maximum number of apps for free development profiles has been reached.エラー

3つ以上開発用アプリを実機に入れるとエラーとなるので、何個か開発用アプリを削除すればよい。

プロジェクトを変更したときのファイル

AndroidのpackageNameなどは ProjectSettings/ProjectSettings.asset の applicationIdentifier に入ってる

icon変更

android

  1. BuildSettings/android/PlayerSettings/icon
  2. api26,api25,legacyをすべて変える

アプリ名変更

  1. BuildSettings/PlayerSettings/ProductNameを変更

ProjectSettings/ProjectSettings.assetのproductNameを直編集でも大丈夫

開発ビルド環境切り替え

PlayerSettingsのDevelopmentBuildにチェックをつけて、ビルドして、ビルドファイルを実行すると 環境変数のDEVELOPMENT_BUILDが、trueの挙動で実行される。

#if DEVELOPMENT_BUILD
        Debug.Log("DEVELOPMENT_BUILD on");
#else
        Debug.Log("DEVELOPMENT_BUILD off");
#endif