Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Importing Project -- FloatingActionButton cannot be found

I am attempting to import a project located at: https://github.com/lancevalour/Rise/tree/master/res

but upon attempted import, Android Studio errors out and simply notes:

* Project Rise:G:\Hard Disk Downloads\Rise-master\Rise-master\project.properties:
Library reference ..\FloatingActionButton could not be found
Path is G:\Hard Disk Downloads\Rise-master\Rise-master\..\FloatingActionButton which resolves to G:\Hard Disk Downloads\Rise-master\FloatingActionButton

How can I ensure this project is imported successfully?

like image 469
Sauron Avatar asked May 01 '26 21:05

Sauron


1 Answers

Add this line to your gradle - "build.grade" file

compile 'com.getbase:floatingactionbutton:1.9.1'

enter image description here

Hope it helps, best of luck :)

like image 58
doom4s Avatar answered May 03 '26 12:05

doom4s