Skip to content

Commit

Permalink
Merge pull request #18 from devindi/readme
Browse files Browse the repository at this point in the history
  • Loading branch information
devindi authored Oct 24, 2019
2 parents e290dd8 + ab6fa89 commit 04eae65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Add the following to your build.gradle

```groovy
buildscript {
repositories{
jcenter()
}
dependencies{
classpath 'com.devindi:diawi-upload:1.2'
}
repositories{
jcenter()
}
dependencies{
classpath 'com.devindi:diawi-upload:1.2'
}
}
// Apply plugin after android application
Expand All @@ -28,14 +28,11 @@ apply plugin: 'diawi-upload'
|----------|:-------------:|------|----|
| `diawi.token` | String, required | diawi API access token. Token is required property. [Create new token ](https://dashboard.diawi.com/profile/api) | null|
| `diawi.output.stream` | java.io.OutputStream, optional| output stream in which result will be printed|`System.out`
| `diawi.standardOutput` |java.io.OutputStream, optional| **deprecated, use `diawi.output.stream` instead** output stream in which result will be printed|null
|`diawi.output.format`|String, optional|output format|`{file} uploaded at {date}. Diawi hash: {hash}`|
| `diawi.comment` | String, optional | additional information to your users on this build: the comment will be displayed on the installation page |null|
| `diawi.password`| String, optional| protect your app with a password: it will be required to access the installation page|null|
|`diawi.callback.emails`|list of strings, optional| the email addresses Diawi will send the result to|empty list|
|`diawi.callback.url`|String, optional|the URL Diawi should call with the result|null|
|`diawi.callbackEmail`|String, optional| **deprecated, use `diawi.callback.emails` instead** the email addresses Diawi will send the result to|null|
|`diawi.callbackUrl`|String, optional| **deprecated, use `diawi.callback.url` instead** the URL Diawi should call with the result|null|
|`diawi.wallOfApps`|boolean, optional|allow Diawi to display the app's icon on the wall of apps|null|

#### Output placeholders
Expand All @@ -53,7 +50,6 @@ apply plugin: 'diawi-upload'
```groovy
diawi {
token = 'example_token'
output.stream = System.out
comment = 'New major version'
}
```
Expand Down

This file was deleted.

0 comments on commit 04eae65

Please sign in to comment.