Skip to content

Commit

Permalink
Merge pull request #42 from ldavin/master
Browse files Browse the repository at this point in the history
[FIXED JENKINS-25336] Fix naming of emulator images for new ABI naming format.
  • Loading branch information
orrc committed Jan 21, 2015
2 parents edfbb3d + 60c9808 commit 3ddf4b3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -150,7 +150,7 @@ private String getGeneratedAvdName() {
String platform = osVersion.getTargetName().replaceAll("[^a-zA-Z0-9._-]", "_");
String abi = "";
if (targetAbi != null && osVersion.requiresAbi()) {
abi = "_" + targetAbi.replace(' ', '-').replace('_', '-');
abi = "_" + targetAbi.replaceAll("[^a-zA-Z0-9._-]", "-");
}
String suffix = "";
if (avdNameSuffix != null) {
Expand Down

0 comments on commit 3ddf4b3

Please sign in to comment.