BluetoothMidiService: target SDK 30

Set min and target SDK to 30 for Android 12

Bug: 211075909
Test: https://source.android.com/devices/audio/midi_test.html#bluetooth_le_test
Change-Id: I1343d41a5c3044f18cbc6c420c0caef7f4177a49
This commit is contained in:
Phil Burk
2021-12-24 02:04:32 +00:00
parent 9a8937e935
commit 121b2eb109
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
xmlns:tools="http://schemas.android.com/tools"
package="com.android.bluetoothmidiservice"
>
<uses-sdk android:minSdkVersion="29" android:targetSdkVersion="29" />
<uses-sdk android:minSdkVersion="30" android:targetSdkVersion="30" />
<uses-feature android:name="android.hardware.bluetooth_le"
android:required="true"/>

View File

@@ -19,7 +19,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.bluetoothmidiservice"
>
<uses-sdk android:minSdkVersion="29" android:targetSdkVersion="29" />
<uses-sdk android:minSdkVersion="30" android:targetSdkVersion="30" />
<application
android:label="BluetoothMidi"
android:defaultToDeviceProtectedStorage="true"