Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invalid tag for alpha versions #2

Open
x1unix opened this issue Aug 14, 2022 · 0 comments
Open

Invalid tag for alpha versions #2

x1unix opened this issue Aug 14, 2022 · 0 comments

Comments

@x1unix
Copy link

x1unix commented Aug 14, 2022

Hello. I've wanted to use an alpha version of the library and added the dependency but get this error on Gradle sync.

Could not find com.github.MicroRJ:android_superellipse:v3.0.2-alpha

The problem remains with all tags starting with v suffix. Old stable version works like charm.

Please fix tags for alpha versions 🙏

Importing a repo

In recent Android Studio versions Gradle files layout was changed so old allprojects section will not work.

I had to add JitPack repo in settings.gradle file because recently Android Studio changed file for repos definition.

My settings.gradle:

import org.gradle.api.initialization.resolve.RepositoriesMode

pluginManagement {
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}
rootProject.name = "Springboard"
include ':app'
@x1unix x1unix changed the title Impossible to import the library Invalid tag for alpha versions Aug 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant