1
0
mirror of https://github.com/bspeice/itcs4180 synced 2024-09-20 01:41:29 -04:00
itcs4180/HW4/AndroidManifest.xml
tokugawa 7d937009e8 Fixed main activity errors and added click function to start
GalleryActivity. Started working on GalleryActivity.
2014-03-23 20:56:39 -04:00

33 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.hw4"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.hw4.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>
<activity
android:name="com.example.hw4.GalleryActivity"
android:label="@string/title_activity_gallery" >
</activity>
</application>
</manifest>