]> gitweb.fperrin.net Git - Dictionary.git/blob - AndroidManifest.xml
go
[Dictionary.git] / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <manifest 
4     xmlns:android="http://schemas.android.com/apk/res/android"
5     package="com.hughes.android.dictionary" 
6     android:versionCode="1"
7     android:versionName="1.0">
8
9  <application android:icon="@drawable/icon" android:label="@string/app_name">
10  
11   <activity android:name=".DictionaryActivity" android:label="@string/app_name">
12    <intent-filter>
13     <action android:name="android.intent.action.MAIN" />
14     <category android:name="android.intent.category.LAUNCHER" />
15    </intent-filter>
16   </activity>
17
18  </application>
19
20 </manifest>