3

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?

strategos
  • 119
  • 1
  • 2
  • 6

3 Answers3

14

In your build.gradle add

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

Open AS, File -> New -> Import Moudle, add "compile project(':vitamio')" in gradle dependencies

Leo Lee
  • 468
  • 5
  • 16
0
  • Download Vitamio Library from here.
  • Extract the download.
  • From Android Studio-> Select File-> New-> Project-> Android-> Android Project From Existing code-> Import Vitamio from the extracted folder (it will be imported in the name of "InitActivity").
  • Then go to your Project Properties-> Android-> Library-> Add InitActivity

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

Giridharan
  • 708
  • 7
  • 16