Rapid Floating Action Button in Android 2016

Getting the RFAB library to work in Android studio as of March 2016 Hi, this a quick update for any others like me who are trying to get this library up and running in Android Studio. Step 1 Open your build.gradle for your app (Not the project!). At the bottom of the file there should be the dependencies section, in this section insert the following entries: compile 'com.android.support:appcompat-v7:23.2.1' compile 'com.android.support:design:23.2.1' compile 'com.nineoldandroids:library:2.4.0' compile 'com.github.wangjiegulu:AndroidBucket:1.0.4' compile 'com.github.wangjiegulu:RapidFloatingActionButton:1.0.3' After these are added gradle will inform you that its configuration is out of sync, choose the option to sync the configuration and gradle will automatically setup the required dependencies for you. ...

March 29, 2016 · 2 min · Ben V. Brown