Auties00 / Cobalt

Standalone unofficial fully-featured Whatsapp Web and Mobile API for Java and Kotlin
MIT License
611 stars 179 forks source link

Auties00 apk-parser dependency not found on cobalt 0.0.4 #465

Closed juanallendexmarts closed 3 months ago

juanallendexmarts commented 3 months ago

I'm getting this error when trying to compile my project with gradle. 0.0.3 works just fine, it only pops up with 0.0.4

This new version apparently also requires "aspose-words:22.11", which I added together with the rest:

repositories {
    mavenLocal()
    maven {
        url = uri("https://repo1.maven.org/maven2/")
    }

    maven {
        url = uri("https://releases.aspose.com/java/repo/")
    }

    maven {
        url = uri("https://repo.maven.apache.org/maven2/")
    }
}

dependencies {
    ...
    // https://mvnrepository.com/artifact/com.aspose.words/aspose-words
    implementation("com.aspose:aspose-words:22.11")

    implementation("com.github.auties00:cobalt:0.0.4")
    annotationProcessor("com.github.auties00:cobalt:0.0.4")
}

image

WauHundeland commented 3 months ago

Hi. ApkParser is in @Auties00 Github. To use the repo, just add maven { url 'https://www.jitpack.io' } to your repositories.

juanallendexmarts commented 3 months ago

With that change I'm getting this error

image