Skip to content

Commit

Permalink
Use implementation over compile (nisrulz#22)
Browse files Browse the repository at this point in the history
Use implementation over compile in reference local `aar` files as below
And some re-indent
  • Loading branch information
mTwTm authored and nisrulz committed May 18, 2019
1 parent 1774c58 commit 476a24b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,13 +265,13 @@ Few handy commands you can use to interact with emulator/device, through termina

```gradle
dependencies {
compile(name:'nameOfYourAARFileWithoutExtension', ext:'aar')
}
repositories{
flatDir{
dirs 'libs'
}
}
implementation(name:'nameOfYourAARFileWithoutExtension', ext:'aar')
}
repositories {
flatDir {
dirs 'libs'
}
}
```

* **Use [Pidcat](https://github.com/JakeWharton/pidcat) for a better log reading experience**
Expand Down

0 comments on commit 476a24b

Please sign in to comment.