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
|
|
|
|
2020-06-19 19:23:47 +00:00
|
|
|
local lfs = require("libs/libkoreader-lfs")
|
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
|
|
|
|
2019-10-13 23:24:46 +00:00
|
|
|
-- path to primary external storage partition
|
|
|
|
local path = android.getExternalStoragePath()
|
|
|
|
|
2015-06-15 08:46:43 +00:00
|
|
|
-- set TESSDATA_PREFIX env var
|
2019-10-13 23:24:46 +00:00
|
|
|
C.setenv("TESSDATA_PREFIX", path.."/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
|
2021-01-07 19:38:10 +00:00
|
|
|
arg = {"-d", file}
|
2019-04-17 18:04:07 +00:00
|
|
|
else
|
2021-01-07 19:38:10 +00:00
|
|
|
arg = {file}
|
2019-04-17 18:04:07 +00:00
|
|
|
end
|
|
|
|
|
2019-08-29 19:59:39 +00:00
|
|
|
dofile(android.dir.."/reader.lua")
|