Fix Kotlin "local dependency" instructions

The previous syntax doesn't seem to work. I assume I tested it when I
wrote 2eafa570e9,
so maybe it's stopped working since? Or maybe I'm wrong and it never
worked. This syntax was originally proposed in Issue: google/ExoPlayer#6339 and
seems to work today.

PiperOrigin-RevId: 624161848
This commit is contained in:
ibaker 2024-04-12 06:46:01 -07:00 committed by Copybara-Service
parent 25e99af9e7
commit c151d13a1d

View File

@ -123,9 +123,7 @@ Next, add the following to your project's `settings.gradle.kts` file, replacing
`path/to/media` with the path to your local copy:
```kotlin
gradle.extra.apply {
set("androidxMediaModulePrefix", "media-")
}
(gradle as ExtensionAware).extra["androidxMediaModulePrefix"] = "media3-"
apply(from = file("path/to/media/core_settings.gradle"))
```