Commit 8d8233c3 by Chang Xiangzhong

Convert rootDir to string to fix a gradle sync issue

parent 391f9b92
Showing 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')) {
......
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