mirror of
https://github.com/koreader/koreader
synced 2024-11-02 15:40:16 +00:00
10e6f489d0
Don't override it by default, but honor it if present.
28 lines
676 B
Lua
28 lines
676 B
Lua
local android = require("android")
|
|
android.dl.library_path = android.dl.library_path .. ":" .. android.dir .. "/libs"
|
|
|
|
local lfs = require("libs/libkoreader-lfs")
|
|
local ffi = require("ffi")
|
|
local dummy = require("ffi/posix_h")
|
|
local C = ffi.C
|
|
|
|
-- check uri of the intent that starts this application
|
|
local file = android.getIntent()
|
|
|
|
if file ~= nil then
|
|
android.LOGI("intent file path " .. file)
|
|
end
|
|
|
|
-- path to primary external storage partition
|
|
local path = android.getExternalStoragePath()
|
|
|
|
-- create fake command-line arguments
|
|
-- luacheck: ignore 121
|
|
if android.isDebuggable() then
|
|
arg = {"-d", file}
|
|
else
|
|
arg = {file}
|
|
end
|
|
|
|
dofile(android.dir.."/reader.lua")
|