Skip to content
This repository has been archived by the owner on Jul 10, 2020. It is now read-only.

Commit

Permalink
Update libraries and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Jul 28, 2017
1 parent c254a95 commit 40acb41
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 26 deletions.
15 changes: 4 additions & 11 deletions .gitignore
Expand Up @@ -76,22 +76,15 @@ proguard/
#############################################################################

!/.idea/copyright
/.idea/dictionaries
/.idea/libraries
/.idea/markdown-navigator
/.idea/*.xml
#gradle.properties
*.iml
=======
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
/projectFilesBackup
/reports
/report
reports
report
.report
.reports
/report
7 changes: 0 additions & 7 deletions .idea/dictionaries/jahir.xml

This file was deleted.

14 changes: 10 additions & 4 deletions .travis.yml
Expand Up @@ -4,19 +4,21 @@ android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
# - platform-tools
- platform-tools
- tools

# The BuildTools version used by your project
- build-tools-26.0.0
- build-tools-26.0.1

# The SDK version used to compile your project
- android-26

# Additional components
- extra-android-support
- extra-google-m2repository
- extra-android-m2repository

licenses:
- '.+'
jdk:
- oraclejdk8

Expand All @@ -27,7 +29,11 @@ branches:
- gh-pages

notifications:
email: true
email: false
slack:
rooms: jahirfiquitiva:w8qaFnNhW1jUcyryDYvAHgYK
template:
- "Build <%{build_url}|#%{build_number}> (<%{compare_url}|%{commit}: '%{commit_subject}'>) by %{author} for %{repository_name}@%{branch}, %{result} in %{duration}. <%{build_url}|Check details>."
sudo: false
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -162,7 +162,7 @@ menu.addButton(toAdd);

1. FABsMenuLayout attributes:
* `fabs_menu_overlayColor` --> Set the menu overlay color (Defaults to `#4d000000`)
* `fabs_menu_cickableOverlay` --> Specify whether the overlay is clickable or not (Defaults to `true`)
* `fabs_menu_clickableOverlay` --> Specify whether the overlay is clickable or not (Defaults to `true`)

2. FABsMenu attributes
* `fab_menuMargins` --> The margins of the menu (Defaults to `16dp`)
Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Expand Up @@ -22,7 +22,7 @@ ext.versions = [
minSdk : 16,
targetSdk : 26,
compileSdk : 26,
buildTools : '26.0.0',
buildTools : '26.0.1',
versionCode : 103,
versionName : '1.0.3',
gradlePlugin : '2.3.3',
Expand Down
Expand Up @@ -56,7 +56,7 @@ private void init(Context context, AttributeSet attrs) {
R.styleable.FABsMenuLayout, 0, 0);
overlayColor = a.getColor(R.styleable.FABsMenuLayout_fabs_menu_overlayColor,
Color.parseColor("#4d000000"));
clickableOverlay = a.getBoolean(R.styleable.FABsMenuLayout_fabs_menu_cickableOverlay,
clickableOverlay = a.getBoolean(R.styleable.FABsMenuLayout_fabs_menu_clickableOverlay,
true);
a.recycle();

Expand Down
2 changes: 1 addition & 1 deletion library/src/main/res/values/attrs.xml
Expand Up @@ -18,7 +18,7 @@
<resources>
<declare-styleable name="FABsMenuLayout">
<attr name="fabs_menu_overlayColor" format="color"/>
<attr name="fabs_menu_cickableOverlay" format="boolean"/>
<attr name="fabs_menu_clickableOverlay" format="boolean"/>
</declare-styleable>

<declare-styleable name="TitleFAB">
Expand Down

0 comments on commit 40acb41

Please sign in to comment.