简体   繁体   中英

Android app not showing in home screen but only in settings

Hey there so as the title says my app launcher is not showing in the home screen but my app is in the setting -> applications.

I think the problem is the manifest. I've been reading a lot of posts but none of the solutions seem to work for me.

I'm kinda new to Android mobile build so maybe some of you could see what's wrong in my manifest: mymanifest

EDIT - I finally found what was wrong, I was using the Oculus asset which I guess made some conflicts, it worked as soon as I deleted it.

it's look like you haven't add your application package in android manifest.

<manifest package="com.unity3d.player" ... >
    <application ... >
        <activity android:name=".UnityPlayerActivity" ... >
            ...
        </activity>
    </application>
</manifest>

the application package is required for Android to identify your application. please read more in the android documentation here: https://developer.android.com/guide/topics/manifest/manifest-intro

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM