pdf2htmlEX-Android
pdf2htmlEX-Android copied to clipboard
pdf2htmlEX-Android is migrating to OpenDocument-app organization
Library is republished to MavenCentral with the new group name app.opendocument:pdf2htmlex-android:0.18.24.
com.viliussutkus89:pdf2htmlex-android:0.18.24 is also published and it includes a deprecation notice in pdf2htmlEX.java class:
/**
* @deprecated This library is now part of OpenDocument App group.
* Edit your build.gradle to depend on
* implementation("app.opendocument:pdf2htmlex-android:+")
* instead of
* implementation("com.viliussutkus89:pdf2htmlex-android:+")
*/
@Deprecated
public class pdf2htmlEX
Note to users
Users of pdf2htmlEX-Android need to update build.gradle to change
implementation("com.viliussutkus89:pdf2htmlex-android:+")
to
implementation("app.opendocument:pdf2htmlex-android:+")
It's also necessary to change imports in java files:
import com.viliussutkus89.android.pdf2htmlex.pdf2htmlEX
becomes
import app.opendocument.android.pdf2htmlex.pdf2htmlEX