blob: e40e9ca4af014c090f1b8eaa008ab5a5b5858934 (
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
|
## SmartDeviceLink JavaSE
The JavaSE project is meant to allow SDL compatibility for embedded applications.
#### Dependency Managers
To compile with the latest release of SDL JavaSE, include the following in your app's `build.gradle` file,
```sh
repositories {
jcenter()
}
dependencies {
implementation 'com.smartdevicelink:sdl_java_se:4.+'
}
```
#### Manually building a JAR
If you prefer making a JAR, simply call:
```sh
gradle build
```
from within the project and a JAR should be generated in the `build/libs` folder
|