pdf2htmlEX-Android icon indicating copy to clipboard operation
pdf2htmlEX-Android copied to clipboard

pdf2htmlEX-Android is migrating to OpenDocument-app organization

Open ViliusSutkus89 opened this issue 2 years ago • 0 comments

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

ViliusSutkus89 avatar Jan 06 '24 09:01 ViliusSutkus89