CS619 Android 101
BENCE CSERNA
Project #1: Color Guess Game Android: Manifest
! Android application descriptor
! Permissions (Internet, Record sound, Send
text, Vibration)
! Every component is described here
! Activities should be added to Manifest (!)
Android: Manifest example
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.cserna.bence.colorguess” android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8” android:targetSdkVersion="17" /> <application android:icon="@drawable/ic_launcher” android:theme="@style/ AppTheme" > <activity android:name="net.cserna.bence.colorguess.GameActivity"> … </activity> <activity android:name="net.cserna.bence.colorguess.ResultActivity" android:label="@string/title_activity_result" > </activity> </application> </manifest>