Nenhuma descrição

Wayne 2ea4ad0c43 Merge branch 'setting' 6 anos atrás
KMPDFSDK 153e12950d Add sdk files 6 anos atrás
libs 086e4b45e5 Upgrade sdk to v1.0.8.1 2019-01-15 6 anos atrás
src 2ea4ad0c43 Merge branch 'setting' 6 anos atrás
.gitignore 8c3d769dac modify git ignore file 6 anos atrás
README.md e189fa399e README.md edited online with Bitbucket 6 anos atrás
build.gradle 086e4b45e5 Upgrade sdk to v1.0.8.1 2019-01-15 6 anos atrás
proguard-rules.pro 860255a133 Init 6 anos atrás
reader.iml 860255a133 Init 6 anos atrás

README.md

How To Use

Please refer to this demo app for importing. https://bitbucket.org/kdanandroid/pdfreaderviewapp/

5 steps you have to do:

Step 1.

git submodule add https://bitbucket.org/kdanandroid/pdfreaderreadermodule.git PDFReaderReaderModule

Step 2.

setting.gradle

include ':app', ':PDFReaderReaderModule'

Step 3

app/build.gradle

dependencies {
	implementation project(':PDFReaderReaderModule')
}

repositories {
	flatDir {
		dirs 'libs', '../PDFReaderReaderModule/libs'
	}
}

Step 4.

Put libkmpdf.so files of each cpu platform(in KMPDFSDK folder) into app/src/main/jniLibs/[cpu-platform].

Step 5.

MISSION COMPLETED

For module maintainer

If you recieved the new sdk file, please update KMPDFSDK folder !!!

Good Luck 5566!