pub struct UsesNativeLibrary {
    pub name: String,
    pub required: Option<VarOrBool>,
}
Expand description

Specifies a vendor-provided shared native library that the application must be linked against.

This element tells the system to make the native library accessible for the package.

NDK libraries are by default accessible and therefore don’t require the <uses-native-library> tag.

Non-NDK native shared libraries that are provided by silicon vendors or device manufacturers are not accessible by default if the app is targeting Android 12 or higher. The libraries are accessible only when they are explicitly requested using the <uses-native-library> tag.

If the app is targeting Android 11 or lower, the <uses-native-library> tag is not required. n that case, any native shared library is accessible regardless of whether it is an NDK library.

This element also affects the installation of the application on a particular device:

Installation

If this element is present and its android:required attribute is set to true, the PackageManager framework won’t let the user install the application unless the library is present on the user’s device.

The android:required attribute is described in detail in the following section.

XML Syntax

 <uses-native-library
    android:name="string"
    android:required=["true" | "false"] />

Contained in

Introduced in

API Level S

Fields§

§name: String

The name of the library file.

§required: Option<VarOrBool>

Boolean value that indicates whether the application requires the library specified by android:name:

  • "true": The application does not function without this library. The system will not allow the application on a device that does not have the library.

  • "false": The application can use the library if present, but is designed to function without it if necessary. The system will allow the application to be installed, even if the library is not present. If you use "false", you are responsible for gracefully handling the absence of the library.

The default is "true".

Trait Implementations§

source§

impl Clone for UsesNativeLibrary

source§

fn clone(&self) -> UsesNativeLibrary

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UsesNativeLibrary

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for UsesNativeLibrary

source§

fn default() -> UsesNativeLibrary

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for UsesNativeLibrary

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq<UsesNativeLibrary> for UsesNativeLibrary

source§

fn eq(&self, other: &UsesNativeLibrary) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for UsesNativeLibrary

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl YaDeserialize for UsesNativeLibrary

source§

fn deserialize<R: Read>(reader: &mut Deserializer<R>) -> Result<Self, String>

source§

impl YaSerialize for UsesNativeLibrary

source§

fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>

source§

fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>

source§

impl Eq for UsesNativeLibrary

source§

impl StructuralEq for UsesNativeLibrary

source§

impl StructuralPartialEq for UsesNativeLibrary

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,