Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Tapadoo/Alerter
Browse files Browse the repository at this point in the history
  • Loading branch information
kpmmmurphy committed Feb 20, 2017
2 parents 2494c52 + e3bb779 commit 1a7a762
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ complexity of your layouts.
A customisable Alert view is dynamically added to the Decor View of the Window, overlaying
all content.

## Gradle

```groovy
dependencies {
compile 'com.tapadoo.android:alerter:1.0.1'
}
```

# Usage

With simplicity in mind, the Alerter employs the builder pattern to facilitate easy integration
Expand Down Expand Up @@ -109,14 +117,6 @@ Alerter.create(this)

![Verbose Alert](./documentation/alert_verbose.gif)

## Gradle

```groovy
dependecies {
compile 'com.tapadoo.android:alerter:1.0.1'
}
```

## Sample

Clone this repo and check out the `app` module.
Expand Down
6 changes: 3 additions & 3 deletions alerter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ android {

//BinTray configuration - credentials stored in user's gradle.properties
bintray {
user = BINTRAY_USER
key = BINTRAY_KEY
user = hasProperty('BINTRAY_USER')? getProperty('BINTRAY_USER') : null
key = hasProperty('BINTRAY_KEY')? getProperty('BINTRAY_KEY') : null

publications = ['Alerter']

Expand Down Expand Up @@ -157,4 +157,4 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
artifacts {
archives javadocJar
archives sourcesJar
}
}

0 comments on commit 1a7a762

Please sign in to comment.