summaryrefslogtreecommitdiff
path: root/emulator
diff options
context:
space:
mode:
authorSergey Prigogin <sprigogin@google.com>2022-02-16 17:12:54 -0800
committerTreeHugger Robot <treehugger-gerrit@google.com>2022-02-17 02:23:30 +0000
commit51348a25e875c658c47deb8590d83646d69b395c (patch)
tree65173734d60de71e08b00ebb087dd6d00f030af8 /emulator
parent8d1ede907cc7f5786d2cd3c9bee614d5378348bf (diff)
downloadidea-51348a25e875c658c47deb8590d83646d69b395c.tar.gz
Fix the path of the native image_converter library
Test: existing Bug: 220022493 Change-Id: I29aa1f9361580c3f270c15d5b58bd7486c0f5676
Diffstat (limited to 'emulator')
-rw-r--r--emulator/src/com/android/emulator/ImageConverter.java2
1 files changed, 1 insertions, 1 deletions
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;
}