add config changes to MainActivity and re-instate notification manager (I think this should fix starting crash while avoiding the resizing bug)

This commit is contained in:
amwatson 2024-01-22 23:59:59 -06:00
parent 92db45eabe
commit a8482f20a5
2 changed files with 3 additions and 2 deletions

View file

@ -75,6 +75,7 @@
<activity
android:name="org.citra.citra_emu.ui.main.MainActivity"
android:configChanges="density|orientation|screenSize|keyboard|keyboardHidden|uiMode"
android:exported="true"
android:resizeableActivity="false"
android:screenOrientation="landscape"

View file

@ -65,8 +65,8 @@ public class CitraApplication extends Application {
}
NativeLibrary.LogDeviceInfo();
// TODO (amwatsonn) Disabled because this triggers a bug on Quest.
//createNotificationChannel();
createNotificationChannel();
databaseHelper = new GameDatabase(this);
}