Skip to content

Commit eae749b

Browse files
committed
iOS fixes 2
1 parent 20eee37 commit eae749b

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

ios/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,15 @@ tasks.register('copyNatives'){
5757
}
5858

5959
tasks.register('deploy'){
60-
if(System.getProperty("os.name").contains("Mac")) dependsOn copyAssets
6160
dependsOn createIPA
6261
}
6362

64-
//must pack before deployment, as iOS never has the latest sprites.
65-
copyAssets.dependsOn ":tools:pack"
66-
copyAssets.dependsOn copyNatives
6763
launchIPhoneSimulator.dependsOn build
6864
launchIPadSimulator.dependsOn build
6965
launchIOSDevice.dependsOn build
7066
createIPA.dependsOn build
67+
createIPA.dependsOn copyNatives
68+
createIPA.dependsOn "tools:pack"
7169

7270
robovm{
7371
archs = "arm64"

0 commit comments

Comments
 (0)