Skip to content

Commit

Permalink
Describe new includeBuild method for submodule inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
hufman authored Aug 7, 2024
1 parent df7f082 commit b22a261
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions docs/developers.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,14 @@ To convert an AAIdrive checkout to use local submodule clones of these libraries
- Optionally move to a separate development branch: `git checkout -b branch_name`
- git submodule add https://github.com/BimmerGestalt/IDriveConnectKit.git
- git submodule add https://github.com/BimmerGestalt/IDriveConnectKitAndroid.git
- Change the top-level `settings.gradle` file to include these new modules:
`include ':app', ':spotify-app-remote', ':IDriveConnectKit', ':IDriveConnectKitAndroid'`
- Add to the top-level `settings.gradle` file to include these new modules:

```
include ':app', ':spotify-app-remote'
includeBuild 'IDriveConnectKit'
includeBuild 'IDriveConnectKitAndroid'
```

- Change the `app/build.gradle` file to use the modules instead of the Gradle artifacts:

```diff
Expand Down

0 comments on commit b22a261

Please sign in to comment.