stuff.mit.edu/afs/sipb/project/android/docs/guide/topics/manifest/manifest-intro.html
The AndroidManifest.xml File | Android Developers
Every application must have an AndroidManifest.xml file (with precisely that name) in its root directory. The manifest presents essential information about the application to the Android system, information the system must have before it can run any of the
stuff.mit.edu
Every application must have an AndroidManifest.xml file (with precisely that name) in its root directory. The manifest presents essential information about the application to the Android system, information the system must have before it can run any of the application's code.
모든 애플리케이션은 루트 디렉토리에 AndroidManifest.xml 파일 (정확히 해당 이름)이 있어야합니다. 매니페스트는 애플리케이션에 대한 필수 정보를 Android 시스템에 제공합니다. 애플리케이션의 코드를 실행하려면 시스템이 가져야하는 정보입니다.
필수 정보에 대한 내용은 다음과 같습니다 .
1. 자바 패키지 네임
2. 컴포넌트에 대한 기술(액티비티 ,서비스 ,컨텐트 프로파이더 ,브로드캐스트 리시버)
3. API 최소 레벨
4. 권한에 대한 정보
.
.
.
나머진 쓰면서 터득하자 ..
'프로그래밍 > 안드로이드' 카테고리의 다른 글
github에서 라이브러리 다운받아 사용할 때 노하우 (0) | 2020.09.29 |
---|---|
안드로이드(자바) 한글로 월 표시하기 . (0) | 2020.09.29 |
ConstraintLayout vs RelativeLayout (0) | 2020.09.07 |
ConstraintLayout 에서 화면 크기에 따른 높이 ,너비 주기 (0) | 2020.09.06 |
[안드로이드] Fragment에서 findViewById 에러 (0) | 2020.09.02 |