From 30c0d6db6bca582c18b06b67a42fee5c26e8c790 Mon Sep 17 00:00:00 2001 From: Heinrich Reimer Date: Fri, 24 Mar 2017 02:09:57 +0100 Subject: [PATCH 1/3] Add behavior name resource With this people can use the behavior by referencing `@string/drawer_behavior` similar to how this is done by the support library. --- drawer-behavior/src/main/res/values/strings.xml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 drawer-behavior/src/main/res/values/strings.xml diff --git a/drawer-behavior/src/main/res/values/strings.xml b/drawer-behavior/src/main/res/values/strings.xml new file mode 100644 index 0000000..74eb841 --- /dev/null +++ b/drawer-behavior/src/main/res/values/strings.xml @@ -0,0 +1,4 @@ + + + com.jakewharton.behavior.drawer.DrawerBehavior + From 395dc6e574a2110c5d98d52cf66b7b82499cb2b0 Mon Sep 17 00:00:00 2001 From: Heinrich Reimer Date: Thu, 30 Mar 2017 10:10:19 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index b50bd53..def60bc 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,12 @@ -Drawer Behavior for CoordinatorLayout -===================================== +# Drawer Behavior (for `CoordinatorLayout`) -A `CoordinatorLayout` behavior which mimics the functionality of `DrawerLayout`. - -TODO explain why - -TODO embed gif - -TODO download section +[![Build Status](https://travis-ci.org/heinrichreimer/android-drawer-behavior.svg?branch=master)](https://travis-ci.org/heinrichreimer/android-drawer-behavior) +_A `CoordinatorLayout` behavior which mimics the functionality of `DrawerLayout`._ +- **TODO:** Explain why +- **TODO:** Embed GIF +- **TODO:** Download section License ------- From 42cc021b055c5ade79fc2e65c8095aff6f70ab6b Mon Sep 17 00:00:00 2001 From: Heinrich Reimer Date: Thu, 30 Mar 2017 10:19:49 +0200 Subject: [PATCH 3/3] Create .travis.yml --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..64143d9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: android +android: + components: + - tools + - platform-tools + - build-tools-23.0.3 + - android-23 + - extra-google-google_play_services + - extra-google-m2repository + - extra-android-m2repository +jdk: +- oraclejdk8 +before_install: +- chmod +x gradlew +notifications: + slack: heinrichreimer:twzJpzYgSjWnT0QCIoMeIa7l +