Commit dcc8aa9d7f887a56d01864e1cbf502af44f3725d
1 parent
96dbdf27
--no commit message
Showing
1 changed file
with
40 additions
and
0 deletions
Blinker/bin/AndroidManifest.xml
0 → 100644
1 | +<?xml version="1.0" encoding="utf-8"?> | |
2 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
3 | + package="com.emmoco.example.blinker" | |
4 | + android:versionCode="1" | |
5 | + android:versionName="0.8"> | |
6 | + <uses-sdk android:minSdkVersion="8" | |
7 | + android:targetSdkVersion="8" | |
8 | + android:maxSdkVersion="8" /> | |
9 | + | |
10 | + <supports-screens android:largeScreens="false" android:xlargeScreens="false" /> | |
11 | + | |
12 | + | |
13 | + <!-- Application --> | |
14 | + <application | |
15 | + android:label="@string/app_name" | |
16 | + android:debuggable="false" | |
17 | + android:icon="@drawable/icon" | |
18 | + android:theme="@style/AppTheme"> | |
19 | + | |
20 | + <activity android:name="com.emmoco.example.blinker.MainActivity" | |
21 | + android:screenOrientation="portrait" | |
22 | + android:alwaysRetainTaskState="true" | |
23 | + android:launchMode="singleTop" | |
24 | + android:clearTaskOnLaunch="false" | |
25 | + android:label="@string/app_name" | |
26 | + android:configChanges="keyboardHidden|orientation"> | |
27 | + <intent-filter> | |
28 | + <action android:name="android.intent.action.MAIN" /> | |
29 | + <category android:name="android.intent.category.LAUNCHER" /> | |
30 | + </intent-filter> | |
31 | + </activity> | |
32 | + <activity android:name="com.emmoco.example.blinker.SetDeviceActivity" android:screenOrientation="portrait" android:configChanges="keyboardHidden|orientation"> </activity> | |
33 | + </application> | |
34 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
35 | + <uses-permission android:name="android.permission.BLUETOOTH" /> | |
36 | + <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> | |
37 | + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
38 | + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | |
39 | + <uses-permission android:name="android.permission.INTERNET" /> | |
40 | +</manifest> | ... | ... |