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

Commit 89d3f2f3 authored by Alex Buynytskyy's avatar Alex Buynytskyy
Browse files

Add SDK to the IntDef

Bug: 210622326
Fixes: 210622326
Test: presubmit
Change-Id: Ib1910f18e03fa21a9c3b431c2d3e496744ae0a13
parent 2c4875b2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -34,9 +34,10 @@ import java.util.Objects;

/**
 * This class provides information for a shared library. There are
 * three types of shared libraries: builtin - non-updatable part of
 * four types of shared libraries: builtin - non-updatable part of
 * the OS; dynamic - updatable backwards-compatible dynamically linked;
 * static - non backwards-compatible emulating static linking.
 * static - non backwards-compatible emulating static linking;
 * SDK - updatable backwards-incompatible dynamically loaded.
 */
public final class SharedLibraryInfo implements Parcelable {

@@ -45,6 +46,7 @@ public final class SharedLibraryInfo implements Parcelable {
            TYPE_BUILTIN,
            TYPE_DYNAMIC,
            TYPE_STATIC,
            TYPE_SDK,
    })
    @Retention(RetentionPolicy.SOURCE)
    @interface Type{}