aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 93a928c6dadbe581c893fae5c6dc6ac0c422bb3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# AntennaPod-AudioPlayer

This is the repository for library code separated from the main repository for licensing compliance.

## License

All code in this repository is licensed under the Apache License, Version 2.0. 
You can find the license text in the LICENSE file.

## Local testing

**settings.gradle**
```
...
include ':aap'
project(':aap').projectDir = new File('../AntennaPod-AudioPlayer/library')
```

**app/build.gradle** and **core/build.gradle**


Edit both ``AntennaPod/app/build.gradle`` and ``AntennaPod/core/build.gradle``
```

dependencies {
    ....
    compile project(":aap")
}