mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +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.
|
||||
def rootDir = gradle.ext.exoplayerRoot
|
||||
if (!gradle.ext.has('exoplayerSettingsDir')) {
|
||||
gradle.ext.exoplayerSettingsDir = new File(rootDir).getCanonicalPath()
|
||||
gradle.ext.exoplayerSettingsDir = new File(rootDir.toString()).getCanonicalPath()
|
||||
}
|
||||
def modulePrefix = ':'
|
||||
if (gradle.ext.has('exoplayerModulePrefix')) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue