From 36533dcbafd6c8dd0658de8b9eb8690efca9c366 Mon Sep 17 00:00:00 2001 From: ibaker Date: Fri, 14 May 2021 10:55:52 +0100 Subject: [PATCH] Clarify the exoplayerRoot path must be absolute in README.md#locally Issue: #8927 #minor-release PiperOrigin-RevId: 373752448 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 73f57c92a1..856f961ae9 100644 --- a/README.md +++ b/README.md @@ -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') ```