ritzelrechner

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

AndroidManifest.xml (703B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3 	package="de.jandankert.ritzelrechner" android:versionCode="3"
      4 	android:versionName="1.2">
      5 	<application android:icon="@drawable/kettenblatt"
      6 		android:label="@string/app_name">
      7 		<activity android:name=".CalculateActivity" android:label="@string/app_name">
      8 			<intent-filter>
      9 				<action android:name="android.intent.action.MAIN" />
     10 				<category android:name="android.intent.category.LAUNCHER" />
     11 			</intent-filter>
     12 		</activity>
     13 
     14 		<activity android:name="PreferencesActivity"></activity>
     15 	</application>
     16 	
     17 	<!-- Android 1.6 -->
     18 	<uses-sdk android:minSdkVersion="4"></uses-sdk>
     19 
     20 </manifest>