Clarify the exoplayerRoot path must be absolute in README.md#locally

Issue: #8927

#minor-release

PiperOrigin-RevId: 373752448
This commit is contained in:
ibaker 2021-05-14 10:55:52 +01:00 committed by Oliver Woodman
parent 795210d7bc
commit 36533dcbaf

View File

@ -104,10 +104,10 @@ git checkout release-v2
```
Next, add the following to your project's `settings.gradle` file, replacing
`path/to/exoplayer` with the path to your local copy:
`/absolute/path/to/exoplayer` with the absolute path to your local copy:
```gradle
gradle.ext.exoplayerRoot = 'path/to/exoplayer'
gradle.ext.exoplayerRoot = '/absolute/path/to/exoplayer'
gradle.ext.exoplayerModulePrefix = 'exoplayer-'
apply from: new File(gradle.ext.exoplayerRoot, 'core_settings.gradle')
```