ビルドエラー:Resource ‘style/BaseUnityGameActivityTheme’ not found in AndroidManifest.xml:78, (See the Console for details)の解決方法

Android

環境

UnityVer:Unity6(Beta 6000.0.0b13)
MacBookAir:M2

現象

Androidビルドを行った際に
「Resource ‘style/BaseUnityGameActivityTheme’ not found in AndroidManifest.xml:78, (See the Console for details)」が出た。

解決方法

AndroidManifest.xmlのエラーの出ている行(android:theme=”@style/BaseUnityGameActivityTheme”)を探す

<activity android:name="com.unity3d.player.UnityPlayerGameActivity" android:theme="@style/BaseUnityGameActivityTheme">

android:theme=”@style/BaseUnityGameActivityTheme”部分を消すと解決しました

<activity android:name="com.unity3d.player.UnityPlayerGameActivity">

その他のやったけど効果がなかったこと

ProjectSettingのApplication Entry PointをGameActivityに変更
-> 特に効果がなかったのでActivityに戻しました。

コメント