Commit 637c58d9 by ibaker Committed by Oliver Woodman

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

Issue: #8927

#minor-release

PiperOrigin-RevId: 373752448
parent 0318023b
Showing with 2 additions and 2 deletions
...@@ -104,10 +104,10 @@ git checkout release-v2 ...@@ -104,10 +104,10 @@ git checkout release-v2
``` ```
Next, add the following to your project's `settings.gradle` file, replacing 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
gradle.ext.exoplayerRoot = 'path/to/exoplayer' gradle.ext.exoplayerRoot = '/absolute/path/to/exoplayer'
gradle.ext.exoplayerModulePrefix = 'exoplayer-' gradle.ext.exoplayerModulePrefix = 'exoplayer-'
apply from: new File(gradle.ext.exoplayerRoot, 'core_settings.gradle') apply from: new File(gradle.ext.exoplayerRoot, 'core_settings.gradle')
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment