[android] Fixed typo in build.gradle.

This commit is contained in:
Dmitry Yunitsky 2016-01-27 21:07:40 +03:00 committed by Sergey Yershov
parent 7db0d1aac9
commit 701ad96902

View file

@ -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"
}
}