Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to add vitamio dependecny on android studio

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?

like image 395
Reyjohn Avatar asked Feb 06 '15 11:02

Reyjohn


People also ask

How do you add a dependency in Gradle?

To add a dependency to your project, specify a dependency configuration such as implementation in the dependencies block of your module's build.gradle file.

How do you add a dependency to a library?

Use your library from within the same project To use your new Android library's code in another app or library module within the same project, add a project-level dependency: Navigate to File > Project Structure > Dependencies. Select the Module in which you'll use the library.

Where is dependencies file in Android Studio?

Go to File > Project structure in Android Studio. Select the app module in the Modules list on the left. Select the Dependencies tab.

How do I add a recycler view dependency?

To add a dependency on RecyclerView, you must add the Google Maven repository to your project.


1 Answers

add

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

in build.gradle of module

like image 60
Suhail Mehta Avatar answered Nov 05 '22 17:11

Suhail Mehta