Subversion Repositories ES

Rev

Rev 2 | Rev 6 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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