Android Tutorial

(avery) #1

By : Ketan Bhimani


100 

The Permissions tab of the Eclipse Manifest File resource editor.

Editing the Manifest File Manually

The Android manifest file is a specially formatted XML file. You can
edit the XML manually by clicking on the AndroidManifest.xml tab.

Android manifest files generally include a single <manifest> tag
with a single <application> tag. The following is a sample
AndroidManifest.xml file for an application called Multimedia:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android=http://schemas.android.com/apk/res/android
package="com.androidbook.multimedia"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:debuggable="true">
<activity android:name=".MultimediaMenuActivity"
android:label="@string/app_name">



android:name="android.intent.action.MAIN"/>
android:name="android.intent.category.LAUNCHER"/>








Free download pdf