-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
executable file
·67 lines (61 loc) · 2.42 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cl.sepidesign.herbs"
android:versionCode="4"
android:versionName="0.4" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="10" />
<supports-screens
android:anyDensity="true"
android:largeScreens="false"
android:normalScreens="true"
android:smallScreens="false"
android:xlargeScreens="false" />
<compatible-screens>
<screen
android:screenDensity="xhdpi"
android:screenSize="normal" />
<screen
android:screenDensity="hdpi"
android:screenSize="normal" />
<screen
android:screenDensity="mdpi"
android:screenSize="normal" />
</compatible-screens>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="cl.sepidesign.herbs.SplashActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="cl.sepidesign.herbs.MainActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity android:name="cl.sepidesign.herbs.MethodsActivity" />
<activity android:name="cl.sepidesign.herbs.SymptomsActivity" />
<activity android:name="cl.sepidesign.herbs.HerbsActivity" />
<activity android:name="cl.sepidesign.herbs.FavoritesActivity" />
<activity
android:name="cl.sepidesign.herbs.HerbDetailActivity"
android:screenOrientation="portrait" />
<activity
android:name="cl.sepidesign.herbs.MethodDetailActivity"
android:screenOrientation="portrait" />
<activity
android:name="cl.sepidesign.herbs.InfoActivity"
android:screenOrientation="portrait" />
<activity
android:name="cl.sepidesign.herbs.AnnotationsActivity"
android:screenOrientation="portrait" />
</application>
</manifest>