Android Manifest File

It is the main Configuration file of Android Project. Is automatically created with every
android project.
In this file we configure different type of appliction setting.
First We use <use-permssion> element. In this tag we take permission of others appliction are
services which we want to use in our appliction.
if we want to use SMS sending in our project than we used SMS permission
<br /> <uses-permission android:name="android.permission.SEND_SMS"/><br />
appliction element contain all those element wchich we define in our project like activity servieces
and receiver.
The default appliction is look like this
<br /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" ><br /> <activity android:name=".MainActivity" android:label="@string/title_activity_main" ><br /> <intent-filter><br /> <action android:name="android.intent.action.MAIN" /><br /> <br /> <category android:name="android.intent.category.LAUNCHER" /><br /> </intent-filter><br /> </activity><br /> </application><br />

Post a Comment

0 Comments