How to add vitamo dependent to android studio

I can broadcast the video using vitamio in eclipse, but recently I switched to android studio and I want to add the vitamio library as a dependency in the gradle file. How can I do it?

+6
source share
2 answers

add

dependencies { compile 'me.neavo:vitamio:4.2.2' } 

in build.gradle module

+15
source

First add the dependency and gradle repository to build.gradle

 repositories { maven { url 'https://mvnrepository.com/artifact/me.neavo/vitamio' } } 

Depending on the repository, add the dependency as follows:

 dependencies { compile group: 'me.neavo', name: 'vitamio', version: '4.2.2' } 

Then sync the project

0
source

Source: https://habr.com/ru/post/982092/


All Articles