mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
[Android] do not log verbose blitbuffer messages on release builds, unless specified in settings.lua. Keep debug builds as they are (#4933)
This commit is contained in:
committed by
Frans de Jonge
parent
1299ae93a8
commit
a69c09a275
@@ -12,14 +12,14 @@ local function no() return false end
|
||||
|
||||
local function canUpdateApk()
|
||||
-- disable updates on fdroid builds, since they manage their own repo.
|
||||
return (android.getFlavor() ~= "fdroid")
|
||||
return (android.prop.flavor ~= "fdroid")
|
||||
end
|
||||
|
||||
local Device = Generic:new{
|
||||
model = android.getProduct(),
|
||||
isAndroid = yes,
|
||||
model = android.prop.product,
|
||||
hasKeys = yes,
|
||||
hasDPad = no,
|
||||
isAndroid = yes,
|
||||
hasEinkScreen = function() return android.isEink() end,
|
||||
hasColorScreen = function() return not android.isEink() end,
|
||||
hasFrontlight = yes,
|
||||
@@ -141,7 +141,7 @@ function Device:retrieveNetworkInfo()
|
||||
end
|
||||
|
||||
function Device:exit()
|
||||
android.LOGI("Finishing main activity");
|
||||
android.LOGI(string.format("Stopping %s main activity", android.prop.name));
|
||||
android.lib.ANativeActivity_finish(android.app.activity)
|
||||
end
|
||||
|
||||
@@ -171,6 +171,6 @@ local function getCodename()
|
||||
end
|
||||
|
||||
android.LOGI(string.format("Android %s - %s (API %d) - flavor: %s",
|
||||
android.getVersion(), getCodename(), Device.firmware_rev, android.getFlavor()))
|
||||
android.prop.version, getCodename(), Device.firmware_rev, android.prop.flavor))
|
||||
|
||||
return Device
|
||||
|
||||
@@ -25,5 +25,10 @@ A.execute("chmod", "755", "./zsync")
|
||||
C.setenv("TESSDATA_PREFIX", "/sdcard/koreader/data", 1)
|
||||
|
||||
-- create fake command-line arguments
|
||||
arg = {"-d", file or "/sdcard"}
|
||||
if A.isDebuggable() then
|
||||
arg = {"-d", file or "/sdcard"}
|
||||
else
|
||||
arg = {file or "/sdcard"}
|
||||
end
|
||||
|
||||
dofile(A.dir.."/reader.lua")
|
||||
|
||||
Submodule platform/android/luajit-launcher updated: cdd4bd6a2e...d33fd5209e
Reference in New Issue
Block a user