Rev 6 | Rev 8 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 2 | PointedEar | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 3 | package="ch.ffhs.converter" |
||
| 4 | android:versionCode="1" |
||
| 5 | android:versionName="1.0"> |
||
| 7 | PointedEar | 6 | |
| 7 | <uses-sdk android:minSdkVersion="8" /> |
||
| 5 | PointedEar | 8 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 9 | <uses-permission android:name="android.permission.INTERNET" /> |
||
| 10 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
||
| 11 | |||
| 12 | <application android:name="ConverterApplication" |
||
| 13 | android:label="@string/app_name" |
||
| 14 | android:icon="@drawable/icon"> |
||
| 15 | |||
| 16 | <activity android:name="MenuActivity" |
||
| 2 | PointedEar | 17 | android:label="@string/app_name"> |
| 18 | <intent-filter> |
||
| 19 | <action android:name="android.intent.action.MAIN" /> |
||
| 5 | PointedEar | 20 | <category android:name="android.intent.category.DEFAULT" /> |
| 2 | PointedEar | 21 | <category android:name="android.intent.category.LAUNCHER" /> |
| 22 | </intent-filter> |
||
| 23 | </activity> |
||
| 24 | |||
| 5 | PointedEar | 25 | <activity android:name=".app.LengthsActivity" |
| 26 | android:label="@string/activity_lengths"> |
||
| 27 | <intent-filter> |
||
| 28 | <action android:name="android.intent.action.MAIN" /> |
||
| 6 | PointedEar | 29 | <category android:name="android.intent.category.CONVERTER" /> |
| 5 | PointedEar | 30 | </intent-filter> |
| 31 | </activity> |
||
| 32 | |||
| 33 | <activity android:name=".app.TemperaturesActivity" |
||
| 7 | PointedEar | 34 | android:label="@string/activity_temperatures"> |
| 5 | PointedEar | 35 | <intent-filter> |
| 36 | <action android:name="android.intent.action.MAIN" /> |
||
| 6 | PointedEar | 37 | <category android:name="android.intent.category.CONVERTER" /> |
| 5 | PointedEar | 38 | </intent-filter> |
| 39 | </activity> |
||
| 40 | |||
| 41 | <activity android:name=".app.CurrenciesActivity" |
||
| 42 | android:label="@string/activity_currencies"> |
||
| 43 | <intent-filter> |
||
| 44 | <action android:name="android.intent.action.MAIN" /> |
||
| 6 | PointedEar | 45 | <category android:name="android.intent.category.CONVERTER" /> |
| 5 | PointedEar | 46 | </intent-filter> |
| 47 | </activity> |
||
| 2 | PointedEar | 48 | </application> |
| 49 | </manifest> |