bytedance / scene

Android Single Activity Framework compatible with Fragment.
Apache License 2.0
2.08k stars 199 forks source link

JCenter deprecated #64

Closed EpicDima closed 2 years ago

EpicDima commented 2 years ago

Now the library is located in JCenter, but recently it became obsolete when adding this repository to the gradle file. News: https://blog.gradle.org/jcenter-shutdown. https://docs.gradle.org/7.3.3/userguide/upgrading_version_6.html#jcenter_deprecation Please move it to maven Central.

qii commented 2 years ago

use jitpack instead

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}
    implementation 'com.github.bytedance.scene:scene:v1.2.0'
    implementation 'com.github.bytedance.scene:scene_ui:v1.2.0'
    implementation 'com.github.bytedance.scene:scene_navigation:v1.2.0'
    implementation 'com.github.bytedance.scene:scene_shared_element_animation:v1.2.0'
    implementation 'com.github.bytedance.scene:scene_ktx:v1.2.0'