repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
src/main/AndroidManifest.xml@20:6d2af70c92ab, 2021-04-06 (annotated)
- Committer:
- darienf
- Date:
- Tue Apr 06 06:41:40 2021 +0000
- Revision:
- 20:6d2af70c92ab
another repo
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
darienf | 20:6d2af70c92ab | 1 | <?xml version="1.0" encoding="utf-8"?><!-- |
darienf | 20:6d2af70c92ab | 2 | Copyright 2013 The Android Open Source Project |
darienf | 20:6d2af70c92ab | 3 | |
darienf | 20:6d2af70c92ab | 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
darienf | 20:6d2af70c92ab | 5 | you may not use this file except in compliance with the License. |
darienf | 20:6d2af70c92ab | 6 | You may obtain a copy of the License at |
darienf | 20:6d2af70c92ab | 7 | |
darienf | 20:6d2af70c92ab | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
darienf | 20:6d2af70c92ab | 9 | |
darienf | 20:6d2af70c92ab | 10 | Unless required by applicable law or agreed to in writing, software |
darienf | 20:6d2af70c92ab | 11 | distributed under the License is distributed on an "AS IS" BASIS, |
darienf | 20:6d2af70c92ab | 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
darienf | 20:6d2af70c92ab | 13 | See the License for the specific language governing permissions and |
darienf | 20:6d2af70c92ab | 14 | limitations under the License. |
darienf | 20:6d2af70c92ab | 15 | --> |
darienf | 20:6d2af70c92ab | 16 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
darienf | 20:6d2af70c92ab | 17 | package="com.example.android.bluetoothlegatt" |
darienf | 20:6d2af70c92ab | 18 | android:versionCode="1" |
darienf | 20:6d2af70c92ab | 19 | android:versionName="1.0"> |
darienf | 20:6d2af70c92ab | 20 | |
darienf | 20:6d2af70c92ab | 21 | <!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle --> |
darienf | 20:6d2af70c92ab | 22 | |
darienf | 20:6d2af70c92ab | 23 | |
darienf | 20:6d2af70c92ab | 24 | <!-- |
darienf | 20:6d2af70c92ab | 25 | Declare this required feature if you want to make the app available to BLE-capable |
darienf | 20:6d2af70c92ab | 26 | devices only. If you want to make your app available to devices that don't support BLE, |
darienf | 20:6d2af70c92ab | 27 | you should omit this in the manifest. Instead, determine BLE capability by using |
darienf | 20:6d2af70c92ab | 28 | PackageManager.hasSystemFeature(FEATURE_BLUETOOTH_LE) |
darienf | 20:6d2af70c92ab | 29 | --> |
darienf | 20:6d2af70c92ab | 30 | <uses-feature |
darienf | 20:6d2af70c92ab | 31 | android:name="android.hardware.bluetooth_le" |
darienf | 20:6d2af70c92ab | 32 | android:required="true" /> |
darienf | 20:6d2af70c92ab | 33 | |
darienf | 20:6d2af70c92ab | 34 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
darienf | 20:6d2af70c92ab | 35 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
darienf | 20:6d2af70c92ab | 36 | |
darienf | 20:6d2af70c92ab | 37 | <application |
darienf | 20:6d2af70c92ab | 38 | android:icon="@drawable/ic_launcher" |
darienf | 20:6d2af70c92ab | 39 | android:label="@string/app_name" |
darienf | 20:6d2af70c92ab | 40 | android:theme="@android:style/Theme.Holo.Light"> |
darienf | 20:6d2af70c92ab | 41 | <activity |
darienf | 20:6d2af70c92ab | 42 | android:name=".DeviceScanActivity" |
darienf | 20:6d2af70c92ab | 43 | android:label="@string/app_name"> |
darienf | 20:6d2af70c92ab | 44 | <intent-filter> |
darienf | 20:6d2af70c92ab | 45 | <action android:name="android.intent.action.MAIN" /> |
darienf | 20:6d2af70c92ab | 46 | |
darienf | 20:6d2af70c92ab | 47 | <category android:name="android.intent.category.LAUNCHER" /> |
darienf | 20:6d2af70c92ab | 48 | </intent-filter> |
darienf | 20:6d2af70c92ab | 49 | </activity> |
darienf | 20:6d2af70c92ab | 50 | <activity |
darienf | 20:6d2af70c92ab | 51 | android:name=".SensorActivity" |
darienf | 20:6d2af70c92ab | 52 | android:label="SensorActivity" |
darienf | 20:6d2af70c92ab | 53 | android:screenOrientation="portrait"></activity> |
darienf | 20:6d2af70c92ab | 54 | |
darienf | 20:6d2af70c92ab | 55 | <service |
darienf | 20:6d2af70c92ab | 56 | android:name=".BluetoothLeService" |
darienf | 20:6d2af70c92ab | 57 | android:enabled="true" /> |
darienf | 20:6d2af70c92ab | 58 | |
darienf | 20:6d2af70c92ab | 59 | </application> |
darienf | 20:6d2af70c92ab | 60 | |
darienf | 20:6d2af70c92ab | 61 | </manifest> |