Commit 6bacb78c by kim-vde

Merge pull request #7595 from changxiangzhong:fix-compilation

PiperOrigin-RevId: 319954774
parents b259476a 8d8233c3
Showing with 2 additions and 1 deletions
...@@ -13,7 +13,8 @@ ...@@ -13,7 +13,8 @@
// limitations under the License. // limitations under the License.
def rootDir = gradle.ext.exoplayerRoot def rootDir = gradle.ext.exoplayerRoot
if (!gradle.ext.has('exoplayerSettingsDir')) { if (!gradle.ext.has('exoplayerSettingsDir')) {
gradle.ext.exoplayerSettingsDir = new File(rootDir).getCanonicalPath() gradle.ext.exoplayerSettingsDir =
new File(rootDir.toString()).getCanonicalPath()
} }
def modulePrefix = ':' def modulePrefix = ':'
if (gradle.ext.has('exoplayerModulePrefix')) { if (gradle.ext.has('exoplayerModulePrefix')) {
......
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