Question by
GerjonKlerk · Jul 23, 2016 at 02:52 PM ·
androidunity 5xmlandroid-manifestmanifest
Daydream App Crashes on starting
I'm making a Daydream app for android but it crashes immediately. I dont know what's causing this problem. I think it has something to do with the AndroidManifest but it looks fine to me. I hope someone can help me out because it gets really annoying.
If you don't understand what daydream is : youtube.com/watch?v=rSUOIlPW37A
My Android Manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unity3d.player"
android:installLocation="preferExternal"
android:versionCode="1"
android:versionName="1.0">
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
<application
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:debuggable="true">
android:label="@string/app_name"
android:supportsRtl="true"
<activity android:name="com.unity3d.player.UnityPlayerActivity"
android:label="@string/app_name">
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
</activity>
<service
android:name=".MyDream"
android:exported="true"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:permission="android.permission.BIND_DREAM_SERVICE">
<intent-filter>
<action android:name="android.service.dreams.DreamService" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
</application>
</manifest>
Comment
Hello! Can you please try to find the stacktrace for the crash by using adb logcat and then post it here?
Your answer
Follow this Question
Related Questions
Cant save file into Android internal memory 1 Answer
Unity detect wrong androidSDK version 0 Answers
Android build problem 0 Answers
Android Unable to merge android manifest Error 1 Answer
Android recents tab color 1 Answer