Skip to content Skip to sidebar Skip to footer

How To Add Library In Android Studio?

I am trying to add a 3rd party library to my project. But it keeps on giving this error: Error:(10, 0) Could not find property 'VERSION_NAME' on project ':library'. I am adding Fl

Solution 1:

as mentioned in here in the link you provided. You just simply paste this into your Build.gradle file

compile'com.getbase:floatingactionbutton:1.9.0'

If you want to learn more about android studio, check out this tutorial I made on getting started with android studio :D

Post a Comment for "How To Add Library In Android Studio?"