2014-06-01 15:53:09 +00:00
|
|
|
local A = require("android")
|
2014-06-03 14:35:29 +00:00
|
|
|
A.dl.library_path = A.dl.library_path .. ":" .. A.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-01-06 17:13:33 +00:00
|
|
|
local file = A.getIntent()
|
2018-12-29 19:48:19 +00:00
|
|
|
|
|
|
|
if file ~= nil then
|
|
|
|
A.LOGI("intent file path " .. file)
|
|
|
|
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-04-01 13:48:10 +00:00
|
|
|
-- set proper permission for binaries
|
2015-04-22 06:27:05 +00:00
|
|
|
A.execute("chmod", "755", "./sdcv")
|
2016-03-13 15:42:58 +00:00
|
|
|
A.execute("chmod", "755", "./tar")
|
|
|
|
A.execute("chmod", "755", "./zsync")
|
2015-04-15 12:28:32 +00:00
|
|
|
|
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-04-17 18:04:07 +00:00
|
|
|
if A.isDebuggable() then
|
|
|
|
arg = {"-d", file or "/sdcard"}
|
|
|
|
else
|
|
|
|
arg = {file or "/sdcard"}
|
|
|
|
end
|
|
|
|
|
2014-06-01 15:53:09 +00:00
|
|
|
dofile(A.dir.."/reader.lua")
|