blob: e39463465411451ecedd0f6cd9b29043e314ba27 [file] [log] [blame]
Enrico Granatafb08d622017-03-28 10:36:16 -07001<?xml version="1.0" encoding="utf-8"?>
Enrico Granatafb08d622017-03-28 10:36:16 -07002<!-- Copyright (C) 2017 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14-->
Ashwini Oruganti4d498132020-03-24 12:33:29 -070015
Enrico Granatafb08d622017-03-28 10:36:16 -070016<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Oruganti4d498132020-03-24 12:33:29 -070017 package="com.google.android.car.obd2app">
Enrico Granatafb08d622017-03-28 10:36:16 -070018
19 <uses-permission android:name="android.permission.BLUETOOTH"/>
Jeff Sharkey464d3822021-03-24 22:56:26 -060020 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
Jeff Sharkey2418e362021-04-01 13:44:46 -060021 <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE"/>
Jeff Sharkey464d3822021-03-24 22:56:26 -060022 <uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/>
23 <uses-permission android:name="android.permission.BLUETOOTH_SCAN"/>
Ashwini Oruganti4d498132020-03-24 12:33:29 -070024 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
25 <application android:allowBackup="true"
26 android:debuggable="true"
27 android:icon="@mipmap/ic_launcher"
28 android:label="@string/app_name"
29 android:supportsRtl="true"
30 android:theme="@style/AppTheme">
31 <uses-library android:name="android.test.runner"/>
Paul Duffincb641452017-12-08 00:02:43 +000032
Ashwini Oruganti4d498132020-03-24 12:33:29 -070033 <activity android:name=".MainActivity"
34 android:exported="true">
Enrico Granatafb08d622017-03-28 10:36:16 -070035 <intent-filter>
Ashwini Oruganti4d498132020-03-24 12:33:29 -070036 <action android:name="android.intent.action.MAIN"/>
Enrico Granatafb08d622017-03-28 10:36:16 -070037
Ashwini Oruganti4d498132020-03-24 12:33:29 -070038 <category android:name="android.intent.category.LAUNCHER"/>
Enrico Granatafb08d622017-03-28 10:36:16 -070039 </intent-filter>
40 </activity>
41 <activity android:name=".SettingsActivity"/>
42 </application>
43
44</manifest>