[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:
Martín Fernández
2019-04-17 20:04:07 +02:00
committed by Frans de Jonge
parent 1299ae93a8
commit a69c09a275
3 changed files with 12 additions and 7 deletions

View File

@@ -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