Merge "Add SharedLibraryInfo#isNative to @TestApi surface." into sc-dev

This commit is contained in:
TreeHugger Robot
2021-06-04 12:37:02 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 0 deletions

View File

@@ -838,6 +838,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 {

View File

@@ -147,6 +147,7 @@ public final class SharedLibraryInfo implements Parcelable {
*
* @hide
*/
@TestApi
public boolean isNative() {
return mIsNative;
}