Add feature flag to toggle connected device between new and old feature. ConnectedDeviceDashboardFragment will contain new feature will ConnectedDeviceDashboardFragment2 will hold old feature. Bug: 69333961 Test: Build Change-Id: I0ea932c69dea5242129aab994d5142b1f87fbea0
17 lines
348 B
Java
17 lines
348 B
Java
package com.android.settings.bluetooth;
|
|
|
|
/**
|
|
* Impl for bluetooth feature provider
|
|
*/
|
|
public class BluetoothFeatureProviderImpl implements BluetoothFeatureProvider {
|
|
|
|
@Override
|
|
public boolean isPairingPageEnabled() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean isDeviceDetailPageEnabled() {
|
|
return false;
|
|
}
|
|
} |