hzy3774 / AndroidUn7zip

A simple android ndk library used to simply extract lzma 7z files.
https://github.com/hzy3774/AndroidUn7zip
Apache License 2.0
348 stars 107 forks source link

Migrate from JCenter to another maven repository #29

Closed andob closed 2 years ago

andob commented 3 years ago

Are you using JCenter to host the artifact?

Because if I remove jcenter() from repositories gradle block, the library won't be imported:

repositories {
        jcenter() //if I remove this
}

dependencies {
        implementation 'com.hzy:un7zip:1.7.1'
}

JCenter is at end of life. Please migrate if needed.

andob commented 2 years ago

one can import the artifact from JitPack.

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
   implementation 'com.github.hzy3774:AndroidP7zip:v1.7.2'
}

@hzy3774 please update documentation on README.md on how to import the library.

huzongyao commented 2 years ago

ok, thank you