Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
quentin41500 committed May 31, 2016
2 parents f51df74 + 78afc0a commit 1c8bbec
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 7 deletions.
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
language: android

jdk:
- oraclejdk8

android:
components:
- tools
- platform-tools
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- extra-google-m2repository

script:
- ./gradlew clean check assemble -Dpre-dex=false

notifications:
email: false

sudo: false

cache:
directories:
- $HOME/.gradle
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Chandelier
==========
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Chandelier-blue.svg?style=true)](https://android-arsenal.com/details/1/3598) [![Maven Central](https://img.shields.io/maven-central/v/com.prolificinteractive/swipe-action-layout.svg?maxAge=2592000)](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22swipe-action-layout%22) [![Travis](https://img.shields.io/travis/prolificinteractive/swipe-action-layout.svg?maxAge=2592000)](https://travis-ci.org/prolificinteractive/swipe-action-layout)

A nice swipe layout that provides new actions with a material design look and feel.

Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
buildToolsVersion "23.0.3"

defaultConfig {
applicationId "com.prolificinteractive.chandelier"
Expand All @@ -22,9 +22,9 @@ android {
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile project(':library')
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3.1'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3.1'
Expand Down
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'signing'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
buildToolsVersion "23.0.3"

defaultConfig {
minSdkVersion 16
Expand All @@ -16,8 +16,8 @@ android {

dependencies {
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
}


Expand Down

0 comments on commit 1c8bbec

Please sign in to comment.