pushtorefresh / storio

Reactive API for SQLiteDatabase and ContentResolver.
Apache License 2.0
2.55k stars 182 forks source link

Failed to resolve: com.pushtorefresh.storio3:sqlite:3.0.1 #902

Open baudouxbenjamin opened 5 years ago

baudouxbenjamin commented 5 years ago

It looks like the last version 3.0.1 has not been published since I got

Failed to resolve: com.pushtorefresh.storio3:sqlite:3.0.1 Failed to resolve: com.pushtorefresh.storio3:sqlite-annotations:3.0.1

when building my project.

nikitin-da commented 5 years ago

Hi @baudouxbenjamin Yes, there is an issue with gradle, gradle nexus staging plugin and travis https://github.com/gradle/gradle/issues/5711 https://github.com/Codearte/gradle-nexus-staging-plugin/issues/76 https://github.com/travis-ci/travis-ci/issues/9555

juange87 commented 5 years ago

Hi! Any update about this?

nikitin-da commented 5 years ago

Hi @juange87 ! Third party fix was published yesterday https://github.com/marcphilipp/nexus-publish-plugin I will try it here

baudouxbenjamin commented 5 years ago

Any update on this?

tatocaster commented 5 years ago

any updates?

juange87 commented 5 years ago

any updates?

luckcoolla commented 5 years ago

Any updates here?

luckcoolla commented 5 years ago

I need the androidx packages to be supported

juange87 commented 5 years ago

Finally we have come to a solution: It is faster... a refactor removing Storio (and use Room) than wait a solution for this.

It seems i'm joking, but I'm not.

We want to continue with Storio, but we can not wait more.

baudouxbenjamin commented 5 years ago

We also move away from StorIO for SQLDelight.

JeffZane commented 5 years ago

Any updates?

justokay commented 5 years ago

Any updates?

jonathanj81 commented 5 years ago

So this is abandonware now? Great.

Makalur commented 4 years ago

We have the same errors: Failed to resolve: com.pushtorefresh.storio3:sqlite:3.0.1 Failed to resolve: com.pushtorefresh.storio3:sqlite-annotations:3.0.1

Version 3.0.0 is ok, but it is not support androidx and generate old package annotations ("android.support.annotation" instead "androidx.annotation")

How we can migrate to androidx with storio?

justokay commented 4 years ago

If you like me have this great maintainable library and can not fast migrate to room, I've published the fork of 3.0.1 storio, just change kapt "com.pushtorefresh.storio3:sqlite-annotations-processor:3.0.0" to kapt "com.github.justokay.storio:storio-sqlite-annotations-processor:v3.0.5".

stari4ek commented 4 years ago

If anyone is looking for the rest of artifacts based on 3.0.1, I've updated solution from @justokay a bit: https://github.com/stari4ek/storio/releases/tag/v3.0.6

maven { url "https://jitpack.io" }
implementation 'com.github.stari4ek.storio:storio-content-resolver:v3.0.6'
implementation 'com.github.stari4ek.storio:storio-content-resolver-annotations:v3.0.6'
kapt 'com.github.stari4ek.storio:storio-content-resolver-annotations-processor:v3.0.6'