ScummVM black screen on all dev builds for android, waited hours nothing happens. Really just want to run riven. I have done it before.
also the buildbot does not show any past versions. There is probably some index of past versions but I can't find out how to get to them, it is not sign posted form the buildbot.
Phone: Alcatel onetouch c3
please help
ScummVM dev builds
Moderator: ScummVM Team
I thought that was the unique with this issue... But I'm running my own compiled version...
In my case, the problem is in the AndroidManifest.xml as it register two activities with the MAIN filter.
This is my custom patch regarding this..
In my case, the problem is in the AndroidManifest.xml as it register two activities with the MAIN filter.
This is my custom patch regarding this..
Code: Select all
Index: dists/android/AndroidManifest.xml
===================================================================
--- dists/android/AndroidManifest.xml
+++ dists/android/AndroidManifest.xml
@@ -28,14 +28,7 @@
<category android:name="tv.ouya.intent.category.GAME"/>
</intent-filter>
</activity>
- <activity android:name=".ScummVMActivity"
- android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
- android:banner="@drawable/leanback_icon">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
- </intent-filter>
- </activity>
+
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
@ cire_07 I also experience the black screen for the dev builds. When using the stable versions 1.8.1 and the latest 1.9.0 I don't experience this black screen issue.
If digitall's fix works hopefully it can be applied to the dev builds, but why does it work for the releases, but not the dev builds?
If digitall's fix works hopefully it can be applied to the dev builds, but why does it work for the releases, but not the dev builds?