Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8d8233c3
authored
Jul 04, 2020
by
Chang Xiangzhong
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Convert rootDir to string to fix a gradle sync issue
parent
391f9b92
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
core_settings.gradle
core_settings.gradle
View file @
8d8233c3
...
@@ -13,7 +13,7 @@
...
@@ -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'
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment