Skip to content

Commit

Permalink
Fix naming of emulator images for new targetAbis
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis Davin committed Dec 24, 2014
1 parent edfbb3d commit 60c9808
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
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 60c9808

Please sign in to comment.