Files
koreader/platform/android/llapp_main.lua

34 lines
819 B
Lua
Raw Normal View History

local A = require("android")
A.dl.library_path = A.dl.library_path .. ":" .. A.dir .. "/libs"
local ffi = require("ffi")
local dummy = require("ffi/posix_h")
local C = ffi.C
2014-10-29 02:27:29 +08:00
-- check uri of the intent that starts this application
2019-01-06 18:13:33 +01:00
local file = A.getIntent()
if file ~= nil then
A.LOGI("intent file path " .. file)
end
2014-10-29 02:27:29 +08:00
-- run koreader patch before koreader startup
pcall(dofile, "/sdcard/koreader/patch.lua")
-- set proper permission for binaries
A.execute("chmod", "755", "./sdcv")
2016-03-13 23:42:58 +08:00
A.execute("chmod", "755", "./tar")
A.execute("chmod", "755", "./zsync")
-- set TESSDATA_PREFIX env var
C.setenv("TESSDATA_PREFIX", "/sdcard/koreader/data", 1)
-- create fake command-line arguments
if A.isDebuggable() then
arg = {"-d", file or "/sdcard"}
else
arg = {file or "/sdcard"}
end
dofile(A.dir.."/reader.lua")