Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 749427e8 authored by satayev's avatar satayev
Browse files

Add SharedLibraryInfo#isNative to @TestApi surface.

The method is used in ClasspathDeviceTest to filter out native .so
files, as it only cares about java classes.

Bug: 189347015
Bug: 187823488
Test: m
Change-Id: Id4d41ddef1cddbecd7f7028e28da4040cdfd5c26
parent b2198d3a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -829,6 +829,7 @@ package android.content.pm {

  public final class SharedLibraryInfo implements android.os.Parcelable {
    method @NonNull public java.util.List<java.lang.String> getAllCodePaths();
    method public boolean isNative();
  }

  public final class ShortcutInfo implements android.os.Parcelable {
+1 −0
Original line number Diff line number Diff line
@@ -147,6 +147,7 @@ public final class SharedLibraryInfo implements Parcelable {
     *
     * @hide
     */
    @TestApi
    public boolean isNative() {
        return mIsNative;
    }