APK 열기 비활성화 및 앱 노출 안 되는 현상
이런 경우에는 Android Manifest 의 설정이 잘못된 경우에 발생한다.
Android에는 필수 설정 파일인데 activty 태그의 설정이 잘못된 경우에 발생했다.
기본값은 다음과 같다.
<?xml version="1.0" encoding="utf-8"?>
<!-- GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unity3d.player"
xmlns:tools="http://schemas.android.com/tools">
<application>
<activity android:name="com.unity3d.player.UnityPlayerActivity"
android:theme="@style/UnityThemeSelector">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
</activity>
</application>
</manifest>
★☆☆☆☆
반응형
'개발 > Unity' 카테고리의 다른 글
Unity) InGame Debug Console Plugin 적용 (0) | 2021.04.10 |
---|---|
Unity) Android Permission 안드로이드 권한 설정 (0) | 2021.04.07 |
Unity) Object Pool <T>Pattern (0) | 2021.04.05 |
Unity) Shader Graph #2 캐릭터 스폰 효과 구현 (0) | 2021.04.05 |
Unity) 2D Tile Map 만들기 (0) | 2021.04.03 |
댓글