Aucune description

Wayne Huang 9d1d80697c Merge branch '119-migrateToAndroidX' into 'master' il y a 5 ans
KMPDFSDK 8be3393f32 Upgrade SDK to 1.0.8.9 2019-08-29 androidx il y a 5 ans
libs 8be3393f32 Upgrade SDK to 1.0.8.9 2019-08-29 androidx il y a 5 ans
src 9d1d80697c Merge branch '119-migrateToAndroidX' into 'master' il y a 5 ans
.gitignore 8c3d769dac modify git ignore file il y a 6 ans
README.md e189fa399e README.md edited online with Bitbucket il y a 6 ans
build.gradle 34e22e0c53 Upgrade androidx to 1.0.2 il y a 5 ans
proguard-rules.pro 860255a133 Init il y a 6 ans
reader.iml 860255a133 Init il y a 6 ans

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!