Reputation: 119
I have difficulties including the Vitamio Library in Android Studio.
How should i include it in my project?
Should i include only the Vitamio folder inside the VitamioBundle folder?
Upvotes: 3
Views: 9280
Reputation: 488
Open AS, File -> New -> Import Moudle, add "compile project(':vitamio')" in gradle dependencies
Upvotes: 1
Reputation:
In your build.gradle add
dependencies {
compile 'me.neavo:vitamio:4.2.2'
}
Upvotes: 14
Reputation: 704
If you want to refer some samples you may import vitamio-sample from the download.it may help you to understand the work flow of Vitamio
Upvotes: 0