2019-08-29 19:59:39 +00:00
|
|
|
local android = require("android")
|
|
|
|
android.dl.library_path = android.dl.library_path .. ":" .. android.dir .. "/libs"
|
2014-06-01 15:53:09 +00:00
|
|
|
|
2015-06-15 08:46:43 +00:00
|
|
|
local ffi = require("ffi")
|
2019-03-29 19:12:09 +00:00
|
|
|
local dummy = require("ffi/posix_h")
|
2018-06-02 16:10:55 +00:00
|
|
|
local C = ffi.C
|
2015-06-15 08:46:43 +00:00
|
|
|
|
2014-10-28 18:27:29 +00:00
|
|
|
-- check uri of the intent that starts this application
|
2019-08-29 19:59:39 +00:00
|
|
|
local file = android.getIntent()
|
2018-12-29 19:48:19 +00:00
|
|
|
|
|
|
|
if file ~= nil then
|
2019-08-29 19:59:39 +00:00
|
|
|
android.LOGI("intent file path " .. file)
|
2018-12-29 19:48:19 +00:00
|
|
|
end
|
2014-10-28 18:27:29 +00:00
|
|
|
|
2015-03-20 02:03:17 +00:00
|
|
|
-- run koreader patch before koreader startup
|
2017-09-27 19:45:07 +00:00
|
|
|
pcall(dofile, "/sdcard/koreader/patch.lua")
|
2015-03-20 02:03:17 +00:00
|
|
|
|
2019-09-09 15:17:07 +00:00
|
|
|
-- Set proper permission for binaries.
|
|
|
|
--- @todo Take care of this on extraction instead.
|
|
|
|
-- Cf. <https://github.com/koreader/koreader/issues/5347#issuecomment-529476693>.
|
|
|
|
android.execute("chmod", "755", "./sdcv")
|
|
|
|
android.execute("chmod", "755", "./tar")
|
|
|
|
android.execute("chmod", "755", "./zsync")
|
|
|
|
|
2015-06-15 08:46:43 +00:00
|
|
|
-- set TESSDATA_PREFIX env var
|
2019-03-29 19:12:09 +00:00
|
|
|
C.setenv("TESSDATA_PREFIX", "/sdcard/koreader/data", 1)
|
2015-06-15 08:46:43 +00:00
|
|
|
|
2014-10-16 01:24:59 +00:00
|
|
|
-- create fake command-line arguments
|
2019-08-29 19:59:39 +00:00
|
|
|
-- luacheck: ignore 121
|
|
|
|
if android.isDebuggable() then
|
2019-04-17 18:04:07 +00:00
|
|
|
arg = {"-d", file or "/sdcard"}
|
|
|
|
else
|
|
|
|
arg = {file or "/sdcard"}
|
|
|
|
end
|
|
|
|
|
2019-08-29 19:59:39 +00:00
|
|
|
dofile(android.dir.."/reader.lua")
|