This repository was archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Invalid tag for alpha versionsΒ #2
Copy link
Copy link
Open
Description
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'
Metadata
Metadata
Assignees
Labels
No labels