Mark BluetoothClass#getClassOfDevice as TestApi

This method is being used the Android Things instrumentation test apk.

Bug: 111654175
Test: tests pass
Change-Id: Id3fcd2d89789868e50048542fd1dfe25d9986103
This commit is contained in:
Ralph Nathan
2018-07-23 09:35:18 -07:00
parent 88994b26cc
commit 29335fdc9b
2 changed files with 10 additions and 0 deletions

View File

@@ -73,6 +73,14 @@ package android.app.usage {
}
package android.bluetooth {
public final class BluetoothClass implements android.os.Parcelable {
method public int getClassOfDevice();
}
}
package android.content {
public abstract class ContentResolver {

View File

@@ -16,6 +16,7 @@
package android.bluetooth;
import android.annotation.TestApi;
import android.annotation.UnsupportedAppUsage;
import android.os.Parcel;
import android.os.Parcelable;
@@ -293,6 +294,7 @@ public final class BluetoothClass implements Parcelable {
*
* @hide
*/
@TestApi
public int getClassOfDevice() {
return mClass;
}