<uses-library>

syntax:
<uses-library android:name="string" />
contained in:
<application>
description:
Specifies a shared library that the application must be linked against. This element tells the system to include the library's code in the class loader for the package.

All of the android packages (such as android.app, android.content, android.view, and android.widget) are in the default library that all applications are automatically linked against. However, some packages (such as maps and awt are in separate libraries that are not automatically linked. Consult the documentation for the packages you're using to determine which library contains the package code.

애플리케이션에 링크되어야 하는 공유 라이브러리를 지정한다. 이 엘리먼트는 시스템에게 패키지를 위한 클래스 로더에 라이브러리 코드를 포함할 것을 지시한다.

(android.app, android.content, android.view, 그리고 android.widget과 같은) 모든 안드로이드 패키지는 모든 애플리케이션이 자동으로 링크하는 디폴트 라이브러리안에 있다. 하지만 (맵과 awt와 같은) 몇몇 패키지는 자동으로 링크되지 않는 별도의 라이브러리에 있다. 어떤 라이브러리가 해당 패키지 코드를 포함하는 지를 결정하기 위해서 여러분이 사용하는 패키지에 대한 문서를 참고하라.

attributes:
android:name
The name of the library.
라이브러리의 이름.
introduced in:
API Level 1
↑ Go to top