cancel
Showing results for 
Search instead for 
Did you mean: 

Logcat not finding App

FallenPlanet
Explorer
Hi All

We are in the final stages of an update for our title "The Manor" on the GearVR store. Unfortunately, after updating to Utilities 1.20 and Unity to 2017.2.0f3 we have a hard crash on load.

When running logcat by itself (adb logcat) we can see the app loading and crashing, but when using the VrApp tag it simply hangs on the following:
--------- beginning of crash
--------- beginning of main
--------- beginning of system

Obviously, we would like to just see the data that our app is spitting out.

Also "adb logcat > crash.log" just hangs and does nothing after the crash.

Has anyone else had a similar issue, or correct myself if im doing something wrong. I will post our manifest below as well to see if anything jumps out.

Thanks

Mark

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.fallen.affected" android:versionName="1.0" android:versionCode="1" android:installLocation="auto">
  <supports-screens android:smallScreens="true" 
                    android:normalScreens="true" 
                    android:largeScreens="true" 
                    android:xlargeScreens="true" 
                    android:anyDensity="true" />
  <application android:icon="@drawable/themanoricon" 
               android:label="@string/app_name" 
               android:debuggable="false">
    <meta-data android:name="com.samsung.android.vr.application.mode" 
               android:value="vr_only"/>
    <activity android:name="com.unity3d.player.UnityPlayerNativeActivity" 
              android:label="@string/app_name"
              android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
              android:screenOrientation="landscape" 
              android:launchMode="singleTask" 
              android:configChanges="density|keyboard|keyboardHidden|navigation|orientation|screenLayout|screenSize|uiMode" 
              android:excludeFromRecents="true"
              android:resizeableActivity="false">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER"/>
        <category android:name="android.intent.category.INFO" />
      </intent-filter>
      <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
      <meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="false" />
    </activity>
  </application>
  <uses-sdk android:minSdkVersion="21"/>
  <uses-feature android:glEsVersion="0x00030001" />
  <uses-permission android:name="android.permission.INTERNET" />
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>
Affected - The Horror Experience - DK2 Now OUT! Download on Oculus Share http://www.fallenplanetstudios.com
0 REPLIES 0