Skip to content

Commit

Permalink
Dependency versions bump (#20)
Browse files Browse the repository at this point in the history
Fix Readme
  • Loading branch information
koral-- authored Sep 29, 2019
1 parent 8ad7a1c commit bef183f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# FoQA

[![Maven Central](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/foqa/badge.svg)](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/foqa)
<img src="art/seal.svg" alt="Logo" width="200"/>

Container for various Quality Assurance utilities to be included in QA/testing variants of Android apps.
Expand All @@ -15,9 +16,10 @@ Add FoQA dependency to `build.gradle` of the application module:

```groovy
dependencies {
debugImplementation 'com.github.droidsonroids:foqa:0.1.4'
debugImplementation 'pl.droidsonroids.foqa:foqa:<latest version>'
}
```
Latest version number: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/foqa/badge.svg)](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/foqa)

If not already present add Maven Central repository:
```groovy
Expand Down Expand Up @@ -50,10 +52,12 @@ Shows device market name and Android version.

```groovy
dependencies {
debugImplementation 'pl.droidsonroids.foqa:deviceinfo:0.1.4'
debugImplementation 'pl.droidsonroids.foqa:deviceinfo:<latest version>'
}
```

Latest version number: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/deviceinfo/badge.svg)](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/deviceinfo)

### Font Scale plugin

Allows to quickly change system font scale in range from `0.4` to `1.6`.
Expand All @@ -65,9 +69,12 @@ System settings write prompt will appear when setting scale for the first time.

```groovy
dependencies {
debugImplementation 'pl.droidsonroids.foqa:fontscale:0.1.4'
debugImplementation 'pl.droidsonroids.foqa:fontscale:<latest version>'
}
```

Latest version number: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/fontscale/badge.svg)](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/fontscale)

### Chuck plugin

Allows to quickly launch [Chuck](https://github.com/jgilfelt/chuck).
Expand All @@ -79,10 +86,12 @@ We'll deprecate this plugin after Hyperion Chuck becomes [compatible with MavenC

```groovy
dependencies {
debugImplementation 'pl.droidsonroids.foqa:chuck:0.1.4'
debugImplementation 'pl.droidsonroids.foqa:chuck:<latest version>'
}
```

Latest version number: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/chuck/badge.svg)](https://maven-badges.herokuapp.com/maven-central/pl.droidsonroids.foqa/chuck)

## License

MIT License
[MIT License](/LICENSE)
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
compileSdk : 29,
targetSdk : 29,
kotlin : '1.3.50',
androidGradlePlugin: '3.5.0',
androidGradlePlugin: '3.6.0-alpha12',
versionsPlugin : '0.22.0',
hyperion : '0.9.27',
debugDb : '1.0.6',
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit bef183f

Please sign in to comment.