mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-04 02:09:35 +02:00
Status bar is always visible on PanDigital devices; 0.98.5
This commit is contained in:
parent
5f40255737
commit
d7750b94d6
3 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.geometerplus.zlibrary.ui.android" android:versionCode="9804" android:versionName="0.98.4" android:installLocation="auto">
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.geometerplus.zlibrary.ui.android" android:versionCode="9805" android:versionName="0.98.5" android:installLocation="auto">
|
||||||
<uses-sdk android:minSdkVersion="3" />
|
<uses-sdk android:minSdkVersion="3" />
|
||||||
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />
|
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
0.98.4
|
0.98.5
|
||||||
|
|
|
@ -48,7 +48,9 @@ public class ZLAndroidApplication extends Application {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isAlwaysShowStatusBar() {
|
public boolean isAlwaysShowStatusBar() {
|
||||||
return Build.DISPLAY != null && Build.DISPLAY.contains("simenxie");
|
return
|
||||||
|
(Build.DISPLAY != null && Build.DISPLAY.contains("simenxie")) ||
|
||||||
|
"PD_Novel".equals(Build.MODEL);
|
||||||
}
|
}
|
||||||
|
|
||||||
ZLAndroidApplicationWindow myMainWindow;
|
ZLAndroidApplicationWindow myMainWindow;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue