From 701ad96902fd2486823096e4cfc7f76a38d7c041 Mon Sep 17 00:00:00 2001 From: Dmitry Yunitsky Date: Wed, 27 Jan 2016 21:07:40 +0300 Subject: [PATCH] [android] Fixed typo in build.gradle. --- android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 9b7af93a38..fed21b8cc6 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -371,10 +371,10 @@ task obbPush(dependsOn: ['obbGenerate', 'obbPushMain', 'obbPushPatch']) { commandLine android.getAdbExe(), 'shell', 'rm', "${obbPath}*.obb" } tasks.create(type: Exec, name: 'obbPushMain', dependsOn: 'obbRemoveOnDevice') { - commandLine android.getAdbExe(), 'push', propObbWorldsOutput, "${obbPath}fonts.obb" + commandLine android.getAdbExe(), 'push', propObbFontsOutput, "${obbPath}fonts.obb" } tasks.create(type: Exec, name: 'obbPushPatch', dependsOn: 'obbRemoveOnDevice') { - commandLine android.getAdbExe(), 'push', propObbFontsOutput, "${obbPath}worlds.obb" + commandLine android.getAdbExe(), 'push', propObbWorldsOutput, "${obbPath}worlds.obb" } }