Skip to content

Commit

Permalink
Toolkit use documented - First touches.
Browse files Browse the repository at this point in the history
  • Loading branch information
milos85vasic committed Dec 17, 2023
1 parent 5cc2318 commit d8a69a0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# Android Toolkit

Commonly used set of abstractions, implementations and tools.

## How to use

- `cd` into your Android project's root and execute:

```bash
git submodule add "GIT_REPO_URL" ./Toolkit
```

- Add the following to your `settings.gradle`:

```groovy
include ':Toolkit:Core'
include ':Toolkit:Test'
include ':Toolkit:Access'
include ':Toolkit:RootTools'
include ':Toolkit:RootShell'
```

- Add the following to your `build.gradle`:

```groovy
dependencies {
implementation project(':Toolkit:Core')
implementation project(':Toolkit:Test')
implementation project(':Toolkit:Access')
implementation project(':Toolkit:RootTools')
implementation project(':Toolkit:RootShell')
}
```

That is all. You are ready to use the Toolkit!

0 comments on commit d8a69a0

Please sign in to comment.