mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Convert rootDir to string to fix a gradle sync issue
This commit is contained in:
parent
391f9b923e
commit
8d8233c330
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@
|
||||||
// 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')) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue