Skip to content

Commit 60dfd9b

Browse files
authored
Merge pull request #183 from airsdk/feature/handle-ios-simulator-platform-assets
Release v1.6.1
2 parents 0104556 + e10a22e commit 60dfd9b

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

client/src/com/apm/client/commands/packages/processes/InstallDeployProcess.as

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ package com.apm.client.commands.packages.processes
1515
{
1616
import com.apm.client.APM;
1717
import com.apm.client.processes.ProcessBase;
18+
import com.apm.data.common.Platform;
1819
import com.apm.data.install.InstallData;
1920
import com.apm.data.install.InstallPackageData;
2021
import com.apm.utils.DeployFileUtils;
@@ -84,10 +85,10 @@ package com.apm.client.commands.packages.processes
8485
// Check each asset directory (named after the platform) for inclusion in project
8586
for each (var assetsDir:File in ref.getDirectoryListing())
8687
{
87-
var assetsPlatform:String = assetsDir.name.toLowerCase();
88-
var assetsDeployLocation:File = deployLocation.resolvePath( assetsPlatform );
88+
var assetsPlatform:String = Platform.getPlatformFromVariant( assetsDir.name );
8989
if (APM.config.projectDefinition.shouldIncludePlatform( assetsPlatform ))
9090
{
91+
var assetsDeployLocation:File = deployLocation.resolvePath( assetsDir.name );
9192
FileUtils.copyDirectoryTo( assetsDir, assetsDeployLocation, true );
9293
}
9394
}

client/src/com/apm/data/common/Platform.as

+34
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,40 @@ package com.apm.data.common
6262
}
6363

6464

65+
/**
66+
* This helper function retrieves the platform name from a sub-platform variant.
67+
*
68+
* Variants include sub-platforms like <code>ios_simulator</code>
69+
*
70+
* @param variant The name of the sub-platform
71+
* @return
72+
*/
73+
public static function getPlatformFromVariant( variant:String ):String
74+
{
75+
var variantLowerCase:String = variant.toLowerCase();
76+
if (variantLowerCase.substr(0, Platform.IOS.length) == Platform.IOS)
77+
{
78+
return Platform.IOS;
79+
}
80+
if (variantLowerCase.substr(0, Platform.ANDROID.length) == Platform.ANDROID)
81+
{
82+
return Platform.ANDROID;
83+
}
84+
if (variantLowerCase.substr(0, Platform.WINDOWS.length) == Platform.WINDOWS)
85+
{
86+
return Platform.WINDOWS;
87+
}
88+
if (variantLowerCase.substr(0, Platform.MACOS.length) == Platform.MACOS)
89+
{
90+
return Platform.MACOS;
91+
}
92+
if (variantLowerCase.substr(0, Platform.LINUX.length) == Platform.LINUX)
93+
{
94+
return Platform.LINUX;
95+
}
96+
return variantLowerCase;
97+
}
98+
6599
public static function isKnownPlatformName( platform:String ):Boolean
66100
{
67101
switch (platform)

version.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
version_major=1
44
version_minor=6
5-
version_build=0
5+
version_build=1
66
version_preview=

0 commit comments

Comments
 (0)