운전 세션 간에 핫스팟 유지

이 페이지에서는 AAOS의 Wi-Fi 운전 환경과 마찬가지로 운전 세션 간에 핫스팟을 유지하도록 사용자를 설정하는 방법을 설명합니다.

public class CarSettings {
  ...

  @SystemApi
  public static final class Global {
    ...

    /**
     * Enables persistent tethering when set to {@code "true"}.
     *
     * <p>When enabled, tethering is started when the car is started given
     * that the hotspot was enabled at shutdown and all tethering sessions
     * will remain on even if no devices are connected to it.
     *
     * <p>When disabled, hotspot will turn off automatically if no devices
     * are connected and will no longer persist through drives.
     *
     * @hide
     */
    @SystemApi
    public static final String ENABLE_PERSISTENT_TETHERING =
           "android.car.ENABLE_PERSISTENT_TETHERING";
  }
}

테더링을 유지하려면 쿼리에 사용할 수도 있는 Settings API를 통해 ENABLE_PERSISTENT_TETHERING를 사용하세요.

권한

CarWifiManager API 사용이 제한됩니다. 이 새로운 권한은 액세스를 보호하기 위해 만들어졌습니다.

public boolean canControlPersistApSettings() { ... }

이 권한의 보호 수준은 다음과 같습니다.

새 권한 권한 보호 수준
READ_PERSIST_TETHERING_SETTINGS 서명 | 권한이 부여됨

유지 동작은 기본적으로 지원되지 않음으로 설정됩니다. 리소스 오버레이(config_enablePersistTetheringCapabilities)가 테더링을 유지하는 기능을 차단하도록 구성됩니다. 테더링을 의도적으로 유지하려면 값을 true로 설정하여 사용자 환경설정 선택 위에 기능을 사용 설정합니다. WRITE_SECURE_SETTINGS 권한이 있는 다른 시스템 앱에서도 이 설정을 제어할 수 있기 때문입니다.

다음 API는 이 동작이 사용 설정되어 있는지 확인합니다. ENABLE_PERSISTENT_TETHERING를 변경하기 전에 이 API를 호출합니다.

/**
 * CarWifiManager provides API to allow for applications to perform Wi-Fi specific
 * operations.
 *
 * @hide
 */
@SystemApi
public final class CarWifiManager extends CarManagerBase {
 /**
  * Returns {@code true} if the persist tethering settings are able to be
  * changed.
  *
  * @hide
  */
 @SystemApi
 @RequiresPermission(Car.PERMISSION_READ_PERSIST_TETHERING_SETTINGS)
 public boolean canControlPersistApSettings() { ... }
}