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="com.beem.project.beem" android:versionCode="12" |
3 package="com.beem.project.beem" android:versionCode="12" |
4 android:versionName="0.1.7" android:installLocation="auto"> |
4 android:versionName="0.1.7" android:installLocation="auto"> |
|
5 |
|
6 <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="7" /> |
|
7 <uses-feature name="android.hardware.touchscreen" required="false" /> |
|
8 |
|
9 <permission android:permissionGroup="android.permission-group.NETWORK" |
|
10 android:label="BeemService" android:description="@string/BeemServiceDescription" |
|
11 android:name="com.beem.project.beem.BEEM_SERVICE"/> |
|
12 <uses-permission android:name="android.permission.INTERNET"/> |
|
13 <uses-permission android:name="android.permission.VIBRATE"/> |
|
14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
|
15 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
|
16 <uses-permission android:name="com.beem.project.beem.BEEM_SERVICE"/> |
|
17 |
|
18 <supports-screens android:largeScreens="true" |
|
19 android:normalScreens="true" android:smallScreens="true" android:anyDensity="true" /> |
|
20 |
5 <application android:label="@string/app_name" |
21 <application android:label="@string/app_name" |
6 android:icon="@drawable/beem_launcher_icon_silver" android:theme="@style/Theme.BEEM.Default" |
22 android:icon="@drawable/beem_launcher_icon_silver" android:theme="@style/Theme.BEEM.Default" |
7 android:name=".BeemApplication"> |
23 android:name=".BeemApplication"> |
|
24 |
8 <activity android:name=".ui.Login" android:label="@string/app_name" |
25 <activity android:name=".ui.Login" android:label="@string/app_name" |
9 android:launchMode="standard"> |
26 android:launchMode="standard"> |
10 <intent-filter> |
27 <intent-filter> |
11 <action android:name="android.intent.action.MAIN" /> |
28 <action android:name="android.intent.action.MAIN" /> |
12 <category android:name="android.intent.category.LAUNCHER" /> |
29 <category android:name="android.intent.category.LAUNCHER" /> |
50 <intent-filter> |
67 <intent-filter> |
51 <action android:name="com.beem.project.beem.BeemService"></action> |
68 <action android:name="com.beem.project.beem.BeemService"></action> |
52 </intent-filter> |
69 </intent-filter> |
53 </service> |
70 </service> |
54 </application> |
71 </application> |
55 <permission android:permissionGroup="android.permission-group.NETWORK" |
72 |
56 android:label="BeemService" android:description="@string/BeemServiceDescription" |
|
57 android:name="com.beem.project.beem.BEEM_SERVICE"/> |
|
58 <uses-permission android:name="android.permission.INTERNET"/> |
|
59 <uses-permission android:name="android.permission.VIBRATE"/> |
|
60 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
|
61 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
|
62 <uses-permission android:name="com.beem.project.beem.BEEM_SERVICE"/> |
|
63 <uses-feature name="android.hardware.touchscreen" required="false" /> |
|
64 <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="7" /> |
|
65 <supports-screens android:largeScreens="true" |
|
66 android:normalScreens="true" android:smallScreens="true" android:anyDensity="true" /> |
|
67 </manifest> |
73 </manifest> |