1. 주로 권한 관련된 지정 가능
2. 액티비티, 서비스, 리시버 등을 지정 가능
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.daims.mysmsrecievertest" >
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher" <!-- icon 지정 -->
android:label="@string/app_name" <!-- 메뉴에서 보이는 앱 제목 지정. values/strings.xml에 정의 되어있음 -->
android:theme="@style/AppTheme" >
<activity <!-- 액티비티라는 것은 화면 단위 -->
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" /> <!-- 메인 액티비티라는 것을 알려줌 -->
<category android:name="android.intent.category.LAUNCHER" /> <!-- 메인 액티비티라는 것을 알려줌 -->
</intent-filter>
</activity>
<receiver
android:name=".MySMSReceiver"
android:enabled="true"
android:exported="true" >
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
</application>
</manifest>
'모바일앱' 카테고리의 다른 글
[iOS] ad-hoc 배포시 주의점 (0) | 2017.07.25 |
---|---|
[Android] AlertDialog 생성 (0) | 2015.08.06 |
[iOS] 아이폰 기업용 비즈니스 어플 배포 관련 (0) | 2013.02.15 |