Loading core/java/android/app/ActivityThread.java +7 −1 Original line number Diff line number Diff line Loading @@ -119,6 +119,7 @@ import java.lang.ref.WeakReference; import java.net.InetAddress; import java.text.DateFormat; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Locale; import java.util.Map; Loading Loading @@ -814,8 +815,13 @@ public final class ActivityThread { // Tell the VMRuntime about the application, unless it is shared // inside a process. if (!sharable) { final List<String> codePaths = new ArrayList<>(); codePaths.add(appInfo.sourceDir); if (appInfo.splitSourceDirs != null) { Collections.addAll(codePaths, appInfo.splitSourceDirs); } VMRuntime.registerAppInfo(appInfo.packageName, appInfo.dataDir, appInfo.processName); codePaths.toArray(new String[codePaths.size()])); } } Loading Loading
core/java/android/app/ActivityThread.java +7 −1 Original line number Diff line number Diff line Loading @@ -119,6 +119,7 @@ import java.lang.ref.WeakReference; import java.net.InetAddress; import java.text.DateFormat; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Locale; import java.util.Map; Loading Loading @@ -814,8 +815,13 @@ public final class ActivityThread { // Tell the VMRuntime about the application, unless it is shared // inside a process. if (!sharable) { final List<String> codePaths = new ArrayList<>(); codePaths.add(appInfo.sourceDir); if (appInfo.splitSourceDirs != null) { Collections.addAll(codePaths, appInfo.splitSourceDirs); } VMRuntime.registerAppInfo(appInfo.packageName, appInfo.dataDir, appInfo.processName); codePaths.toArray(new String[codePaths.size()])); } } Loading