I am trying to build existing project in android studio 3.2.1 and I am using
com.github.worker8:RadioGroupPlus:v1.0.1
this dependency in the project though it was working in android studio 2.1 and now when I am building it in android studio 3.2.1 it throws
Failed to resolve: com.github.worker8:RadioGroupPlus:v1.0.1
this error.
Any help is appreciated.
Asked
Active
Viewed 1,017 times
2

Zoe
- 27,060
- 21
- 118
- 148

Ragesh Pikalmunde
- 1,333
- 1
- 20
- 44
-
ok. thanks for the advice, will keep it in mind. – Ragesh Pikalmunde Mar 01 '19 at 17:56
1 Answers
5
From RadioGroupPlus Jitpack page.
Step 1. Add the JitPack repository to your build file
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.worker8:radiogroupplus:v1.0.1'
}
The difference is using radiogroupplus instead of RadioGroupPlus.

Son Truong
- 13,661
- 5
- 32
- 58