hm-lok

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/hm-lok.git
Log | Files | Refs

AndroidManifest.xml (1024B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3       package="de.jandankert.hansemerkur"
      4       android:versionCode="1"
      5       android:versionName="1.0">
      6     <application android:theme="@style/HMDesign" android:icon="@drawable/hm_icon" android:label="@string/app_name">
      7         <activity android:name=".HM"
      8                   android:label="@string/app_name">
      9             <intent-filter>
     10                 <action android:name="android.intent.action.MAIN" />
     11                 <category android:name="android.intent.category.LAUNCHER" />
     12             </intent-filter>
     13         </activity>
     14 
     15         <activity android:name=".PVOList" />
     16         <activity android:name=".PVODetail" />
     17                   
     18 </application>
     19 
     20 
     21 
     22 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"></uses-permission>
     23 <uses-permission android:name="android.permission.INTERNET"></uses-permission>
     24 <!-- Android 1.6 -->
     25 <uses-sdk android:minSdkVersion="4"></uses-sdk>
     26 </manifest>