From 51348a25e875c658c47deb8590d83646d69b395c Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Wed, 16 Feb 2022 17:12:54 -0800 Subject: Fix the path of the native image_converter library Test: existing Bug: 220022493 Change-Id: I29aa1f9361580c3f270c15d5b58bd7486c0f5676 --- emulator/src/com/android/emulator/ImageConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'emulator') diff --git a/emulator/src/com/android/emulator/ImageConverter.java b/emulator/src/com/android/emulator/ImageConverter.java index 479982cab94..da76517a860 100644 --- a/emulator/src/com/android/emulator/ImageConverter.java +++ b/emulator/src/com/android/emulator/ImageConverter.java @@ -106,7 +106,7 @@ public class ImageConverter { String libName = getLibName(); Path homePath = Paths.get(PathManager.getHomePath()); // Installed Studio. - Path libFile = homePath.resolve("plugins/android/native").resolve(libName); + Path libFile = homePath.resolve("plugins/android/resources/native").resolve(libName); if (Files.exists(libFile)) { return libFile; } -- cgit v1.2.3