Skip to content
This repository was archived by the owner on Feb 14, 2020. It is now read-only.

Commit d65e6c0

Browse files
authored
Merge pull request #38 from Jawnnypoo/master
Update README
2 parents 7751457 + 8292a45 commit d65e6c0

File tree

2 files changed

+8
-19
lines changed

2 files changed

+8
-19
lines changed

.travis.yml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
branches:
22
only:
33
- master
4+
- /^v4-\d+\.\d+\.\d+$/ # regex
45

56
language: android
67

@@ -13,22 +14,13 @@ before_install:
1314
- echo "d56f5187479451eabf01fb78af6dfcb131a6481e" > "$ANDROID_HOME/licenses/android-sdk-license"
1415

1516
script:
16-
- "./gradlew clean testDebugUnitTest jacocoTestReport --info"
17+
- ./gradlew clean testDebugUnitTest jacocoTestReport --info
1718

1819
after_success:
19-
- "./gradlew coveralls"
20-
- codecov
21-
- "./scripts/publish_snapshot.sh"
20+
- ./gradlew coveralls
21+
- codecov
2222

2323
cache:
2424
directories:
25-
- "$HOME/.gradle"
26-
- "$HOME/.m2/repository"
27-
28-
deploy:
29-
provider: script
30-
script: ./gradlew bintrayUpload
31-
skip_cleanup: true
32-
on:
33-
branch: master
34-
tags: true
25+
- $HOME/.gradle
26+
- $HOME/.m2/repository

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Parse Twitter Utils for Android
22
[![Build Status][build-status-svg]][build-status-link]
3-
[![Coverage Status][coverage-status-svg]][coverage-status-link]
43
[![License][license-svg]][license-link]
54
[![](https://jitpack.io/v/parse-community/ParseTwitterUtils-Android.svg)](https://jitpack.io/#parse-community/ParseTwitterUtils-Android)
65

@@ -29,6 +28,7 @@ dependencies {
2928
## Usage
3029
Extensive docs can be found in the [guide][guide]. The basic steps are:
3130
```java
31+
// in Application.onCreate(); or somewhere similar
3232
ParseTwitterUtils.initialize("YOUR CONSUMER KEY", "YOUR CONSUMER SECRET");
3333
```
3434
Then later, when your user taps the login button:
@@ -65,8 +65,5 @@ As of April 5, 2017, Parse, LLC has transferred this code to the parse-community
6565
[build-status-svg]: https://travis-ci.org/parse-community/ParseTwitterUtils-Android.svg?branch=master
6666
[build-status-link]: https://travis-ci.org/parse-community/ParseTwitterUtils-Android
6767

68-
[coverage-status-svg]: https://img.shields.io/codecov/c/github/parse-community/ParseTwitterUtils-Android/master.svg
69-
[coverage-status-link]: https://coveralls.io/github/parse-community/ParseTwitterUtils-Android?branch=master
70-
7168
[license-svg]: https://img.shields.io/badge/license-BSD-lightgrey.svg
72-
[license-link]: https://github.com/ParsePlatform/ParseTwitterUtils-Android/blob/master/LICENSE
69+
[license-link]: https://github.com/parse-community/ParseTwitterUtils-Android/blob/master/LICENSE

0 commit comments

Comments
 (0)