I can stream video url using vitamio in eclipse, but recently I have switched to android studio and I want to add vitamio library as a dependency in the gradle file. How can I do it?
Asked
Active
Viewed 5,564 times
2 Answers
14
add
dependencies {
compile 'me.neavo:vitamio:4.2.2'
}
in build.gradle of module

Suhail Mehta
- 5,514
- 2
- 23
- 37
-
1It says: Error:Failed to find: me.neavo:vitamio:4.2.2 – Reyjohn Feb 07 '15 at 16:21
-
http://mvnrepository.com/artifact/me.neavo/vitamio/4.2.2 please see here. if there is any problem you can report also – Suhail Mehta Feb 07 '15 at 17:53
-
@SuhailMehta yes me too get It says: Error:Failed to find: me.neavo:vitamio:4.2.2 – Qadir Hussain Jun 05 '15 at 06:14
0
First, add gradle dependency and repository to the build.gradle
repositories { maven { url
'https://mvnrepository.com/artifact/me.neavo/vitamio' } }
Under the repository add dependency as follows:
dependencies {
compile group: 'me.neavo', name: 'vitamio', version: '4.2.2'
}
Then sync the Project