Как интегрировать Foxit PDF Reader в Android?
Я выполнил следующие шаги, чтобы скомпилировать библиотеку Foxit:
1) Download and install the Eclipse IDE (http://www.eclipse.org/), the Android SDK, ADT plugin for Eclipse, and the Android NDK (http://developer.android.com/sdk/index.html).
a) For Windows use, also download and install Cygwin (http://www.cygwin.com/). During Cygwin setup, make sure to include the “Devel -> make” package.
2) Download the Foxit embedded SDK Package.
3) Extract the Foxit embedded SDK Package to any directory.
4) Place the Foxit embedded SDK library and header files in fpdfemb_android/examples/demos/bin and include directory.
5) Build the NDK layer.
a) Open the Android.mk makefile in fpdfemb_android/examples/demos/demo(like “demo_view”)/jni/ in a text editor and fill in the Foxit library name in the area designated for LOCAL_LDLIBS, dropping the lib prefix:
The demo is shipped as:
LOCAL_LDLIBS +=../bin/# fill in library name here
To add downloaded libfoxit.a from step 2, fill in as:
LOCAL_LDLIBS :=../bin/libfoxit.a
If the library provide is not named “libfoxit.a” please adjust accordingly.
b) Open Cygwin (Windows), or a terminal (Linux based), and navigate to the fpdfemb_android/examples/demos/demo(like “demo_view”) directory. Run “ndk-build –B” to build the NDK/JNI layer.
Example:
me@myStation /myProjectPath/ > ndk-build –B
This assumes that the ndk directory is part of the $PATH environment variable. The command can also be qualified with the path to the NDK directory.
Но тогда я получаю эту ошибку в терминале:
Android NDK: ПРЕДУПРЕЖДЕНИЕ:jni/Android.mk:fpdfembedsdk: несистемные библиотеки в флагах компоновщика: jni /../../ bin / libfoxit.a
Android NDK: это может привести к неправильной сборке. Попробуйте использовать LOCAL_STATIC_LIBRARIES
Android NDK: или LOCAL_SHARED_LIBRARIES вместо этого, чтобы вывести список библиотечных зависимостей
Android NDK: текущий модуль
make: * Нет правила для создания цели `–B'. Стоп.
Не могли бы вы сказать мне, если есть какой-либо способ решить эту проблему?
Спасибо.
1 ответ
Я рекомендую попробовать новый MobilePDF SDK Foxit для Android, который обеспечит большую часть функциональности, которую вы уже использовали во встроенном PDF SDK, но он включает в себя пользовательский интерфейс и может быть быстро интегрирован в ваши проекты Android.
http://www.foxitsdk.com/products/mobile-pdf-sdk/
Этот SDK заменяет встроенный SDK от Foxit.