├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── uk │ │ └── co │ │ └── markormesher │ │ └── android_fab │ │ └── app │ │ └── DemoActivity.kt │ └── res │ ├── drawable-xhdpi │ ├── ic_add.png │ ├── ic_cloud.png │ ├── ic_done.png │ ├── ic_swap_horiz.png │ └── ic_swap_vert.png │ ├── drawable-xxhdpi │ ├── ic_add.png │ ├── ic_cloud.png │ ├── ic_done.png │ ├── ic_swap_horiz.png │ └── ic_swap_vert.png │ ├── drawable-xxxhdpi │ ├── ic_add.png │ ├── ic_cloud.png │ ├── ic_done.png │ ├── ic_swap_horiz.png │ └── ic_swap_vert.png │ ├── layout │ └── demo_activity.xml │ ├── menu │ └── demo_activity.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ └── values │ └── values.xml ├── fab ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── uk │ │ └── co │ │ └── markormesher │ │ └── android_fab │ │ ├── FloatingActionButton.kt │ │ ├── SpeedDialMenuAdapter.kt │ │ ├── SpeedDialMenuCloseListener.kt │ │ ├── SpeedDialMenuItem.kt │ │ ├── SpeedDialMenuOpenListener.kt │ │ └── extensions │ │ └── RelativeLayoutLayoutParams.kt │ └── res │ ├── drawable │ ├── content_cover_circle.xml │ ├── fab_background.xml │ └── menu_item_card_background.xml │ ├── layout-v21 │ ├── floating_action_button.xml │ └── menu_item_icon.xml │ ├── layout │ ├── fab_container.xml │ ├── floating_action_button.xml │ ├── menu_item.xml │ └── menu_item_icon.xml │ ├── values-ldrtl │ └── conditionals.xml │ ├── values-v21 │ └── button_styles.xml │ └── values │ ├── attrs.xml │ ├── button_styles.xml │ ├── conditionals.xml │ └── values.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── misc ├── demo.gif ├── play-store │ ├── feature.png │ ├── icon.png │ ├── screen-1.png │ └── screen-2.png └── proguard-mappings │ ├── build-1.txt │ ├── build-10.txt │ ├── build-11.txt │ ├── build-12.txt │ ├── build-13.txt │ ├── build-14.txt │ ├── build-15.txt │ ├── build-16.txt │ ├── build-17.txt │ ├── build-18.txt │ ├── build-19.txt │ ├── build-2.txt │ ├── build-20.txt │ ├── build-21.txt │ ├── build-22.txt │ ├── build-3.txt │ ├── build-4.txt │ ├── build-5.txt │ ├── build-6.txt │ ├── build-7.txt │ ├── build-8.txt │ └── build-9.txt ├── secrets.properties.example └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/kotlin/uk/co/markormesher/android_fab/app/DemoActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/kotlin/uk/co/markormesher/android_fab/app/DemoActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xhdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_swap_horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xhdpi/ic_swap_horiz.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_swap_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xhdpi/ic_swap_vert.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxhdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_swap_horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxhdpi/ic_swap_horiz.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_swap_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxhdpi/ic_swap_vert.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxxhdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxxhdpi/ic_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_swap_horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxxhdpi/ic_swap_horiz.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_swap_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/drawable-xxxhdpi/ic_swap_vert.png -------------------------------------------------------------------------------- /app/src/main/res/layout/demo_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/layout/demo_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/demo_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/menu/demo_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/app/src/main/res/values/values.xml -------------------------------------------------------------------------------- /fab/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /fab/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/build.gradle -------------------------------------------------------------------------------- /fab/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/proguard-rules.pro -------------------------------------------------------------------------------- /fab/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fab/src/main/kotlin/uk/co/markormesher/android_fab/FloatingActionButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/kotlin/uk/co/markormesher/android_fab/FloatingActionButton.kt -------------------------------------------------------------------------------- /fab/src/main/kotlin/uk/co/markormesher/android_fab/SpeedDialMenuAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/kotlin/uk/co/markormesher/android_fab/SpeedDialMenuAdapter.kt -------------------------------------------------------------------------------- /fab/src/main/kotlin/uk/co/markormesher/android_fab/SpeedDialMenuCloseListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/kotlin/uk/co/markormesher/android_fab/SpeedDialMenuCloseListener.kt -------------------------------------------------------------------------------- /fab/src/main/kotlin/uk/co/markormesher/android_fab/SpeedDialMenuItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/kotlin/uk/co/markormesher/android_fab/SpeedDialMenuItem.kt -------------------------------------------------------------------------------- /fab/src/main/kotlin/uk/co/markormesher/android_fab/SpeedDialMenuOpenListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/kotlin/uk/co/markormesher/android_fab/SpeedDialMenuOpenListener.kt -------------------------------------------------------------------------------- /fab/src/main/kotlin/uk/co/markormesher/android_fab/extensions/RelativeLayoutLayoutParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/kotlin/uk/co/markormesher/android_fab/extensions/RelativeLayoutLayoutParams.kt -------------------------------------------------------------------------------- /fab/src/main/res/drawable/content_cover_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/drawable/content_cover_circle.xml -------------------------------------------------------------------------------- /fab/src/main/res/drawable/fab_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/drawable/fab_background.xml -------------------------------------------------------------------------------- /fab/src/main/res/drawable/menu_item_card_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/drawable/menu_item_card_background.xml -------------------------------------------------------------------------------- /fab/src/main/res/layout-v21/floating_action_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/layout-v21/floating_action_button.xml -------------------------------------------------------------------------------- /fab/src/main/res/layout-v21/menu_item_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/layout-v21/menu_item_icon.xml -------------------------------------------------------------------------------- /fab/src/main/res/layout/fab_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/layout/fab_container.xml -------------------------------------------------------------------------------- /fab/src/main/res/layout/floating_action_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/layout/floating_action_button.xml -------------------------------------------------------------------------------- /fab/src/main/res/layout/menu_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/layout/menu_item.xml -------------------------------------------------------------------------------- /fab/src/main/res/layout/menu_item_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/layout/menu_item_icon.xml -------------------------------------------------------------------------------- /fab/src/main/res/values-ldrtl/conditionals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/values-ldrtl/conditionals.xml -------------------------------------------------------------------------------- /fab/src/main/res/values-v21/button_styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/values-v21/button_styles.xml -------------------------------------------------------------------------------- /fab/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /fab/src/main/res/values/button_styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/values/button_styles.xml -------------------------------------------------------------------------------- /fab/src/main/res/values/conditionals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/values/conditionals.xml -------------------------------------------------------------------------------- /fab/src/main/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/fab/src/main/res/values/values.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.parallel=true 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/gradlew.bat -------------------------------------------------------------------------------- /misc/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/demo.gif -------------------------------------------------------------------------------- /misc/play-store/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/play-store/feature.png -------------------------------------------------------------------------------- /misc/play-store/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/play-store/icon.png -------------------------------------------------------------------------------- /misc/play-store/screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/play-store/screen-1.png -------------------------------------------------------------------------------- /misc/play-store/screen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/play-store/screen-2.png -------------------------------------------------------------------------------- /misc/proguard-mappings/build-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-1.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-10.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-11.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-12.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-13.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-14.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-15.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-16.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-17.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-18.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-19.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-2.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-20.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-21.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-22.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-3.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-4.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-5.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-6.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-7.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-8.txt -------------------------------------------------------------------------------- /misc/proguard-mappings/build-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/misc/proguard-mappings/build-9.txt -------------------------------------------------------------------------------- /secrets.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markormesher/android-fab/HEAD/secrets.properties.example -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':fab', ':app' 2 | --------------------------------------------------------------------------------