diff --git a/.githooks/clang-format b/.githooks/clang-format deleted file mode 100755 index 2ea8b9d43..000000000 --- a/.githooks/clang-format +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash - -set -e - -readonly SCRIPT_ROOT="$(cd $(dirname ${BASH_SOURCE[0]}) && pwd)" -readonly TOOL_NAME=$(basename "$0") - -source "${SCRIPT_ROOT}/exec_tool.sh" diff --git a/.githooks/exec_tool.sh b/.githooks/exec_tool.sh deleted file mode 100644 index ed96ad289..000000000 --- a/.githooks/exec_tool.sh +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2016 The Fuchsia Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. -if [[ -z "${TOOL_NAME}" ]]; then - echo "This script is not intended to be run directly."; - exit 1 -fi -case "$(uname -s)" in - Darwin) - readonly HOST_PLATFORM="mac-x64" - ;; - Linux) - readonly HOST_PLATFORM="linux-x64" - ;; - *) - echo "Unknown operating system. Cannot run ${TOOL_NAME}." - exit 1 - ;; -esac -readonly TOOL_PATH="${SCRIPT_ROOT}/${HOST_PLATFORM}/${TOOL_NAME}" -if [[ ! -x "${TOOL_PATH}" ]]; then - echo "Cannot find ${TOOL_PATH}" - exit 1 -fi -exec "${TOOL_PATH}" "$@" diff --git a/.githooks/linux-x64/clang-format b/.githooks/linux-x64/clang-format deleted file mode 100755 index b97e0233e..000000000 --- a/.githooks/linux-x64/clang-format +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash - -if [[ ! -x "/usr/bin/clang-format-9" ]]; then - echo "Please install clang-format-9 on your system." - echo "Try 'sudo apt install clang-format-9' if you are on Ubuntu Linux." - exit 1 -fi -exec "/usr/bin/clang-format-9" "$@" diff --git a/.githooks/mac-x64/clang-format b/.githooks/mac-x64/clang-format deleted file mode 100755 index 4c66c8ba7..000000000 Binary files a/.githooks/mac-x64/clang-format and /dev/null differ diff --git a/.githooks/pre-commit b/.githooks/pre-commit deleted file mode 100755 index cea4e177b..000000000 --- a/.githooks/pre-commit +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -set -e - -readonly SCRIPT_ROOT="$(cd $(dirname ${BASH_SOURCE[0]}) && pwd)" - -format_file() { - file="${1}" - if [ -f $file ]; then - ${SCRIPT_ROOT}/clang-format -style=file -i ${1} - git add ${1} - fi -} - - -case "${1}" in - --help ) - echo "Runs clang-format on only source files" - ;; - * ) - for file in `git diff --cached --name-only | grep -e ".*\.\(h\|cpp\|c\|hpp\|java\)$"` ; do - format_file "${file}" - done - ;; -esac - diff --git a/aacs/android/app-components/alexa-auto-apis/build.gradle b/aacs/android/app-components/alexa-auto-apis/build.gradle index 181d7f482..91d121e5c 100644 --- a/aacs/android/app-components/alexa-auto-apis/build.gradle +++ b/aacs/android/app-components/alexa-auto-apis/build.gradle @@ -6,7 +6,7 @@ android { defaultConfig { minSdkVersion 25 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-apl-renderer/build.gradle b/aacs/android/app-components/alexa-auto-apl-renderer/build.gradle index c37629c79..96d3a4798 100644 --- a/aacs/android/app-components/alexa-auto-apl-renderer/build.gradle +++ b/aacs/android/app-components/alexa-auto-apl-renderer/build.gradle @@ -6,7 +6,7 @@ android { minSdkVersion 26 targetSdkVersion 28 versionCode 1 - versionName "4.1" + versionName "4.1.1" } buildTypes { release { diff --git a/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/build.gradle b/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/build.gradle index 28e9875c9..b3d00fd40 100644 --- a/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/build.gradle +++ b/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/build.gradle @@ -7,9 +7,9 @@ android { minSdkVersion 22 targetSdkVersion 28 versionCode 1 - versionName "4.1" + versionName "4.1.1" buildConfigField 'int', 'VERSION_CODE', "1" - buildConfigField 'String', 'VERSION_NAME', "\"4.1\"" + buildConfigField 'String', 'VERSION_NAME', "\"4.1.1\"" } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/dagger/module/APLOptionsModule.java b/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/dagger/module/APLOptionsModule.java index 4bc9efc36..902f05b2c 100644 --- a/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/dagger/module/APLOptionsModule.java +++ b/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/dagger/module/APLOptionsModule.java @@ -19,8 +19,10 @@ import com.amazon.apl.android.APLOptions; import com.amazon.apl.android.RootConfig; +import com.amazon.apl.android.audio.RuntimeAudioPlayerFactory; import com.amazon.apl.android.dependencies.IOpenUrlCallback; import com.amazon.apl.android.dependencies.impl.OpenUrlCallback; +import com.amazon.apl.android.media.RuntimeMediaPlayerFactory; import com.amazon.apl.android.render.BuildConfig; import com.amazon.apl.android.render.dagger.ActivityContext; import com.amazon.apl.android.render.dagger.ActivityScope; @@ -42,12 +44,8 @@ public class APLOptionsModule { * @return an instance of {@link APLOptions}. */ @Provides - APLOptions.Builder provideAPLOptions(final APLMediaPlayerProvider mediaProvider, - final IOpenUrlCallback openUrlCallback, final APLTtsPlayerProvider ttsProvider) { - return APLOptions.builder() - .mediaPlayerProvider(mediaProvider) - .openUrlCallback(openUrlCallback) - .ttsPlayerProvider(ttsProvider); + APLOptions.Builder provideAPLOptions(final IOpenUrlCallback openUrlCallback) { + return APLOptions.builder().openUrlCallback(openUrlCallback); } /** @@ -64,7 +62,8 @@ public IOpenUrlCallback provideOpenUrl(@ActivityContext final Context context) { * @return an instance of {@link RootConfig} */ @Provides - public RootConfig provideRootConfig(@ActivityContext final Context context) { + public RootConfig provideRootConfig(@ActivityContext final Context context, final APLTtsPlayerProvider ttsProvider, + final APLMediaPlayerProvider mediaProvider) { Map autoEnvironmentValues = new HashMap<>(); autoEnvironmentValues.put("drivingState", "moving"); return RootConfig.create(context) @@ -72,6 +71,8 @@ public RootConfig provideRootConfig(@ActivityContext final Context context) { .registerDataSource("dynamicIndexList") .registerDataSource("dynamicTokenList") .setEnvironmentValue("automobile", autoEnvironmentValues) + .audioPlayerFactory(new RuntimeAudioPlayerFactory(ttsProvider)) + .mediaPlayerFactory(new RuntimeMediaPlayerFactory(mediaProvider)) .allowOpenUrl(false); } } diff --git a/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/media/APLMediaPlayer.java b/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/media/APLMediaPlayer.java index 16dca29f2..4a771a3c4 100644 --- a/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/media/APLMediaPlayer.java +++ b/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/media/APLMediaPlayer.java @@ -22,30 +22,26 @@ import androidx.annotation.NonNull; import com.amazon.apl.android.dependencies.impl.MediaPlayer; -import com.amazon.apl.android.render.audio.AudioFocusController; import com.amazon.apl.android.render.interfaces.IAPLEventSender; import com.amazon.apl.android.render.interfaces.IAPLTokenProvider; /** - * Provides a wrapper of the MediaPlayer player that can report activity events - * and request Android audio focus. The Media player is used for playing video - * content. + * Provides a wrapper of the MediaPlayer player that can report activity events. + * The Media player is used for playing video content. Android audio focus + * management is built into the base MediaPlayer class. */ -public class APLMediaPlayer extends MediaPlayer implements AudioFocusController.PlaybackController { +public class APLMediaPlayer extends MediaPlayer { private static final String TAG = APLMediaPlayer.class.getSimpleName(); private final IAPLEventSender mAplEventSender; private final IAPLTokenProvider mAplTokenProvider; - private final AudioFocusController mAudioFocusController; public APLMediaPlayer(@NonNull Context context, @NonNull TextureView view, @NonNull IAPLEventSender aplEventSender, @NonNull IAPLTokenProvider aplTokenProvider) { super(context, view); + Log.v(TAG, "Created"); mAplEventSender = aplEventSender; mAplTokenProvider = aplTokenProvider; - AudioManager audioManager = - (AudioManager) context.getApplicationContext().getSystemService(Context.AUDIO_SERVICE); - mAudioFocusController = new AudioFocusController(audioManager, this); } /** @@ -53,8 +49,9 @@ public APLMediaPlayer(@NonNull Context context, @NonNull TextureView view, @NonN */ @Override public void play() { - Log.v(TAG, "play: "); - mAudioFocusController.startPlaybackAfterAcquiringFocus(); + Log.v(TAG, "play:"); + super.play(); + mAplEventSender.sendActivityEventRequest(mAplTokenProvider.getToken(), IAPLEventSender.ActivityEvent.ACTIVATED); } /** @@ -62,49 +59,9 @@ public void play() { */ @Override public void stop() { - Log.v(TAG, "stop: "); - super.stop(); - mAudioFocusController.relinquishAudioFocusIfCurrentlyAcquired(); - mAplEventSender.sendActivityEventRequest( - mAplTokenProvider.getToken(), IAPLEventSender.ActivityEvent.DEACTIVATED); - } - - @Override - public void startPlaybackNow() { - Log.v(TAG, "startPlaybackNow: "); - super.play(); - mAplEventSender.sendActivityEventRequest(mAplTokenProvider.getToken(), IAPLEventSender.ActivityEvent.ACTIVATED); - } - - @Override - public void requestResumingPlayback() { - Log.v(TAG, "requestResumingPlayback: "); - super.play(); - mAplEventSender.sendActivityEventRequest(mAplTokenProvider.getToken(), IAPLEventSender.ActivityEvent.ACTIVATED); - } - - @Override - public void requestPausePlayback() { - Log.v(TAG, "requestPausePlayback: "); - super.pause(); - } - - @Override - public void requestStopPlayback() { - Log.v(TAG, "requestStopPlayback: "); + Log.v(TAG, "stop:"); super.stop(); mAplEventSender.sendActivityEventRequest( mAplTokenProvider.getToken(), IAPLEventSender.ActivityEvent.DEACTIVATED); } - - @Override - public void adjustPlaybackVolume(float volumeMultiplier) { - Log.v(TAG, "adjustPlaybackVolume: " + volumeMultiplier); - } - - @Override - public void failedToAcquireFocus() { - Log.e(TAG, "failedToAcquireFocus: "); - super.stop(); - } } diff --git a/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/tts/APLTtsPlayerProvider.java b/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/tts/APLTtsPlayerProvider.java index 7ae10258c..dd8399ca8 100644 --- a/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/tts/APLTtsPlayerProvider.java +++ b/aacs/android/app-components/alexa-auto-apl-renderer/modules/apl-render/src/main/java/com/amazon/apl/android/render/tts/APLTtsPlayerProvider.java @@ -67,6 +67,15 @@ public void prepare(@NonNull String source, @NonNull ITtsSourceProvider ttsSourc } } + @Override + public void prepare(@NonNull String source) { + try { + getPlayer().prepare(source, new URL(source)); + } catch (Exception e) { + Log.e(TAG, "Could not set the speech source", e); + } + } + @Override public void onDocumentFinish() { if (mTtsPlayer != null) { diff --git a/aacs/android/app-components/alexa-auto-apl-renderer/src/main/java/com/amazon/alexa/auto/apl/APLFragment.java b/aacs/android/app-components/alexa-auto-apl-renderer/src/main/java/com/amazon/alexa/auto/apl/APLFragment.java index e4579be86..081888878 100644 --- a/aacs/android/app-components/alexa-auto-apl-renderer/src/main/java/com/amazon/alexa/auto/apl/APLFragment.java +++ b/aacs/android/app-components/alexa-auto-apl-renderer/src/main/java/com/amazon/alexa/auto/apl/APLFragment.java @@ -19,6 +19,7 @@ import static com.amazon.alexa.auto.apps.common.Constants.APL_RUNTIME_PROPERTIES; import static com.amazon.alexa.auto.apps.common.Constants.APL_RUNTIME_PROPERTY_DRIVING_STATE_NAME; import static com.amazon.alexa.auto.apps.common.Constants.APL_RUNTIME_PROPERTY_THEME_NAME; +import static com.amazon.alexa.auto.apps.common.Constants.APL_RUNTIME_PROPERTY_VIDEO_NAME; import android.content.Context; import android.content.SharedPreferences; @@ -380,6 +381,7 @@ private String constructAPLRuntimeProperties() { Preconditions.checkNotNull(sharedPreferences); String drivingStateValue = sharedPreferences.getString(APL_RUNTIME_PROPERTY_DRIVING_STATE_NAME, ""); String themeValue = sharedPreferences.getString(APL_RUNTIME_PROPERTY_THEME_NAME, ""); + String videoValue = sharedPreferences.getString(APL_RUNTIME_PROPERTY_VIDEO_NAME, ""); if (!drivingStateValue.isEmpty()) { properties.put(APL_RUNTIME_PROPERTY_DRIVING_STATE_NAME, drivingStateValue); @@ -387,6 +389,9 @@ private String constructAPLRuntimeProperties() { if (!themeValue.isEmpty()) { properties.put(APL_RUNTIME_PROPERTY_THEME_NAME, themeValue); } + if (!videoValue.isEmpty()) { + properties.put(APL_RUNTIME_PROPERTY_VIDEO_NAME, videoValue); + } return properties.toString(); } catch (JSONException e) { diff --git a/aacs/android/app-components/alexa-auto-apps-common-ui/build.gradle b/aacs/android/app-components/alexa-auto-apps-common-ui/build.gradle index b19122a51..ece53c6d1 100644 --- a/aacs/android/app-components/alexa-auto-apps-common-ui/build.gradle +++ b/aacs/android/app-components/alexa-auto-apps-common-ui/build.gradle @@ -4,7 +4,7 @@ android { defaultConfig { minSdkVersion 26 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-apps-common-util/build.gradle b/aacs/android/app-components/alexa-auto-apps-common-util/build.gradle index 685ef64e6..e4bbc5e82 100644 --- a/aacs/android/app-components/alexa-auto-apps-common-util/build.gradle +++ b/aacs/android/app-components/alexa-auto-apps-common-util/build.gradle @@ -7,7 +7,7 @@ android { defaultConfig { minSdkVersion 25 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-apps-common-util/src/main/java/com/amazon/alexa/auto/apps/common/Constants.java b/aacs/android/app-components/alexa-auto-apps-common-util/src/main/java/com/amazon/alexa/auto/apps/common/Constants.java index 98ba7b803..d35f59099 100644 --- a/aacs/android/app-components/alexa-auto-apps-common-util/src/main/java/com/amazon/alexa/auto/apps/common/Constants.java +++ b/aacs/android/app-components/alexa-auto-apps-common-util/src/main/java/com/amazon/alexa/auto/apps/common/Constants.java @@ -56,6 +56,9 @@ public class Constants { public static final String APL_RUNTIME_PROPERTY_THEME_NAME = "theme"; public static final String APL_RUNTIME_PROPERTY_DRIVING_STATE_VALUE_MOVING = "moving"; public static final String APL_RUNTIME_PROPERTY_DRIVING_STATE_VALUE_PARKED = "parked"; + public static final String APL_RUNTIME_PROPERTY_VIDEO_NAME = "video"; + public static final String APL_RUNTIME_PROPERTY_VIDEO_VALUE_ENABLED = "enabled"; + public static final String APL_RUNTIME_PROPERTY_VIDEO_VALUE_DISABLED = "disabled"; // Car UX Restrictions public static final String CAR_UX_RESTRICTIONS_DRIVING_STATE_ACTION = diff --git a/aacs/android/app-components/alexa-auto-carcontrol/aacscarcontrol/build.gradle b/aacs/android/app-components/alexa-auto-carcontrol/aacscarcontrol/build.gradle index 9f31610ca..080bc102a 100644 --- a/aacs/android/app-components/alexa-auto-carcontrol/aacscarcontrol/build.gradle +++ b/aacs/android/app-components/alexa-auto-carcontrol/aacscarcontrol/build.gradle @@ -9,7 +9,7 @@ android { minSdkVersion 26 targetSdkVersion 29 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles 'consumer-rules.pro' diff --git a/aacs/android/app-components/alexa-auto-comms-ui/build.gradle b/aacs/android/app-components/alexa-auto-comms-ui/build.gradle index 5e711aaaa..a76cf0898 100644 --- a/aacs/android/app-components/alexa-auto-comms-ui/build.gradle +++ b/aacs/android/app-components/alexa-auto-comms-ui/build.gradle @@ -5,7 +5,7 @@ android { defaultConfig { minSdkVersion 26 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/fragment/settings/CommunicationFragment.java b/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/fragment/settings/CommunicationFragment.java index 9e35764e7..41f003ea7 100644 --- a/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/fragment/settings/CommunicationFragment.java +++ b/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/fragment/settings/CommunicationFragment.java @@ -40,8 +40,12 @@ import com.amazon.alexa.auto.comms.ui.R; import com.amazon.alexa.auto.comms.ui.db.BTDevice; import com.amazon.alexa.auto.comms.ui.db.BTDeviceRepository; +import com.amazon.alexa.auto.comms.ui.db.ConnectedBTDevice; +import com.amazon.alexa.auto.comms.ui.db.ConnectedBTDeviceRepository; +import java.util.List; import java.util.Set; +import java.util.concurrent.atomic.AtomicReference; /** * Communication fragment to manage all connected bluetooth devices in a list. @@ -65,15 +69,21 @@ public void onActivityCreated(Bundle savedInstanceState) { mController = findNavController(fragmentView); mBluetoothManager = (BluetoothManager) getContext().getSystemService(Context.BLUETOOTH_SERVICE); mBluetoothAdapter = mBluetoothManager.getAdapter(); + BTDeviceRepository BTDeviceRepo = BTDeviceRepository.getInstance(getContext()); + ConnectedBTDeviceRepository ConnectedBTDeviceRepo = ConnectedBTDeviceRepository.getInstance(getContext()); LinearLayout rootLayout = (LinearLayout) fragmentView.findViewById(R.id.alexa_communication_fragment); // Dynamically observe all the paired bluetooth devices from bluetooth adapter bonded devices Set pairedDevices = mBluetoothAdapter.getBondedDevices(); + // Save last device address to know when to add primary device to top and add pair new button + AtomicReference lastDev = new AtomicReference<>(""); if (pairedDevices.size() > 0) { - for (BluetoothDevice device : pairedDevices) { + BluetoothDevice arr[] = pairedDevices.toArray(new BluetoothDevice[pairedDevices.size()]); + String lastDevice = arr[pairedDevices.size() - 1].getName(); + lastDev.set(lastDevice); + for (BluetoothDevice device : arr) { String name = device.getName(); String address = device.getAddress(); - LiveData btDevice = - BTDeviceRepository.getInstance(getContext()).getBTDeviceByAddress(address); + LiveData btDevice = BTDeviceRepo.getBTDeviceByAddress(address); btDevice.observe(getViewLifecycleOwner(), listObserver -> { if (btDevice.getValue() != null) { String contactsUploadPermission = btDevice.getValue().getContactsUploadPermission(); @@ -99,19 +109,78 @@ public void onActivityCreated(Bundle savedInstanceState) { Bundle deviceAddress = new Bundle(); deviceAddress.putString(Constants.COMMUNICATION_DEVICE_ADDRESS, address); ImageView checkMore = to_add.findViewById(R.id.checkMore); - checkMore.setOnClickListener(view -> { + to_add.setOnClickListener(view -> { mController.navigate(R.id.navigation_fragment_communication_consent, deviceAddress); }); - rootLayout.addView(to_add); + Log.d(TAG, "adding device " + device.getName()); + to_add.setTag(name); + if (rootLayout.findViewWithTag(name) == null) { + rootLayout.addView(to_add); + } + // Once the last device is added, find the primary device and add it to the top + if (device.getName().equals(String.valueOf(lastDev))) { + LiveData> listData = ConnectedBTDeviceRepo.getConnectedDevices(); + listData.observe(getViewLifecycleOwner(), listObserver2 -> { + if (listData.getValue() != null && listData.getValue().size() > 0) { + // Per Android telephony, the last connected device is the primary device + String primaryAddress = listData.getValue().get(listData.getValue().size() - 1).getDeviceAddress(); + String primaryName = listData.getValue().get(listData.getValue().size() - 1).getDeviceName(); + Log.d(TAG, "primary device found " + name); + LiveData primaryDevice = BTDeviceRepo.getBTDeviceByAddress(primaryAddress); + primaryDevice.observe(getViewLifecycleOwner(), observer -> { + if (primaryDevice.getValue() != null) { + String primaryContactsUploadPermission = primaryDevice.getValue().getContactsUploadPermission(); + View to_add_primary = + getLayoutInflater().inflate(R.layout.communication_consent_layout, rootLayout, false); + TextView primaryDeviceName = (TextView) to_add_primary.findViewById(R.id.deviceName); + primaryDeviceName.setText(primaryName); + + TextView primaryContactConsent = (TextView) to_add_primary.findViewById(R.id.consentStatus); + String primaryCommunicationConsentStatus = Constants.COMMUNICATION_PERMISSION_DISABLED; + + if (primaryContactsUploadPermission.equals(Constants.CONTACTS_PERMISSION_YES)) { + primaryCommunicationConsentStatus = Constants.COMMUNICATION_PERMISSION_ENABLED; + } + String primaryFormat = getResources().getString(R.string.comms_permission_status); + String primaryBodyString = String.format(primaryFormat, primaryCommunicationConsentStatus); + primaryContactConsent.setText(primaryBodyString); + + Bundle primaryDeviceAddress = new Bundle(); + primaryDeviceAddress.putString(Constants.COMMUNICATION_DEVICE_ADDRESS, primaryAddress); + ImageView primaryCheckMore = to_add.findViewById(R.id.checkMore); + to_add_primary.setOnClickListener(view -> { + mController.navigate(R.id.navigation_fragment_communication_consent, primaryDeviceAddress); + }); + View child = rootLayout.findViewWithTag(primaryName); + if (child != null){ + rootLayout.removeView(child); + } + to_add_primary.setTag(primaryName); + rootLayout.addView(to_add_primary, 0); + addPairNewButton(rootLayout); + } else { + Log.d(TAG, "Primary device is not found."); + addPairNewButton(rootLayout); + } + }); + + } else { + Log.d(TAG, "There is no primary device found."); + addPairNewButton(rootLayout); + } + }); + } } else { Log.d(TAG, "There is no device found."); + addPairNewButton(rootLayout); } }); } } - View pairNewOne = getLayoutInflater().inflate(R.layout.communication_pair_new_layout, rootLayout, false); - pairNewOne.setOnClickListener(view -> { goToBluetoothSettings(getContext()); }); - rootLayout.addView(pairNewOne); + else{ + Log.d(TAG, "There are no paired devices"); + addPairNewButton(rootLayout); + } } @VisibleForTesting @@ -128,4 +197,19 @@ private void goToBluetoothSettings(Context context) { intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.getApplicationContext().startActivity(intent); } + + /** + * Adds 'Pair new' buttom to bottom of device list + * @param rootLayout Android LinearLayout. + */ + private void addPairNewButton(LinearLayout rootLayout){ + if (rootLayout.getRootView().findViewById(R.id.communication_pair_new_layout) == null) { + View pairNewOne = getLayoutInflater().inflate(R.layout.communication_pair_new_layout, rootLayout, false); + pairNewOne.setOnClickListener(view -> { + goToBluetoothSettings(getContext()); + }); + rootLayout.addView(pairNewOne); + } + } + } diff --git a/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/fragment/setup/CommunicationConsentFragment.java b/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/fragment/setup/CommunicationConsentFragment.java index 84030d729..70857c2d4 100644 --- a/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/fragment/setup/CommunicationConsentFragment.java +++ b/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/fragment/setup/CommunicationConsentFragment.java @@ -139,10 +139,6 @@ private void observeContactUploadPermission(String deviceAddress) { TextView alexaContactsHint = fragmentView.findViewById(R.id.alexa_contacts_hint1); alexaContactsHint.setVisibility(View.GONE); } else { - ViewGroup.MarginLayoutParams marginLayoutParams = - (ViewGroup.MarginLayoutParams) alexaImage.getLayoutParams(); - marginLayoutParams.topMargin = - (int) getResources().getDimension(R.dimen.contacts_permission_alexa_image_topMargin); format = getResources().getString(R.string.contacts_permission_consent_title); } String headingString = String.format(format, device.getValue().getDeviceName()); diff --git a/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/handler/BluetoothDirectiveHandler.java b/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/handler/BluetoothDirectiveHandler.java index 2a8ccae63..2c01f8df8 100644 --- a/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/handler/BluetoothDirectiveHandler.java +++ b/aacs/android/app-components/alexa-auto-comms-ui/src/main/java/com/amazon/alexa/auto/comms/ui/handler/BluetoothDirectiveHandler.java @@ -81,6 +81,8 @@ public void handleBondStateChange(@NonNull BTDevice device, Integer bondState) { Log.d(TAG, "Device bonded, update device on first pair"); mBTDeviceRepository.insertEntry(device); mBTDeviceRepository.updateFirstPair(deviceAddress, true); + } else if (bondState == BluetoothDevice.BOND_NONE ) { + mBTDeviceRepository.updateContactsPermission(deviceAddress, Constants.CONTACTS_PERMISSION_NO); } } /** diff --git a/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/layout-land/communication_setup_fragment.xml b/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/layout-land/communication_setup_fragment.xml index 7389f97c5..a2b8aa01d 100644 --- a/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/layout-land/communication_setup_fragment.xml +++ b/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/layout-land/communication_setup_fragment.xml @@ -40,6 +40,7 @@ android:contentDescription="@string/alexa_logo_content_description" android:src="@drawable/alexa_logo" android:textAlignment="center" + android:layout_marginTop="@dimen/contacts_permission_alexa_image_topMargin" app:layout_constraintEnd_toStartOf="@id/right_guideline" app:layout_constraintStart_toStartOf="@id/left_guideline" app:layout_constraintTop_toTopOf="parent" /> diff --git a/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/layout/communication_pair_new_layout.xml b/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/layout/communication_pair_new_layout.xml index 3eeb9aea3..3233a8be7 100644 --- a/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/layout/communication_pair_new_layout.xml +++ b/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/layout/communication_pair_new_layout.xml @@ -8,7 +8,7 @@ android:orientation="vertical"> diff --git a/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/values-land/dimens.xml b/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/values-land/dimens.xml index 4788fdcc5..c744b4d62 100644 --- a/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/values-land/dimens.xml +++ b/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/values-land/dimens.xml @@ -14,6 +14,7 @@ 50dp 50dp 32dp + 66dp 64dp diff --git a/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/values/dimens.xml b/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/values/dimens.xml index 8fb58b9ed..406a84bc9 100644 --- a/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/values/dimens.xml +++ b/aacs/android/app-components/alexa-auto-comms-ui/src/main/res/values/dimens.xml @@ -26,4 +26,5 @@ 8dp 0dp 1dp + 100dp diff --git a/aacs/android/app-components/alexa-auto-contacts/aacscontacts/build.gradle b/aacs/android/app-components/alexa-auto-contacts/aacscontacts/build.gradle index 22e850375..cf632b65d 100644 --- a/aacs/android/app-components/alexa-auto-contacts/aacscontacts/build.gradle +++ b/aacs/android/app-components/alexa-auto-contacts/aacscontacts/build.gradle @@ -7,7 +7,7 @@ android { minSdkVersion 26 targetSdkVersion 27 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles 'consumer-rules.pro' diff --git a/aacs/android/app-components/alexa-auto-device-usage/build.gradle b/aacs/android/app-components/alexa-auto-device-usage/build.gradle index a2b34627b..36a14eb4d 100644 --- a/aacs/android/app-components/alexa-auto-device-usage/build.gradle +++ b/aacs/android/app-components/alexa-auto-device-usage/build.gradle @@ -7,7 +7,7 @@ android { minSdkVersion 26 targetSdkVersion 28 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' diff --git a/aacs/android/app-components/alexa-auto-lwa-auth/build.gradle b/aacs/android/app-components/alexa-auto-lwa-auth/build.gradle index 4caf35573..dd4622518 100644 --- a/aacs/android/app-components/alexa-auto-lwa-auth/build.gradle +++ b/aacs/android/app-components/alexa-auto-lwa-auth/build.gradle @@ -6,7 +6,7 @@ android { defaultConfig { minSdkVersion 25 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-media-player/build.gradle b/aacs/android/app-components/alexa-auto-media-player/build.gradle index 5acf44ab0..f66cc6963 100644 --- a/aacs/android/app-components/alexa-auto-media-player/build.gradle +++ b/aacs/android/app-components/alexa-auto-media-player/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 26 targetSdkVersion 30 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" libraryVariants.all { variant -> variant.outputs.all { diff --git a/aacs/android/app-components/alexa-auto-navigation/build.gradle b/aacs/android/app-components/alexa-auto-navigation/build.gradle index 3bba3218f..6acea4bdd 100644 --- a/aacs/android/app-components/alexa-auto-navigation/build.gradle +++ b/aacs/android/app-components/alexa-auto-navigation/build.gradle @@ -5,7 +5,7 @@ android { defaultConfig { minSdkVersion 26 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-settings/build.gradle b/aacs/android/app-components/alexa-auto-settings/build.gradle index 1c162d03a..6b7e90d46 100644 --- a/aacs/android/app-components/alexa-auto-settings/build.gradle +++ b/aacs/android/app-components/alexa-auto-settings/build.gradle @@ -7,7 +7,7 @@ android { defaultConfig { minSdkVersion 26 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/AlexaSettingsLanguagesFragment.java b/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/AlexaSettingsLanguagesFragment.java index ce9093055..5550543dd 100644 --- a/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/AlexaSettingsLanguagesFragment.java +++ b/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/AlexaSettingsLanguagesFragment.java @@ -443,7 +443,9 @@ public void run() { */ private void RefreshAppUI() { Log.d(TAG, "Refresh Alexa application UI."); - getActivity().recreate(); + if (getActivity() != null) { + getActivity().recreate(); + } } private TwoChoiceDialog createTwoChoiceDialog(@NonNull TwoChoiceDialog.Params params) { diff --git a/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/SettingsActivity.java b/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/SettingsActivity.java index e30029cec..2d9cfd1e9 100644 --- a/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/SettingsActivity.java +++ b/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/SettingsActivity.java @@ -331,8 +331,13 @@ private void handleBackButtonPress(int id) { private void setupBackButtonVisibility() { getNavigationController().addOnDestinationChangedListener((controller, destination, arguments) -> { int id = destination.getId(); + mViewBinding.navigationBar.settingNavHostLayout.setVisibility(View.VISIBLE); if (disableBackButtonForResource(id)) { - mViewBinding.navigationBar.navigateBackButton.setVisibility(View.INVISIBLE); + if (id == R.id.navigation_fragment_communication) { + mViewBinding.navigationBar.settingNavHostLayout.setVisibility(View.GONE); + } else { + mViewBinding.navigationBar.navigateBackButton.setVisibility(View.INVISIBLE); + } } else { mViewBinding.navigationBar.navigateBackButton.setVisibility(View.VISIBLE); } diff --git a/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/home/AlexaSettingsHomeFragment.java b/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/home/AlexaSettingsHomeFragment.java index bd8927500..b4f880f5c 100644 --- a/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/home/AlexaSettingsHomeFragment.java +++ b/aacs/android/app-components/alexa-auto-settings/src/main/java/com/amazon/alexa/auto/settings/home/AlexaSettingsHomeFragment.java @@ -301,11 +301,12 @@ private void installCommunicationsEventHandler() { defaultAlexaComms.setSummary(device.getValue().getDeviceName()); } else { Log.d(TAG, "Primary device is not found."); - defaultAlexaComms.setSummary(""); + defaultAlexaComms.setSummary("None"); } }); } else { Log.d(TAG, "Device is not found."); + defaultAlexaComms.setSummary("None"); } defaultAlexaComms.setOnPreferenceClickListener(preference -> { diff --git a/aacs/android/app-components/alexa-auto-settings/src/main/res/xml/alexa_sound_preferences.xml b/aacs/android/app-components/alexa-auto-settings/src/main/res/xml/alexa_sound_preferences.xml index 008ccaea9..e90833a1f 100644 --- a/aacs/android/app-components/alexa-auto-settings/src/main/res/xml/alexa_sound_preferences.xml +++ b/aacs/android/app-components/alexa-auto-settings/src/main/res/xml/alexa_sound_preferences.xml @@ -16,6 +16,6 @@ app:title="@string/setting_alexa_sounds_request_end_title" app:summary="@string/setting_alexa_sounds_request_end_summary" app:defaultValue="true" - app:layout="@layout/alexa_last_preference_layout" /> + app:layout="@layout/alexa_preference_layout" /> \ No newline at end of file diff --git a/aacs/android/app-components/alexa-auto-setup/build.gradle b/aacs/android/app-components/alexa-auto-setup/build.gradle index 2838a8b27..2934952df 100644 --- a/aacs/android/app-components/alexa-auto-setup/build.gradle +++ b/aacs/android/app-components/alexa-auto-setup/build.gradle @@ -7,7 +7,7 @@ android { defaultConfig { minSdkVersion 26 versionCode 1 - versionName "4.1" + versionName "4.1.1" vectorDrawables.useSupportLibrary = true testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } diff --git a/aacs/android/app-components/alexa-auto-telephony/aacstelephony/build.gradle b/aacs/android/app-components/alexa-auto-telephony/aacstelephony/build.gradle index 5bcfcdc80..b030b86de 100644 --- a/aacs/android/app-components/alexa-auto-telephony/aacstelephony/build.gradle +++ b/aacs/android/app-components/alexa-auto-telephony/aacstelephony/build.gradle @@ -7,7 +7,7 @@ android { minSdkVersion 26 targetSdkVersion 27 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles 'consumer-rules.pro' diff --git a/aacs/android/app-components/alexa-auto-templateruntime-renderer/build.gradle b/aacs/android/app-components/alexa-auto-templateruntime-renderer/build.gradle index 739673dae..3bbb676d1 100644 --- a/aacs/android/app-components/alexa-auto-templateruntime-renderer/build.gradle +++ b/aacs/android/app-components/alexa-auto-templateruntime-renderer/build.gradle @@ -5,7 +5,7 @@ android { defaultConfig { minSdkVersion 26 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-tts/aacstts/build.gradle b/aacs/android/app-components/alexa-auto-tts/aacstts/build.gradle index f4b76143d..6f75c7b7a 100644 --- a/aacs/android/app-components/alexa-auto-tts/aacstts/build.gradle +++ b/aacs/android/app-components/alexa-auto-tts/aacstts/build.gradle @@ -7,7 +7,7 @@ android { minSdkVersion 26 targetSdkVersion 28 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } diff --git a/aacs/android/app-components/alexa-auto-ux-restrictions/build.gradle b/aacs/android/app-components/alexa-auto-ux-restrictions/build.gradle index 951bfa6df..eb0b58bf6 100644 --- a/aacs/android/app-components/alexa-auto-ux-restrictions/build.gradle +++ b/aacs/android/app-components/alexa-auto-ux-restrictions/build.gradle @@ -6,7 +6,7 @@ android { minSdkVersion 26 targetSdkVersion 29 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' useLibrary 'android.car' } diff --git a/aacs/android/app-components/alexa-auto-ux-restrictions/src/main/java/com/amazon/alexa/auto/uxrestrictions/CarUxRestrictionsModule.java b/aacs/android/app-components/alexa-auto-ux-restrictions/src/main/java/com/amazon/alexa/auto/uxrestrictions/CarUxRestrictionsModule.java index 3c15fd37d..c2a11a2f6 100644 --- a/aacs/android/app-components/alexa-auto-ux-restrictions/src/main/java/com/amazon/alexa/auto/uxrestrictions/CarUxRestrictionsModule.java +++ b/aacs/android/app-components/alexa-auto-ux-restrictions/src/main/java/com/amazon/alexa/auto/uxrestrictions/CarUxRestrictionsModule.java @@ -160,6 +160,14 @@ private void observeCarUxRestrictionsChanges() { private void saveDrivingState(String drivingStateValue) { SharedPreferences.Editor editor = mContext.getSharedPreferences(Constants.APL_RUNTIME_PROPERTIES, 0).edit(); editor.putString(Constants.APL_RUNTIME_PROPERTY_DRIVING_STATE_NAME, drivingStateValue); + // This is a temporary solution as it should be handled by the Auto SDK + String videoValue = Constants.APL_RUNTIME_PROPERTY_VIDEO_VALUE_DISABLED; + if (drivingStateValue.equals(Constants.APL_RUNTIME_PROPERTY_DRIVING_STATE_VALUE_PARKED)) { + videoValue = Constants.APL_RUNTIME_PROPERTY_VIDEO_VALUE_ENABLED; + } + + Log.d(TAG, "Video property " + videoValue); + editor.putString(Constants.APL_RUNTIME_PROPERTY_VIDEO_NAME, videoValue); editor.apply(); } } \ No newline at end of file diff --git a/aacs/android/app-components/alexa-auto-voice-interaction/build.gradle b/aacs/android/app-components/alexa-auto-voice-interaction/build.gradle index b3be404cc..af1f8c891 100644 --- a/aacs/android/app-components/alexa-auto-voice-interaction/build.gradle +++ b/aacs/android/app-components/alexa-auto-voice-interaction/build.gradle @@ -7,7 +7,7 @@ android { minSdkVersion 26 targetSdkVersion 28 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/app-components/alexa-auto-voice-ui/build.gradle b/aacs/android/app-components/alexa-auto-voice-ui/build.gradle index cabb9dd58..c6ebabfba 100644 --- a/aacs/android/app-components/alexa-auto-voice-ui/build.gradle +++ b/aacs/android/app-components/alexa-auto-voice-ui/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 26 targetSdkVersion 28 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes { diff --git a/aacs/android/common/commonutils/aacscommonutils/build.gradle b/aacs/android/common/commonutils/aacscommonutils/build.gradle index 92184e7a1..d822914d0 100644 --- a/aacs/android/common/commonutils/aacscommonutils/build.gradle +++ b/aacs/android/common/commonutils/aacscommonutils/build.gradle @@ -8,7 +8,7 @@ android { defaultConfig { minSdkVersion 26 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles 'consumer-rules.pro' diff --git a/aacs/android/common/constants/aacsconstants/build.gradle b/aacs/android/common/constants/aacsconstants/build.gradle index 042f1bb91..882de3bec 100644 --- a/aacs/android/common/constants/aacsconstants/build.gradle +++ b/aacs/android/common/constants/aacsconstants/build.gradle @@ -7,7 +7,7 @@ android { minSdkVersion 26 targetSdkVersion 27 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles 'consumer-rules.pro' diff --git a/aacs/android/common/ipc/aacsipc/build.gradle b/aacs/android/common/ipc/aacsipc/build.gradle index 1e9dbe029..4ddbf8c8d 100644 --- a/aacs/android/common/ipc/aacsipc/build.gradle +++ b/aacs/android/common/ipc/aacsipc/build.gradle @@ -7,7 +7,7 @@ android { minSdkVersion 26 targetSdkVersion 27 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { diff --git a/aacs/android/sample-app/alexa-auto-app/build.gradle b/aacs/android/sample-app/alexa-auto-app/build.gradle index 51d412a8c..fa3b47e9c 100644 --- a/aacs/android/sample-app/alexa-auto-app/build.gradle +++ b/aacs/android/sample-app/alexa-auto-app/build.gradle @@ -9,7 +9,7 @@ android { applicationId "com.amazon.alexa.auto.app" minSdkVersion 27 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" multiDexEnabled true } diff --git a/aacs/android/service/core-service/build.gradle b/aacs/android/service/core-service/build.gradle index 550f8786e..aa094ddcd 100644 --- a/aacs/android/service/core-service/build.gradle +++ b/aacs/android/service/core-service/build.gradle @@ -11,7 +11,7 @@ android { minSdkVersion 26 targetSdkVersion 30 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { diff --git a/aacs/android/service/core-service/src/main/res/values-en/strings.xml b/aacs/android/service/core-service/src/main/res/values-en/strings.xml index db35ff72d..1c76fc7da 100644 --- a/aacs/android/service/core-service/src/main/res/values-en/strings.xml +++ b/aacs/android/service/core-service/src/main/res/values-en/strings.xml @@ -1,8 +1,8 @@ Alexa Auto Client Service lets you talk to Alexa in your vehicle. - Initialising.. - Initialisation complete. + Initializing.. + Initialization complete. AACS %1$s + %2$s - \ No newline at end of file + diff --git a/aacs/android/service/modules/aacs-extra/build.gradle b/aacs/android/service/modules/aacs-extra/build.gradle index 6ae8d67f9..ba54e2531 100644 --- a/aacs/android/service/modules/aacs-extra/build.gradle +++ b/aacs/android/service/modules/aacs-extra/build.gradle @@ -6,7 +6,7 @@ android { minSdkVersion 26 targetSdkVersion 30 versionCode 1 - versionName "4.1" + versionName "4.1.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" diff --git a/aacs/android/service/modules/maccandroid/build.gradle b/aacs/android/service/modules/maccandroid/build.gradle index 44dffa6cd..9056ace5f 100644 --- a/aacs/android/service/modules/maccandroid/build.gradle +++ b/aacs/android/service/modules/maccandroid/build.gradle @@ -26,7 +26,7 @@ android { minSdkVersion 22 targetSdkVersion 26 versionCode 1 - versionName "4.1" + versionName "4.1.1" multiDexEnabled true testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" diff --git a/docs/docs/android/jni/classes/annotated.html b/docs/docs/android/jni/classes/annotated.html index 27b5df69c..f23ecc603 100644 --- a/docs/docs/android/jni/classes/annotated.html +++ b/docs/docs/android/jni/classes/annotated.html @@ -23,7 +23,7 @@ Logo
Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -220,7 +220,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b-members.html index 117b73d3e..b1acc6ef8 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b.html index b3821e82a..019078e79 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book-members.html index 62e2ae89a..6aa2e2ec1 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html index c40681ed3..ae636e8b9 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -203,7 +203,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration-members.html index 772d0c958..a84d785e4 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html index 78684c1bf..189f2bd94 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -118,7 +118,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts-members.html index 2e403201c..25b7ec5fb 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html index c026d3e40..c72e28bc0 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -241,7 +241,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client-members.html index bf3ba4779..6f76e028d 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html index 443b9c44d..ab23dd297 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -223,7 +223,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker-members.html index 34b46735e..c9e1b8026 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html index d62cb053e..6bbf8bcea 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -258,7 +258,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player-members.html index ee81d0693..a814a303d 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html index db369fdef..1d4ad0cfa 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -194,7 +194,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider-members.html index 17e148fa1..760beabb7 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html index b8fc3ebf0..7ead75169 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -204,7 +204,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup-members.html index 15c990290..a37c69062 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html index 71e72c7b1..bad23441d 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -140,7 +140,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb-members.html index f4b766b77..2877fa6a3 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html index 814a9d45a..117844415 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller-members.html index c846d915f..1ab13ed8e 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html index 2ae038d8a..4608bc9a4 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -249,7 +249,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter-members.html index 4b987b8c8..7f21cc4b2 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -95,7 +95,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html index eb1b4f87d..3cc9fa09a 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -804,7 +804,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset-members.html index 1bee90312..f13339959 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html index abab19ce4..73872ba75 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -111,7 +111,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source-members.html index 713663396..8f5d507fe 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -91,7 +91,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html index a48be8253..731c96ddc 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -588,7 +588,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor-members.html index 933d96ac2..f2d4be21f 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html index f62ff394b..41abf956a 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -169,7 +169,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications-members.html index 6e157635c..6b57448bd 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html index 27b21516d..b71ecccf9 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -139,7 +139,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller-members.html index 0f1c72e93..6045b68d0 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html index 66fa1929f..deda5f0a4 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -158,7 +158,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer-members.html index 2233da98c..d937b3e73 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html index 35dfe76c8..9b3c3a7a8 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -265,7 +265,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer-members.html index 0802999b9..75bb1ef71 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer.html index c08db6136..d6ea3a795 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime-members.html index 98879e9b8..76bceb3e9 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html index 6bfa70729..f91bf4855 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -248,7 +248,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration-members.html index e80432021..813b427df 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -98,7 +98,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html index 4eef48404..25f498e96 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -1034,7 +1034,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l-members.html index 2e83eebed..c3d5fe308 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -95,7 +95,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html index c5724662e..b3999259e 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -835,7 +835,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html index 6fcf0aaca..a330f4684 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html index 974377438..65621e7dc 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -120,7 +120,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider-members.html index dffda8478..e79028255 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider.html index 9023ed3f7..a83f3b37e 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -86,7 +86,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output-members.html index 48a78f4b8..4bd2cad7d 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -94,7 +94,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html index 3d1a24fc9..5d99a64e4 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -585,7 +585,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider-members.html index 43ffc804b..7daa5864b 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider.html index 56f6c921a..334c18045 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -86,7 +86,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization-members.html index 57fa4ec31..53ad45862 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -85,7 +85,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html index 457840042..dcb5f3667 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -463,7 +463,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control-members.html index 6c3d00abe..0c3585961 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -89,7 +89,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html index 76deb6bdb..7a547dc60 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -650,7 +650,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration-members.html index ff9652923..e1f48f10c 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -96,7 +96,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html index 96cc931aa..75e76a9c3 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -794,7 +794,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action-members.html index fddf78c49..1a557f0b4 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html index 0e4e7bce5..234e97ba4 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -100,7 +100,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l-members.html index 01cb93685..73fc281d6 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -84,7 +84,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html index c49251a13..bb7c4ab6c 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -324,7 +324,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html index fab0c73b1..f1d37dfac 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html index f47f31e54..548653c96 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -199,7 +199,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity-members.html index 51566fbb6..d0073753e 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html index e36534d93..23e24291f 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -322,7 +322,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_engine-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_engine-members.html index a08805d01..8d12c144e 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_engine-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_engine-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html index 4e524d02e..01ea073bf 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -239,7 +239,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface-members.html index a0442a29e..16d9aae98 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface.html index 7c6bce3a9..a964a7da9 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration-members.html index 5ec074a61..23c3d34d9 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration.html index 01df14f62..2bccdfe07 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain-members.html index f5600ae3f..3c9776978 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html index d952a2a08..05022d3a2 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -384,7 +384,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage-members.html index 6429cffd3..a2e157a61 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html index 36cdffb79..90beb7912 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -118,7 +118,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location-members.html index c30f7750d..b3a1d08d8 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -83,7 +83,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location.html index 125b443d5..0138dd8ae 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -303,7 +303,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider-members.html index dc7eb866a..88badcf34 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html index a687ce5f6..2ae06a4c5 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -168,7 +168,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger-members.html index c5ff74a15..cfa59a586 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html index 57d87a496..29273cf8d 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -189,7 +189,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration-members.html index e0f60e3ea..0b5262f18 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html index 0e72adfc8..e288a2686 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -428,7 +428,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging-members.html index 3c70a9608..af34e15c9 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -85,7 +85,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html index 62be3a155..bcc0413fe 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -525,7 +525,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation-members.html index 5870315e6..308349a08 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -84,7 +84,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html index 31c76ba71..7e1a2eb34 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -411,7 +411,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration-members.html index 0f37a61d6..5087b5220 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html index 3c2961107..0592c2f1a 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -118,7 +118,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider-members.html index 8283feeed..845681ee4 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html index 26add7d15..4963f98ff 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -171,7 +171,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller-members.html index 2e5ed166d..855b80f9b 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -92,7 +92,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html index e821eb1e4..198dc9649 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -745,7 +745,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager-members.html index 6ce4a0bb7..12e1f5a4f 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html index 19fdce7f3..e8b56d7b3 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -248,7 +248,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration-members.html index 7421b55b3..40f3648db 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html index 04552a864..8ffe7c8d0 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -119,7 +119,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech-members.html index 7434c49fa..ebc3adb5a 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html index 3035eb79b..f5139952b 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -323,7 +323,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html index 238e9a29c..2b766dbf8 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html index d13cbc6d8..617b0c2d5 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -159,7 +159,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test-members.html index 648ad763d..68d879fb1 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test.html index 5e53b9545..bdf8e4644 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client-members.html index c676aa911..01cd86a04 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html index e5fa63031..ebde5b8fd 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -181,7 +181,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info-members.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info-members.html index 4f7dbda48..af5f09522 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info-members.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info.html b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info.html index 2a8d02282..214837579 100644 --- a/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info.html +++ b/docs/docs/android/jni/classes/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/classes.html b/docs/docs/android/jni/classes/classes.html index b4d793655..8c295ab4d 100644 --- a/docs/docs/android/jni/classes/classes.html +++ b/docs/docs/android/jni/classes/classes.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -235,7 +235,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/deprecated.html b/docs/docs/android/jni/classes/deprecated.html index dc4e00815..1b5cad520 100644 --- a/docs/docs/android/jni/classes/deprecated.html +++ b/docs/docs/android/jni/classes/deprecated.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -179,7 +179,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode-members.html index ab7c7d5a0..467515b07 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode.html index 748caf5cf..0ec73b980 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type-members.html index 236f889f1..a0c1be774 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html index bd4558479..8becd4c70 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state-members.html index 1715f4715..23308d36a 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -87,7 +87,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html index e45d9f7ba..a07467c78 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -270,7 +270,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error-members.html index d8dc1547b..de6522340 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -90,7 +90,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html index b97b6ba48..5eec7e09c 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -321,7 +321,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state-members.html index b4a76ef2f..ba4c6408b 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html index 36e0ee531..313b7398d 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -151,7 +151,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason-members.html index f209edb09..2e9e7fa0e 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -93,7 +93,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html index 0c4d37e8f..7a4561570 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -372,7 +372,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status-members.html index 67ebcdb5c..b0de78626 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html index 02a103e9d..8dbc2b72f 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state-members.html index 2d7cdb828..9320926fb 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html index d79720331..af0f0a3f4 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -168,7 +168,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type-members.html index 3624b1b16..143fcb4c9 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html index 418657a51..e34b45e32 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity-members.html index afcec499d..2a1611e86 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html index e1ad5919b..0115f67d1 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -185,7 +185,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error-members.html index 7f89b57f0..4e5df1125 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -90,7 +90,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html index 1191dd844..ac3fd05fd 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -321,7 +321,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state-members.html index 606d40b06..3b228bcb5 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html index 1aa86cdb4..8b66c7360 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -151,7 +151,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code-members.html index 6738c0b3f..c6459e394 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html index 44b48fb35..71a8bae82 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band-members.html index 3b7fc7433..9c089af59 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html index b33b54313..093a66ede 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites-members.html index d07d6ce43..e0d260c13 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html index 01b760565..dde99afd4 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type-members.html index 1c737e172..819698e03 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html index 6eb03d93e..df036738e 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -185,7 +185,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation-members.html index 6b6f46ce7..28ab3c5a5 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html index 81dd561fd..a71d2f6d1 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type-members.html index 399790f11..a9ed22f57 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -91,7 +91,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html index dd393138b..65c11ccc8 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -338,7 +338,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation-members.html index b88acc8ec..76a69f5d7 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation.html index 20c3fbaaf..575d76bbf 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector-members.html index dd4cab242..0d54f1f4c 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html index 55feb889e..4c26dd235 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites-members.html index 9c8bab3a2..d99f7074a 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html index 3ceb759a4..62d2d11e1 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type-members.html index 3e2094b5e..26b5061e1 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html index 4e84871b8..4f843bf14 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -185,7 +185,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type-members.html index a31e3853c..615d23a0a 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -91,7 +91,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html index 1e854b1f1..3a863667f 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -338,7 +338,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source-members.html index 386a59d23..927dbd334 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -86,7 +86,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html index 606c664e4..69815f1d0 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -253,7 +253,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation-members.html index 9fd7c9537..c2a6f707c 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation.html index 8ed59819f..e807bc74f 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason-members.html index 42d0cc9ac..4bd7da373 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html index 711701486..f1c2c8d1a 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status-members.html index 3d1d2b553..31e2ecff1 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html index 35f0f7d3b..2cdd92592 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -151,7 +151,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state-members.html index de85e6251..db14ff49f 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html index 6bc103ada..467e70bc2 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button-members.html index 6c0130d40..c09e7988c 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html index 39ce6bf0f..eef56618b 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -185,7 +185,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle-members.html index 1f063458f..6d53436e8 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html index 4247a4133..baef7bfd0 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -168,7 +168,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator-members.html index 36fb76890..012b8ff39 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html index 26d7e9f12..96bc035a8 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state-members.html index ea37c6956..81f68d5e1 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html index 9f6fb2c87..6574a36a5 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity-members.html index 4003f0e01..3d69c0fe9 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html index 027649c56..3ddcd44e1 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -185,7 +185,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event-members.html index 48552639b..9dd00f0dd 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html index f69f0355b..3832c0221 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -168,7 +168,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding-members.html index f21912db9..f593a4467 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding.html index df568a7c6..5552b2020 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type-members.html index 233f8b6cd..c62f5c679 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type.html index 1d13d41d0..641f4c03c 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action-members.html index ffcc03163..afb009e6d 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html index e4f375b88..891bb8fed 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error-members.html index 5234196ee..028bc99d6 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html index 67c3d3085..347d9c7d6 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -168,7 +168,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state-members.html index b5b67d236..7ed8dd1e5 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html index dc5aa64af..d8a345186 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state-members.html index b9e194632..718dd096e 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state.html index c79104bb4..6e89bc2f7 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type-members.html index 210a94e4f..20b15efc3 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type.html index 37ed8c2a9..dfdd518cd 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding-members.html index efb47d170..5f515c02b 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding.html index afdf16611..f0cc268c1 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state-members.html index abd92bfc1..fea073a09 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html index bfb6656e4..f2dd6d535 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state-members.html index 651e11b50..5d0c09985 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state.html index 0449bd4cf..06ac2bcbf 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state-members.html index 4afa1c704..7ca19eaa1 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html index cb3790b1d..4987745fa 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -185,7 +185,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason-members.html index 5abbf65d6..67d03af4c 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html index 57d11f86d..1f54608ed 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -185,7 +185,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code-members.html index 51f03a530..d7103b9ea 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html index 415b0b8e1..8c0c4b023 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode-members.html index 74bb62e90..932f33a7e 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -76,7 +76,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode.html index 20e3a247e..ac8475ea3 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type-members.html index 948fb37fc..4ce1822aa 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -80,7 +80,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html index 7a988f3f9..5ed37a156 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -151,7 +151,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access-members.html index cde468f88..d61e1eba7 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html index 003c1a575..27b6ceab2 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level-members.html index 1eb1fa6df..9235ef4cb 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html index 88e66d803..5fe576940 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -185,7 +185,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state-members.html index 9032e4d35..703518710 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html index 05c41f2fa..bfef4ad54 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code-members.html index e7c7c1156..08e26e32b 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -79,7 +79,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html index c0f806d01..baca636b8 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -134,7 +134,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state-members.html index 9380ae1a2..36641716d 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html index 4f5c87a88..4f039329d 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status-members.html index 35ab1d66f..3064bac63 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html index 132250692..3b71767b6 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -168,7 +168,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error-members.html index a54cc4184..6adb67fd3 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -81,7 +81,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html index 9da8dddd2..d2cc043e9 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -169,7 +169,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state-members.html index 229263224..31d69c38d 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -82,7 +82,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html index 90e311124..56a022af5 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -194,7 +194,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property-members.html index 7e6de66fe..1d2b307c6 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -77,7 +77,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html index 8988c2cd6..136b53ba5 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -100,7 +100,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state-members.html index be49a9c07..de4f7b33b 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html index 936430c54..054ede4dc 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -118,7 +118,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error-members.html index ca67e9cc1..1052d9053 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html index c14b465cc..70838524d 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -118,7 +118,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state-members.html index 8899701c5..294e00a5f 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -78,7 +78,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html index 345c7c951..3ec1b25ac 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -117,7 +117,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type-members.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type-members.html index 546297d18..35a767102 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type-members.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type-members.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -90,7 +90,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html index a81192932..6f24c2343 100644 --- a/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html +++ b/docs/docs/android/jni/classes/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -340,7 +340,7 @@

- Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/functions.html b/docs/docs/android/jni/classes/functions.html index f71b67214..7c0f73922 100644 --- a/docs/docs/android/jni/classes/functions.html +++ b/docs/docs/android/jni/classes/functions.html @@ -23,7 +23,7 @@ Logo

Alexa Auto SDK -  4.1.0 +  4.1.1
@@ -1569,7 +1569,7 @@

- y -


    - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/functions_func.html b/docs/docs/android/jni/classes/functions_func.html index d5f4d3d47..9167811a0 100644 --- a/docs/docs/android/jni/classes/functions_func.html +++ b/docs/docs/android/jni/classes/functions_func.html @@ -23,7 +23,7 @@ Logo

    Alexa Auto SDK -  4.1.0 +  4.1.1
    @@ -903,7 +903,7 @@

    - w -


      - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/functions_vars.html b/docs/docs/android/jni/classes/functions_vars.html index c183ce153..d82189bb6 100644 --- a/docs/docs/android/jni/classes/functions_vars.html +++ b/docs/docs/android/jni/classes/functions_vars.html @@ -23,7 +23,7 @@ Logo

      Alexa Auto SDK -  4.1.0 +  4.1.1
      @@ -805,7 +805,7 @@

      - y -


        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/hierarchy.html b/docs/docs/android/jni/classes/hierarchy.html index d5647a536..bccf5e4b8 100644 --- a/docs/docs/android/jni/classes/hierarchy.html +++ b/docs/docs/android/jni/classes/hierarchy.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -189,7 +189,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/index.html b/docs/docs/android/jni/classes/index.html index 5064a09c5..a2dc509b8 100644 --- a/docs/docs/android/jni/classes/index.html +++ b/docs/docs/android/jni/classes/index.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -72,7 +72,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/android/jni/classes/pages.html b/docs/docs/android/jni/classes/pages.html index 90f91859a..078d677aa 100644 --- a/docs/docs/android/jni/classes/pages.html +++ b/docs/docs/android/jni/classes/pages.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/doxygen-docs/android.html b/docs/docs/doxygen-docs/android.html deleted file mode 100644 index a6c5cfcbb..000000000 --- a/docs/docs/doxygen-docs/android.html +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/docs/doxygen-docs/android/aace-logo.png b/docs/docs/doxygen-docs/android/aace-logo.png deleted file mode 100644 index aec2c5013..000000000 Binary files a/docs/docs/doxygen-docs/android/aace-logo.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/annotated.html b/docs/docs/doxygen-docs/android/annotated.html deleted file mode 100644 index 27b5df69c..000000000 --- a/docs/docs/doxygen-docs/android/annotated.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class List - - - - - - - - - -

        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        -
        Class List
        -
        -
        -
        Here are the classes, structs, unions and interfaces with brief descriptions:
        -
        [detail level 1234567]
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
         Ncom
         Namazon
         Naace
         Naasb
         CAASB
         Naddressbook
         Nconfig
         CAddressBook
         Nalexa
         Nconfig
         CAlerts
         CAlexaClient
         CAlexaSpeaker
         CAudioPlayer
         CAuthProvider
         CDeviceSetup
         CDoNotDisturb
         CEqualizerController
         CExternalMediaAdapter
         CGlobalPreset
         CLocalMediaSource
         CMediaPlaybackRequestor
         CNotifications
         CPlaybackController
         CSpeechRecognizer
         CSpeechSynthesizer
         CTemplateRuntime
         Napl
         Nconfig
         CAPL
         Naudio
         CAudioInputProvider
         CAudioOutput
         CAudioOutputProvider
         Nauthorization
         CAuthorization
         NcarControl
         CCarControl
         CCarControlConfiguration
         Ncbl
         Nconfig
         CCBL
         Nconnectivity
         CAlexaConnectivity
         Ncore
         Nconfig
         CEngine
         CPlatformInterface
         NcustomDomain
         CCustomDomain
         NdeviceUsage
         CDeviceUsage
         Nlocation
         CLocation
         CLocationProvider
         Nlogger
         Nconfig
         CLogger
         Nmessaging
         CMessaging
         Nnavigation
         Nconfig
         CNavigation
         Nnetwork
         CNetworkInfoProvider
         Nphonecontrol
         CPhoneCallController
         NpropertyManager
         CPropertyManager
         Nstorage
         Nconfig
         NtextToSpeech
         CTextToSpeech
         Nvehicle
         Nconfig
         Nmaccandroid
         Nmodel
         CPlayerPlaybackInfo
         CExampleUnitTest
         CMACCAndroidClient
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/bc_s.png b/docs/docs/doxygen-docs/android/bc_s.png deleted file mode 100644 index 224b29aa9..000000000 Binary files a/docs/docs/doxygen-docs/android/bc_s.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/bdwn.png b/docs/docs/doxygen-docs/android/bdwn.png deleted file mode 100644 index 940a0b950..000000000 Binary files a/docs/docs/doxygen-docs/android/bdwn.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b-members.html deleted file mode 100644 index 117b73d3e..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.aasb.AASB Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.aasb.AASB, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b.html deleted file mode 100644 index b3821e82a..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.aasb.AASB Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.aasb.AASB Class Referenceabstract
        -
        -
        -

        Detailed Description

        -

        The AASB class should be extended by to provide an implementation of the AASB interface.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book-members.html deleted file mode 100644 index 62e2ae89a..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.addressbook.AddressBook Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.addressbook.AddressBook, including all inherited members.

        - - - - -
        addAddressBook(String addressBookSourceId, String name, AddressBookType type)com.amazon.aace.addressbook.AddressBook
        getEntries(String addressBookSourceId, IAddressBookEntriesFactory factory)com.amazon.aace.addressbook.AddressBook
        removeAddressBook(String addressBookSourceId)com.amazon.aace.addressbook.AddressBook
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html deleted file mode 100644 index c40681ed3..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.addressbook.AddressBook Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.addressbook.AddressBook Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  AddressBookType
         
        - - - - - - - -

        -Public Member Functions

        final boolean addAddressBook (String addressBookSourceId, String name, AddressBookType type)
         
        final boolean removeAddressBook (String addressBookSourceId)
         
        boolean getEntries (String addressBookSourceId, IAddressBookEntriesFactory factory)
         
        -

        Detailed Description

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ addAddressBook()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final boolean com.amazon.aace.addressbook.AddressBook.addAddressBook (String addressBookSourceId,
        String name,
        AddressBookType type 
        )
        -
        -

        Notifies the engine on an availability of an address book

        -
        Parameters
        - - - - -
        [in]addressBookSourceIdA unique identifier for an address book.
        [in]nameFriendly name of the address book, or an empty string if not available.
        [in]typeType of the address book AddressBookType.
        -
        -
        -
        Returns
        false if address book was already added or some internal error otherwise true on successful.
        - -
        -
        - -

        ◆ removeAddressBook()

        - -
        -
        - - - - - - - - -
        final boolean com.amazon.aace.addressbook.AddressBook.removeAddressBook (String addressBookSourceId)
        -
        -

        Notifies the engine on a non-availability of an already available address book.

        -
        Parameters
        - - -
        [in]addressBookSourceIdA unique identifier for an address book. Set this to empty string for engine to remove all uploaded address books.
        -
        -
        -
        Returns
        false if address book does not already added or some internal error otherwise true on successful.
        - -
        -
        - -

        ◆ getEntries()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.addressbook.AddressBook.getEntries (String addressBookSourceId,
        IAddressBookEntriesFactory factory 
        )
        -
        -

        Notifies the platform implementation to ingest address book entries using factory methods. Please note that engine may call this function multiple times to get the entries of the same address book.

        -
        Parameters
        - - - -
        [in]addressBookSourceIdA unique identifier for an address book added using addAddressBook
        [in]factoryFactory class for ingesting address book entries.
        -
        -
        -
        Returns
        Return true if platform implementation has successfully ingested all the entries of the address book otherwise false.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration-members.html deleted file mode 100644 index 772d0c958..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.addressbook.config.AddressBookConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.addressbook.config.AddressBookConfiguration, including all inherited members.

        - - -
        createAddressBookConfig(final boolean cleanAllAddressBooksAtStart)com.amazon.aace.addressbook.config.AddressBookConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html deleted file mode 100644 index 78684c1bf..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.addressbook.config.AddressBookConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.addressbook.config.AddressBookConfiguration Class Reference
        -
        -
        - - - - -

        -Static Public Member Functions

        static EngineConfiguration createAddressBookConfig (final boolean cleanAllAddressBooksAtStart)
         
        -

        Detailed Description

        -

        The AddressBookConfiguration class programmatically generates the "aace.addressBook" com.amazon.aace.core.config.EngineConfiguration used to configure the Address Book module.

        -

        Member Function Documentation

        - -

        ◆ createAddressBookConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.addressbook.config.AddressBookConfiguration.createAddressBookConfig (final boolean cleanAllAddressBooksAtStart)
        -
        -static
        -
        -

        Factory method used to programmatically generate "aace.addressBook" configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.addressBook" : {
        "cleanAllAddressBooksAtStart" : <true/false>
        }
        }
        Parameters
        - - -
        [in]cleanAllAddressBooksAtStartindicates whether to clean all address books at start. The default value is true.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts-members.html deleted file mode 100644 index 2e403201c..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.Alerts Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.Alerts, including all inherited members.

        - - - - - - -
        alertCreated(String alertToken, String detailedInfo)com.amazon.aace.alexa.Alerts
        alertDeleted(String alertToken)com.amazon.aace.alexa.Alerts
        alertStateChanged(String alertToken, AlertState state, String reason)com.amazon.aace.alexa.Alerts
        localStop()com.amazon.aace.alexa.Alerts
        removeAllAlerts()com.amazon.aace.alexa.Alerts
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html deleted file mode 100644 index c026d3e40..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.Alerts Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.Alerts Class Reference
        -
        -
        - - - - -

        -Classes

        enum  AlertState
         
        - - - - - - - - - - - -

        -Public Member Functions

        void alertStateChanged (String alertToken, AlertState state, String reason)
         
        void alertCreated (String alertToken, String detailedInfo)
         
        void alertDeleted (String alertToken)
         
        final void localStop ()
         
        final void removeAllAlerts ()
         
        -

        Detailed Description

        -

        Alerts should be extended to handle alerts (e.g. timers, alarms, reminders) from AVS. The platform implementation is responsible for rendering visual cues for an active alert.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ alertStateChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.Alerts.alertStateChanged (String alertToken,
        AlertState state,
        String reason 
        )
        -
        -

        Notifies the platform implementation of an alert state change

        -
        Parameters
        - - - - -
        alertTokenThe opaque token that uniquely identifies the alert
        stateThe new alert state
        reasonThe reason for the state change
        -
        -
        - -
        -
        - -

        ◆ alertCreated()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.Alerts.alertCreated (String alertToken,
        String detailedInfo 
        )
        -
        -

        Notifies the platform implementation of an alert created, with detailed alert info.

        -
        Parameters
        - - - -
        alertTokenThe AVS token of the alert.
        detailedInfoThe alert info payload : { "time" : <String> "type" : <String> "label" : <String> } time The time string ( Scheduled Time ISO_8601 ). type The type of the alert ( ALERT, REMINDER, TIMER ). label The label of the TIMER, description for REMINDER, or empty string for ALARM.
        -
        -
        - -
        -
        - -

        ◆ alertDeleted()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.Alerts.alertDeleted (String alertToken)
        -
        -

        Notifies the platform implementation of an alert deleted, with alert token.

        -
        Parameters
        - - -
        alertTokenThe AVS token of the alert.
        -
        -
        - -
        -
        - -

        ◆ localStop()

        - -
        -
        - - - - - - - -
        final void com.amazon.aace.alexa.Alerts.localStop ()
        -
        -

        Notifies the Engine of a platform request to stop any active alert, such as when a user presses a physical 'stop' button.

        - -
        -
        - -

        ◆ removeAllAlerts()

        - -
        -
        - - - - - - - -
        final void com.amazon.aace.alexa.Alerts.removeAllAlerts ()
        -
        -

        Notifies the Engine of a platform request to clear the user's pending alerts from storage. This may be useful for a scenario in which a user's pending alerts should not go off after he logs out of the application. This does not clear the user's pending alerts from the Alexa cloud since it does not support a local 'Remove all alerts' feature.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client-members.html deleted file mode 100644 index bf3ba4779..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AlexaClient Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.AlexaClient, including all inherited members.

        - - - - - -
        authStateChanged(AuthState state, AuthError error)com.amazon.aace.alexa.AlexaClient
        connectionStatusChanged(ConnectionStatus status, ConnectionChangedReason reason)com.amazon.aace.alexa.AlexaClient
        dialogStateChanged(DialogState state)com.amazon.aace.alexa.AlexaClient
        stopForegroundActivity()com.amazon.aace.alexa.AlexaClient
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html deleted file mode 100644 index 443b9c44d..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AlexaClient Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AlexaClient Class Referenceabstract
        -
        -
        - - - - - - - - - - - - -

        -Classes

        enum  AuthError
         
        enum  AuthState
         
        enum  ConnectionChangedReason
         
        enum  ConnectionStatus
         
        enum  DialogState
         
        - - - - - - - - - -

        -Public Member Functions

        void dialogStateChanged (DialogState state)
         
        void authStateChanged (AuthState state, AuthError error)
         
        void connectionStatusChanged (ConnectionStatus status, ConnectionChangedReason reason)
         
        void stopForegroundActivity ()
         
        -

        Detailed Description

        -

        AlexaClient should be extended to handle Alexa state changes on the platform.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ dialogStateChanged()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.AlexaClient.dialogStateChanged (DialogState state)
        -
        -

        Notifies the platform implementation of an Alexa dialog state change

        -
        Parameters
        - - -
        stateThe new Alexa dialog state
        -
        -
        -
        Note
        It is the responsibility of the platform implementation to provide a familiar Alexa experience for the user. See the AVS UX Attention System guidelines for recommendations on communicating Alexa attention states: https://developer.amazon.com/docs/alexa-voice-service/ux-design-attention.html#implement
        - -
        -
        - -

        ◆ authStateChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.AlexaClient.authStateChanged (AuthState state,
        AuthError error 
        )
        -
        -

        Notifies the platform implementation of an AVS authorization state change

        -
        Parameters
        - - - -
        stateThe new authorization state
        errorThe error state of the authorization attempt
        -
        -
        - -
        -
        - -

        ◆ connectionStatusChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.AlexaClient.connectionStatusChanged (ConnectionStatus status,
        ConnectionChangedReason reason 
        )
        -
        -

        Notifies the platform implementation of an AVS connection status change

        -
        Parameters
        - - - -
        statusThe new AVS connection status
        reasonThe reason for the status change
        -
        -
        - -
        -
        - -

        ◆ stopForegroundActivity()

        - -
        -
        - - - - - - - -
        void com.amazon.aace.alexa.AlexaClient.stopForegroundActivity ()
        -
        -

        Stops the foreground activity if there is one. This acts as a "stop" button that can be used to stop an ongoing activity that has acquired the audio or visual focus. This call will trigger the action to stop all user-observable activities and return immediately

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker-members.html deleted file mode 100644 index 34b46735e..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AlexaSpeaker Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.AlexaSpeaker, including all inherited members.

        - - - - - -
        localAdjustVolume(SpeakerType type, byte delta)com.amazon.aace.alexa.AlexaSpeaker
        localSetMute(SpeakerType type, boolean mute)com.amazon.aace.alexa.AlexaSpeaker
        localSetVolume(SpeakerType type, byte volume)com.amazon.aace.alexa.AlexaSpeaker
        speakerSettingsChanged(SpeakerType type, boolean local, byte volume, boolean mute)com.amazon.aace.alexa.AlexaSpeaker
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html deleted file mode 100644 index d62cb053e..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AlexaSpeaker Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AlexaSpeaker Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  SpeakerType
         
        - - - - - - - - - -

        -Public Member Functions

        void speakerSettingsChanged (SpeakerType type, boolean local, byte volume, boolean mute)
         
        final void localSetVolume (SpeakerType type, byte volume)
         
        final void localAdjustVolume (SpeakerType type, byte delta)
         
        final void localSetMute (SpeakerType type, boolean mute)
         
        -

        Detailed Description

        -

        AlexaSpeaker is the interface for setting the Alexa volume and mute controls.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ speakerSettingsChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.AlexaSpeaker.speakerSettingsChanged (SpeakerType type,
        boolean local,
        byte volume,
        boolean mute 
        )
        -
        -

        Notifies the platform implementation that the speaker settings have changed for a specific speaker type.

        -
        Note
        Calling AlexaSpeaker::localSetVolume, AlexaSpeaker::localAdjustVolume, or AlexaSpeaker::localSetMute from inside this function will cause deadlock.
        -
        Parameters
        - - - - - -
        [in]typeThe type of Alexa speaker being set.
        [in]localtrue if the change originated from calling AlexaSpeaker::localSetVolume, AlexaSpeaker::localAdjustVolume, or AlexaSpeaker::localSetMute.
        [in]volumeThe new volume setting of the Speaker. The volume reported will be scaled to the range [0,100].
        [in]muteThe mute setting of the Speaker. true when the Speaker is muted, else false.
        -
        -
        - -
        -
        - -

        ◆ localSetVolume()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.alexa.AlexaSpeaker.localSetVolume (SpeakerType type,
        byte volume 
        )
        -
        -

        Notifies the Engine of a volume change event originating on the platform, such as a user pressing a "volume up" or "volume down" button. If the Speaker is Type::AVS_SPEAKER_VOLUME, the Engine will respond with a call to setVolume() on each AVS-synced Speaker.

        -
        Parameters
        - - - -
        [in]typeThe type of Alexa speaker being set.
        [in]volumeThe new volume setting of the Speaker. The volume reported must be scaled to the range [0,100].
        -
        -
        - -
        -
        - -

        ◆ localAdjustVolume()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.alexa.AlexaSpeaker.localAdjustVolume (SpeakerType type,
        byte delta 
        )
        -
        -

        Notifies the Engine of a relative adjustment to the volume setting of the Speaker, originating on the platform. The delta value is relative to the current volume setting and is positive to increase volume or negative to reduce volume. The volume delta value should be scaled to fit the needs of the platform.

        -
        Parameters
        - - - -
        [in]typeThe type of Alexa speaker being set.
        [in]deltaThe volume adjustment to apply to the Speaker. delta is in the range [-100, 100].
        -
        -
        - -
        -
        - -

        ◆ localSetMute()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.alexa.AlexaSpeaker.localSetMute (SpeakerType type,
        boolean mute 
        )
        -
        -

        Notifies the Engine of a mute setting change event originating on the platform, such as a user pressing a "mute" button. If the Speaker is Type::AVS_SPEAKER_VOLUME, the Engine will respond with a call to setMute() on each AVS-synced Speaker.

        -
        Parameters
        - - - -
        [in]typeThe type of Alexa speaker being set.
        [in]muteThe new mute setting of the Speaker. true when the Speaker is muted, else false
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player-members.html deleted file mode 100644 index ee81d0693..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AudioPlayer Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html deleted file mode 100644 index db369fdef..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AudioPlayer Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AudioPlayer Class Reference
        -
        -
        - - - - -

        -Classes

        enum  PlayerActivity
         
        - - - - - - - -

        -Public Member Functions

        void playerActivityChanged (PlayerActivity state)
         
        final long getPlayerPosition ()
         
        final long getPlayerDuration ()
         
        - - - -

        -Static Public Attributes

        static final long TIME_UNKNOWN = -1
         
        -

        Detailed Description

        -

        AudioPlayer should be extended to handle audio output from the Engine.

        -
        Note
        Audio playback control operations such as on-platform button presses must be routed through the PlaybackController.
        -
        See also
        PlaybackController
        -
        -TemplateRuntime.renderPlayerInfo()
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ playerActivityChanged()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.AudioPlayer.playerActivityChanged (PlayerActivity state)
        -
        -

        Notifies the platform implementation of a change in audio playback state

        -
        Parameters
        - - -
        stateThe new playback state
        -
        -
        - -
        -
        - -

        ◆ getPlayerPosition()

        - -
        -
        - - - - - - - -
        final long com.amazon.aace.alexa.AudioPlayer.getPlayerPosition ()
        -
        -

        Returns the current playback position of the audio player. If the audio source is not playing, the most recent position played will be returned.

        -
        Returns
        The audio player's playback position in milliseconds, or TIME_UNKNOWN if the current media position is unknown or invalid.
        - -
        -
        - -

        ◆ getPlayerDuration()

        - -
        -
        - - - - - - - -
        final long com.amazon.aace.alexa.AudioPlayer.getPlayerDuration ()
        -
        -

        Returns the playback duration of the audio player.

        -
        Returns
        The audio player's playback duration in milliseconds, or TIME_UNKNOWN if the current media position is unknown or invalid.
        - -
        -
        -

        Member Data Documentation

        - -

        ◆ TIME_UNKNOWN

        - -
        -
        - - - - - -
        - - - - -
        final long com.amazon.aace.alexa.AudioPlayer.TIME_UNKNOWN = -1
        -
        -static
        -
        -

        Used when audio time is unknown or indeterminate.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider-members.html deleted file mode 100644 index 17e148fa1..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AuthProvider Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.AuthProvider, including all inherited members.

        - - - - - -
        authFailure(String token)com.amazon.aace.alexa.AuthProvider
        authStateChange(AuthState authState, AuthError authError)com.amazon.aace.alexa.AuthProvider
        getAuthState()com.amazon.aace.alexa.AuthProvider
        getAuthToken()com.amazon.aace.alexa.AuthProvider
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html deleted file mode 100644 index b8fc3ebf0..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AuthProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AuthProvider Class Referenceabstract
        -
        -
        - - - - - - -

        -Classes

        enum  AuthError
         
        enum  AuthState
         
        - - - - - - - - - -

        -Public Member Functions

        String getAuthToken ()
         
        AuthState getAuthState ()
         
        void authFailure (String token)
         
        final void authStateChange (AuthState authState, AuthError authError)
         
        -

        Detailed Description

        -

        AuthProvider should be extended to manage access tokens for AVS authorization and report client authorization state to the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ getAuthToken()

        - -
        -
        - - - - - - - -
        String com.amazon.aace.alexa.AuthProvider.getAuthToken ()
        -
        -

        Returns the token used by the platform implementation for authorization with AVS. The platform implementation should retrieve an auth token if it does not have one.

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        -
        Returns
        The token used to authorize with AVS
        - -
        -
        - -

        ◆ getAuthState()

        - -
        -
        - - - - - - - -
        AuthState com.amazon.aace.alexa.AuthProvider.getAuthState ()
        -
        -

        Returns the AVS authorization state of the platform implementation

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        -
        Returns
        The AVS authorization state
        - -
        -
        - -

        ◆ authFailure()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.AuthProvider.authFailure (String token)
        -
        -

        Notifies the platform implementation that the specified access token was used in an unauthorized request to AVS. AVS responded to this request with a 403 code indicating the token was not valid.

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        -
        Parameters
        - - -
        tokenThe access token used in an unauthorized request to AVS
        -
        -
        - -
        -
        - -

        ◆ authStateChange()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.alexa.AuthProvider.authStateChange (AuthState authState,
        AuthError authError 
        )
        -
        -

        Notifies the Engine of a change in AVS authorization state in the platform implementation

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        -
        Parameters
        - - - -
        authStateThe new authorization state
        authErrorThe error state of the authorization attempt
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup-members.html deleted file mode 100644 index 15c990290..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.DeviceSetup Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.DeviceSetup, including all inherited members.

        - - - -
        setupCompleted()com.amazon.aace.alexa.DeviceSetup
        setupCompletedResponse(StatusCode statusCode)com.amazon.aace.alexa.DeviceSetup
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html deleted file mode 100644 index 71e72c7b1..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.DeviceSetup Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.DeviceSetup Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  StatusCode
         
        - - - - - -

        -Public Member Functions

        void setupCompletedResponse (StatusCode statusCode)
         
        final void setupCompleted ()
         
        -

        Detailed Description

        -

        DeviceSetup platform interface should be extended and registered into the Alexa Engine. This class is used to send an event to AVS SDK when client application setup is completed. Alexa walks through the supported Alexa out-of-the-box experience for the first-time user when setupCompleted event is triggered.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ setupCompletedResponse()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.DeviceSetup.setupCompletedResponse (StatusCode statusCode)
        -
        -

        Override and implement this callback method. This method indicates the success status of the setupCompleted() call

        Parameters
        - - -
        statusCodeindicates status code StatusCode#SUCCESS or StatusCode#FAIL
        -
        -
        - -
        -
        - -

        ◆ setupCompleted()

        - -
        -
        - - - - - - - -
        final void com.amazon.aace.alexa.DeviceSetup.setupCompleted ()
        -
        -

        When client application setup is completed, setupCompleted() function should be called. Alexa walks through the supported Alexa out of box experience to the first time user.

        -

        Note:

        -

        1. This method should be called only once after completion of OOBE. Subsequent calls may be ignored by the cloud.

        -

        2. Do not call this method if user is in Connectivity Mode, Preview Mode, or if Alexa wake word is disabled. Calling the API in such conditions results in undesired user experience.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb-members.html deleted file mode 100644 index f4b766b77..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.DoNotDisturb Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.DoNotDisturb, including all inherited members.

        - - - -
        doNotDisturbChanged(boolean doNotDisturb)com.amazon.aace.alexa.DoNotDisturb
        setDoNotDisturb(boolean doNotDisturb)com.amazon.aace.alexa.DoNotDisturb
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html deleted file mode 100644 index 814a9d45a..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.DoNotDisturb Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.DoNotDisturb Class Reference
        -
        -
        - - - - - - -

        -Public Member Functions

        void setDoNotDisturb (boolean doNotDisturb)
         
        final boolean doNotDisturbChanged (boolean doNotDisturb)
         
        -

        Detailed Description

        -

        DoNotDisturb should be extended to handle receiving state changes from the engine, and for sending state change events for the Do Not Disturb Setting. For more information about Do Not Disturb see the interface overview: https://developer.amazon.com/docs/alexa-voice-service/donotdisturb.html

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ setDoNotDisturb()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.DoNotDisturb.setDoNotDisturb (boolean doNotDisturb)
        -
        -

        Handle setting of DND directive.

        -
        Parameters
        - - -
        doNotDisturbsetting state
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ doNotDisturbChanged()

        - -
        -
        - - - - - - - - -
        final boolean com.amazon.aace.alexa.DoNotDisturb.doNotDisturbChanged (boolean doNotDisturb)
        -
        -

        Notifies the Engine of a platform request to set the DND State

        Returns
        true if the engine implementation successfully sent the event, else false
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller-members.html deleted file mode 100644 index c846d915f..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.EqualizerController Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html deleted file mode 100644 index 2ae038d8a..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html +++ /dev/null @@ -1,258 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.EqualizerController Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.EqualizerController Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  EqualizerBand
         
        - - - - - - - - - - - - - -

        -Public Member Functions

        void setBandLevels (EqualizerBandLevel[] bandLevels)
         
        EqualizerBandLevel [] getBandLevels ()
         
        final void localSetBandLevels (EqualizerBandLevel[] bandLevels)
         
        final void localAdjustBandLevels (EqualizerBandLevel[] bandAdjustments)
         
        final void localResetBands (EqualizerBand[] bands)
         
        final void localResetBands ()
         
        -

        Detailed Description

        -

        EqualizerController should be extended to use Alexa to control device equalizer settings. It supports adjusting levels of amplitude gain in decibels (dB) for a 3-band equalizer with a 1dB level of precision.

        -

        In addition to performing the audio equalization, the platform implementation is also responsible for the following:

          -
        • Mapping the provided equalizer bands to frequency ranges.
        • -
        • Scaling values as absolute levels of amplitude gain in integer dB to the platform's internal range.
        • -
        • Mapping the provided bands to a different number of platform-specific target bands, if necessary.
        • -
        • Applying equalization to only selected portions of the audio output. Alexa speech, alarms, etc. may not be affected.
        • -
        • Persisting level settings across restart/power cycle.
        • -
        -

        Device equalizer settings are configurable. See com.amazon.aace.alexa.config.AlexaConfiguration.createEqualizerControllerConfig for details on configuring supported bands, default state, and supported decibel ranges.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ setBandLevels()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.EqualizerController.setBandLevels (EqualizerBandLevel [] bandLevels)
        -
        -

        Notifies the platform implementation to apply the provided gain settings to the corresponding equalizer bands.

        -
        Note
        Calling EqualizerController.localSetBandLevels, EqualizerController.localAdjustBandLevels, or EqualizerController.localResetBands from inside this function will cause deadlock.
        -
        Parameters
        - - -
        bandLevelsThe equalizer bands and their gain settings to apply as integer dB values.
        -
        -
        - -
        -
        - -

        ◆ getBandLevels()

        - -
        -
        - - - - - - - -
        EqualizerBandLevel [] com.amazon.aace.alexa.EqualizerController.getBandLevels ()
        -
        -

        Retrieves the current equalizer gain settings on the device for each supported band. If unsupported band levels are provided, the Engine will truncate levels to the configured range.

        -
        Returns
        An array of the supported equalizer bands and their current gain settings as integer dB values.
        - -
        -
        - -

        ◆ localSetBandLevels()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.EqualizerController.localSetBandLevels (EqualizerBandLevel [] bandLevels)
        -
        -

        Notifies the Engine that gain levels for one or more equalizer bands are being set directly on the device. If unsupported levels are provided, the Engine will truncate the settings to the configured range.

        -
        Parameters
        - - -
        bandLevelsThe equalizer bands to change and their gain settings as integer dB values.
        -
        -
        - -
        -
        - -

        ◆ localAdjustBandLevels()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.EqualizerController.localAdjustBandLevels (EqualizerBandLevel [] bandAdjustments)
        -
        -

        Notifies the Engine that relative adjustments to equalizer band gain levels are being made directly on the device. If adjustments put the band level settings beyond the configured dB range, the Engine will truncate the settings to the configured range.

        -
        Parameters
        - - -
        bandAdjustmentsThe equalizer bands to adjust and their relative gain adjustments as integer dB values.
        -
        -
        - -
        -
        - -

        ◆ localResetBands() [1/2]

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.EqualizerController.localResetBands (EqualizerBand [] bands)
        -
        -

        Notifies the Engine that the gain levels for the specified equalizer bands are being reset to their defaults.

        -
        Parameters
        - - -
        bandsThe equalizer bands to reset.
        -
        -
        - -
        -
        - -

        ◆ localResetBands() [2/2]

        - -
        -
        - - - - - - - -
        final void com.amazon.aace.alexa.EqualizerController.localResetBands ()
        -
        -

        Notifies the Engine that the gain levels for all equalizer bands are being reset to their defaults.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter-members.html deleted file mode 100644 index 4b987b8c8..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter-members.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.ExternalMediaAdapter, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - -
        adjustSeek(String localPlayerId, long deltaOffset)com.amazon.aace.alexa.ExternalMediaAdapter
        authorize(AuthorizedPlayerInfo[] authorizedPlayers)com.amazon.aace.alexa.ExternalMediaAdapter
        getOffset()com.amazon.aace.alexa.ExternalMediaAdapter
        getState(String localPlayerId, ExternalMediaAdapterState state)com.amazon.aace.alexa.ExternalMediaAdapter
        login(String localPlayerId, String accessToken, String userName, boolean forceLogin, long tokenRefreshInterval)com.amazon.aace.alexa.ExternalMediaAdapter
        loginComplete(String localPlayerId)com.amazon.aace.alexa.ExternalMediaAdapter
        logout(String localPlayerId)com.amazon.aace.alexa.ExternalMediaAdapter
        logoutComplete(String localPlayerId)com.amazon.aace.alexa.ExternalMediaAdapter
        mutedStateChanged(MutedState state)com.amazon.aace.alexa.ExternalMediaAdapter
        play(String localPlayerId, String playContextToken, long index, long offset, boolean preload, Navigation navigation)com.amazon.aace.alexa.ExternalMediaAdapter
        playControl(String localPlayerId, PlayControlType playControlType)com.amazon.aace.alexa.ExternalMediaAdapter
        playerError(String localPlayerId, String errorName, long code, String description, boolean fatal)com.amazon.aace.alexa.ExternalMediaAdapter
        playerEvent(String localPlayerId, String eventName)com.amazon.aace.alexa.ExternalMediaAdapter
        removeDiscoveredPlayer(String localPlayerId)com.amazon.aace.alexa.ExternalMediaAdapter
        reportDiscoveredPlayers(DiscoveredPlayerInfo[] discoveredPlayers)com.amazon.aace.alexa.ExternalMediaAdapter
        requestToken(String localPlayerId)com.amazon.aace.alexa.ExternalMediaAdapter
        seek(String localPlayerId, long offset)com.amazon.aace.alexa.ExternalMediaAdapter
        setFocus(String localPlayerId)com.amazon.aace.alexa.ExternalMediaAdapter
        volumeChanged(float volume)com.amazon.aace.alexa.ExternalMediaAdapter
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html deleted file mode 100644 index eb1b4f87d..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html +++ /dev/null @@ -1,813 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.ExternalMediaAdapter Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter Class Referenceabstract
        -
        -
        - - - - - - - - - - - - -

        -Classes

        enum  Favorites
         
        enum  MediaType
         
        enum  Navigation
         
        enum  PlayControlType
         
        enum  SupportedPlaybackOperation
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        boolean login (String localPlayerId, String accessToken, String userName, boolean forceLogin, long tokenRefreshInterval)
         
        boolean logout (String localPlayerId)
         
        boolean play (String localPlayerId, String playContextToken, long index, long offset, boolean preload, Navigation navigation)
         
        boolean playControl (String localPlayerId, PlayControlType playControlType)
         
        boolean seek (String localPlayerId, long offset)
         
        boolean adjustSeek (String localPlayerId, long deltaOffset)
         
        boolean authorize (AuthorizedPlayerInfo[] authorizedPlayers)
         
        long getOffset ()
         
        boolean getState (String localPlayerId, ExternalMediaAdapterState state)
         
        boolean volumeChanged (float volume)
         
        boolean mutedStateChanged (MutedState state)
         
        final void reportDiscoveredPlayers (DiscoveredPlayerInfo[] discoveredPlayers)
         
        final void requestToken (String localPlayerId)
         
        final void loginComplete (String localPlayerId)
         
        final void logoutComplete (String localPlayerId)
         
        final void playerEvent (String localPlayerId, String eventName)
         
        final void playerError (String localPlayerId, String errorName, long code, String description, boolean fatal)
         
        final void setFocus (String localPlayerId)
         
        final void removeDiscoveredPlayer (String localPlayerId)
         
        -

        Detailed Description

        -

        ExternalMediaAdapter should be extended to handle external media player application interaction with AVS. The platform implementation is responsible for managing the client, and media session state control. The ExternalMediaAdapter will also receive directives from the Engine to handle audio playback/control.

        -
        See also
        Speaker
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ login()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.login (String localPlayerId,
        String accessToken,
        String userName,
        boolean forceLogin,
        long tokenRefreshInterval 
        )
        -
        -

        Directive called after a discovered player initiates the loginComplete event.

        -
        Parameters
        - - - - - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        accessTokenThe handshake token between AVS, and the external media player app session
        userNameThe username provided by the external media player app, if available
        forceLoginTrue if no handshake is needed, and login is simply assumed
        tokenRefreshIntervalrefresh interval of the accessToken, if available
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ logout()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.logout (String localPlayerId)
        -
        -

        Directive called after a discovered player initiates the logoutComplete event.

        -
        Parameters
        - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ play()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.play (String localPlayerId,
        String playContextToken,
        long index,
        long offset,
        boolean preload,
        Navigation navigation 
        )
        -
        -

        Called when the user first calls play for the external media via voice control.

        -
        Parameters
        - - - - - - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        playContextTokenTrack/playlist/album/artist/station/podcast context identifier
        indexIf the playback context is an indexable container like a playlist, the index of the media item in the container
        offsetOffset position within media item, in milliseconds
        preloadWhether the media item should preload or not
        navigationThe app transition behavior
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ playControl()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.playControl (String localPlayerId,
        PlayControlType playControlType 
        )
        -
        -

        Occurs during playback control via voice interaction

        -
        Parameters
        - - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        playControlTypePlayback control type being invoked
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ seek()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.seek (String localPlayerId,
        long offset 
        )
        -
        -

        Called when the user invokes media seek via speech.

        -
        Parameters
        - - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        offsetOffset position within media item, in milliseconds
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ adjustSeek()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.adjustSeek (String localPlayerId,
        long deltaOffset 
        )
        -
        -

        Called when the user invokes media seek adjustment via speech.

        -
        Parameters
        - - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        deltaOffsetChange in offset position within media item, in milliseconds
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ authorize()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.authorize (AuthorizedPlayerInfo [] authorizedPlayers)
        -
        -

        Called after discovered media players have been reported. Returns a list of reported players and whether they have been authorized for use with Alexa.

        -
        Note
        It is not guaranteed that every player reported in a call to reportDiscoveredPlayers() will be included in the next call to authorize(). If a player is excluded from a call to authorize() after it is included in the preceding reportDiscoveredPlayers(), this does not necessarily imply it was deauthorized by Alexa. It is possible that a player may be included in more than one call to authorize().
        -
        Parameters
        - - -
        [in]authorizedPlayersA list of discovered players with their status of authorization for use with Alexa
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ getOffset()

        - -
        -
        - - - - - - - -
        long com.amazon.aace.alexa.ExternalMediaAdapter.getOffset ()
        -
        -

        This function retrieves the offset of the current track the adapter is handling.

        -
        Returns
        This returns the offset in milliseconds.
        - -
        -
        - -

        ◆ getState()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.getState (String localPlayerId,
        ExternalMediaAdapterState state 
        )
        -
        -

        Must provide the local external media player apps , and information to maintain cloud sync

        -
        Parameters
        - - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        stateThe ExternalMediaAdapterState to be initialized by the platform
        -
        -
        -
        Returns
        true if the platform is able to provide state information for the external media player, else false
        - -
        -
        - -

        ◆ volumeChanged()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.volumeChanged (float volume)
        -
        -

        Notifies the platform implementation to set the volume of the output channel. The volume value should be scaled to fit the needs of the platform.

        -
        Parameters
        - - -
        volumeThe volume to set on the output channel. volume is in the range [0,1].
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mutedStateChanged()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.ExternalMediaAdapter.mutedStateChanged (MutedState state)
        -
        -

        Notifies the platform implementation to apply a mute state change to the output channel

        -
        Parameters
        - - -
        stateThe muted state to apply to the output channel. MutedState::MUTED when the output channel be muted, MutedState::UNMUTED when unmuted
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ reportDiscoveredPlayers()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.ExternalMediaAdapter.reportDiscoveredPlayers (DiscoveredPlayerInfo [] discoveredPlayers)
        -
        -

        Should be called on startup in order to notify AVS of the local external media players

        -
        Parameters
        - - -
        discoveredPlayerscontains the discovered player info objects
        -
        -
        - -
        -
        - -

        ◆ requestToken()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.ExternalMediaAdapter.requestToken (String localPlayerId)
        -
        -

        The device is responsible for requesting an access token when needed. This is typically done immediately upon connection to AVS.

        -
        Parameters
        - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        - -
        -
        - -

        ◆ loginComplete()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.ExternalMediaAdapter.loginComplete (String localPlayerId)
        -
        -

        Should be called on a local external media player login. This will set authorization of the app with AVS.

        -
        Parameters
        - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        - -
        -
        - -

        ◆ logoutComplete()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.ExternalMediaAdapter.logoutComplete (String localPlayerId)
        -
        -

        Should be called on a local external media player logout. This will unset authorization of the app with AVS.

        -
        Parameters
        - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        - -
        -
        - -

        ◆ playerEvent()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.alexa.ExternalMediaAdapter.playerEvent (String localPlayerId,
        String eventName 
        )
        -
        -

        Should be called on a local external media player event. This will sync the context with AVS.

        -
        Parameters
        - - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]eventNameCanonical event name. Accepted values:
          -
        • "TrackChanged"
        • -
        • "PlaybackSessionStarted"
        • -
        • "PlaybackSessionEnded"
        • -
        • "PlaybackStarted"
        • -
        • "PlaybackStopped"
        • -
        • "PlaybackPrevious"
        • -
        • "PlaybackNext"
        • -
        • "PlayModeChanged"
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ playerError()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.alexa.ExternalMediaAdapter.playerError (String localPlayerId,
        String errorName,
        long code,
        String description,
        boolean fatal 
        )
        -
        -

        Should be called on a player error.

        -
        Parameters
        - - - - - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]errorNameThe name of the error. Accepted values:
          -
        • "INTERNAL_ERROR"
        • -
        • "UNPLAYABLE_BY_AUTHORIZATION"
        • -
        • "UNPLAYABLE_BY_STREAM_CONCURRENCY"
        • -
        • "UNPLAYABLE_BY_ACCOUNT"
        • -
        • "OPERATION_REJECTED_UNINTERRUPTIBLE"
        • -
        • "OPERATION_REJECTED_END_OF_QUEUE"
        • -
        • "UNPLAYABLE_BY_REGION"
        • -
        • "OPERATION_UNSUPPORTED"
        • -
        • "UNPLAYABLE_BY_PARENTAL_CONTROL"
        • -
        • "UNPLAYABLE_BY_SUBSCRIPTION"
        • -
        • "OPERATION_REJECTED_SKIP_LIMIT"
        • -
        • "UNKNOWN_ERROR"
        • -
        • "PLAYER_UNKNOWN"
        • -
        • "PLAYER_NOT_FOUND"
        • -
        • "PLAYER_CONNECTION_REJECTED"
        • -
        • "PLAYER_CONNECTION_TIMEOUT"
        • -
        -
        codeThe error code
        descriptionThe detailed error description
        fataltrue if the error is fatal
        -
        -
        - -
        -
        - -

        ◆ setFocus()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.ExternalMediaAdapter.setFocus (String localPlayerId)
        -
        -

        Should be called on local external media player events. This will switch the media focus to that context.

        -
        Parameters
        - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        - -
        -
        - -

        ◆ removeDiscoveredPlayer()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.ExternalMediaAdapter.removeDiscoveredPlayer (String localPlayerId)
        -
        -

        Should be called on when a registered media player has been uninstalled or is no longer available.

        -
        Parameters
        - - -
        localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset-members.html deleted file mode 100644 index 1bee90312..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.GlobalPreset Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.GlobalPreset, including all inherited members.

        - - -
        setGlobalPreset(int preset)com.amazon.aace.alexa.GlobalPreset
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html deleted file mode 100644 index abab19ce4..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.GlobalPreset Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.GlobalPreset Class Referenceabstract
        -
        -
        - - - - -

        -Public Member Functions

        void setGlobalPreset (int preset)
         
        -

        Detailed Description

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ setGlobalPreset()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.GlobalPreset.setGlobalPreset (int preset)
        -
        -
        Deprecated:
        Use LocalMediaSource class with DEFAULT source with LocalMediaSource::ContentSelector::PRESET instead Called after receiving a global preset play directive
        -
        Parameters
        - - -
        presetThe preset integer from the playbackContextToken
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source-members.html deleted file mode 100644 index 713663396..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source-members.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.LocalMediaSource Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.LocalMediaSource, including all inherited members.

        - - - - - - - - - - - - - - - - -
        adjustSeek(long deltaOffset)com.amazon.aace.alexa.LocalMediaSource
        getSource()com.amazon.aace.alexa.LocalMediaSource
        getState()com.amazon.aace.alexa.LocalMediaSource
        mutedStateChanged(MutedState state)com.amazon.aace.alexa.LocalMediaSource
        play(ContentSelector selector, String payload)com.amazon.aace.alexa.LocalMediaSource
        play(ContentSelector selector, String payload, String sessionId)com.amazon.aace.alexa.LocalMediaSource
        playControl(PlayControlType controlType)com.amazon.aace.alexa.LocalMediaSource
        playerError(String errorName, long code, String description, boolean fatal)com.amazon.aace.alexa.LocalMediaSource
        playerError(String errorName, long code, String description, boolean fatal, String sessionId)com.amazon.aace.alexa.LocalMediaSource
        playerEvent(String eventName)com.amazon.aace.alexa.LocalMediaSource
        playerEvent(String eventName, String sessionId)com.amazon.aace.alexa.LocalMediaSource
        seek(long offset)com.amazon.aace.alexa.LocalMediaSource
        setFocus(boolean focusAcquire)com.amazon.aace.alexa.LocalMediaSource
        setFocus()com.amazon.aace.alexa.LocalMediaSource
        volumeChanged(float volume)com.amazon.aace.alexa.LocalMediaSource
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html deleted file mode 100644 index a48be8253..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html +++ /dev/null @@ -1,597 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.LocalMediaSource Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.LocalMediaSource Class Referenceabstract
        -
        -
        - - - - - - - - - - - - - - -

        -Classes

        enum  ContentSelector
         
        enum  Favorites
         
        enum  MediaType
         
        enum  PlayControlType
         
        enum  Source
         
        enum  SupportedPlaybackOperation
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        boolean play (ContentSelector selector, String payload)
         
        boolean play (ContentSelector selector, String payload, String sessionId)
         
        boolean playControl (PlayControlType controlType)
         
        boolean seek (long offset)
         
        boolean adjustSeek (long deltaOffset)
         
        LocalMediaSourceState getState ()
         
        void playerEvent (String eventName)
         
        void playerEvent (String eventName, String sessionId)
         
        void playerError (String errorName, long code, String description, boolean fatal)
         
        void playerError (String errorName, long code, String description, boolean fatal, String sessionId)
         
        void setFocus (boolean focusAcquire)
         
        void setFocus ()
         
        final Source getSource ()
         
        boolean volumeChanged (float volume)
         
        boolean mutedStateChanged (MutedState state)
         
        -

        Detailed Description

        -

        LocalMediaSource should be extended to use Alexa to switch among media sources local to the device. It supports bluetooth, USB, FM radio, AM radio, satellite radio, audio line, DAB and CD player sources.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ play() [1/2]

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.alexa.LocalMediaSource.play (ContentSelector selector,
        String payload 
        )
        -
        -
        Deprecated:
        Use play(ContentSelector selector, String payload, String sessionId) instead Called when the user first calls play for the local media via voice control. ( Currently this is not used in LocalMediaSource)
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ play() [2/2]

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.alexa.LocalMediaSource.play (ContentSelector selector,
        String payload,
        String sessionId 
        )
        -
        -

        Called when the user first calls play for the local media via voice control. ( Currently this is not used in LocalMediaSource)

        -
        Parameters
        - - - - -
        ContentSelectorContent selection type
        payloadContent selector payload (e.g. "1", "98.7 FM HD 1", "bbc radio four")
        sessionIdA universally unique identifier (UUID) generated according to the RFC 4122 specification. Since Alexa is starting the session here, use this session Id for further events and errors.
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ playControl()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.LocalMediaSource.playControl (PlayControlType controlType)
        -
        -

        Occurs during playback control via voice interaction

        -
        Parameters
        - - -
        controlTypePlayback control type being invoked
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ seek()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.LocalMediaSource.seek (long offset)
        -
        -

        Called when the user invokes local media seek via speech.

        -
        Parameters
        - - -
        offsetOffset position within media item, in milliseconds
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ adjustSeek()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.LocalMediaSource.adjustSeek (long deltaOffset)
        -
        -

        Called when the user invokes local media adjust seek via speech.

        -
        Parameters
        - - -
        deltaOffsetChange in offset position within media item, in milliseconds
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ getState()

        - -
        -
        - - - - - - - -
        LocalMediaSourceState com.amazon.aace.alexa.LocalMediaSource.getState ()
        -
        -

        Must provide the local media source , and information to maintain cloud sync

        -
        Returns
        The current LocalMediaSourceState for the local media source, or null if the state is not available
        - -
        -
        - -

        ◆ playerEvent() [1/2]

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.LocalMediaSource.playerEvent (String eventName)
        -
        -
        Deprecated:
        This method will be removed very soon. Use playerEvent(String eventName, String sessionId) instead Should be called on a local media source player event. This will sync the context with AVS.
        -
        Parameters
        - - -
        eventNameCanonical event name. Accepted values are "PlaybackStarted", "PlaybackStopped"
        -
        -
        - -
        -
        - -

        ◆ playerEvent() [2/2]

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.LocalMediaSource.playerEvent (String eventName,
        String sessionId 
        )
        -
        -

        Should be called on a local media source player event. This will sync the context with AVS.

        -
        Parameters
        - - - -
        eventNameCanonical event name. Accepted values are "PlaybackStarted", "PlaybackStopped", "PlaybackSessionStarted", "PlaybackSessionEnded"
        sessionIdA universally unique identifier (UUID) generated according to the RFC 4122 specification. If playback session is started because of play(ContentSelector contentSelectorType, String payload, String sessionId), use the same session Id. If the session is started due to any other reason, generate unique UUID and use it as a session ID until session is not ended.
        -
        -
        -

        Note: PlaybackSessionStarted and PlaybackSessionEnded handles the setFocus(true) and setFocus(false) internally. Do not call the deprecated setFocus method.

        - -
        -
        - -

        ◆ playerError() [1/2]

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.LocalMediaSource.playerError (String errorName,
        long code,
        String description,
        boolean fatal 
        )
        -
        -
        Deprecated:
        This method will be removed very soon. Use playerError(String errorName, long code, String description, boolean fatal, String sessionId) instead Should be called on a local media source player error.
        -
        Parameters
        - - - - - -
        errorNameThe name of the error. Accepted values:"INTERNAL_ERROR"
        codeThe error code
        descriptionThe detailed error description
        fataltrue if the error is fatal
        -
        -
        - -
        -
        - -

        ◆ playerError() [2/2]

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.LocalMediaSource.playerError (String errorName,
        long code,
        String description,
        boolean fatal,
        String sessionId 
        )
        -
        -
          -
        • Should be called on a local media source player error.
        • -
        -
        Parameters
        - - - - - - -
        errorNameThe name of the error. Accepted values:"INTERNAL_ERROR"
        codeThe error code
        descriptionThe detailed error description
        fataltrue if the error is fatal
        sessionIdA universally unique identifier (UUID) generated according to the RFC 4122 specification. If playback session is started because of play(ContentSelector contentSelectorType, String payload, String sessionId), use the same session Id. If the session is started due to any other reason, generate unique UUID and use it as a session ID until session is not ended.
        -
        -
        - -
        -
        - -

        ◆ setFocus() [1/2]

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.LocalMediaSource.setFocus (boolean focusAcquire)
        -
        -
        Deprecated:
        Use the playerEvent(String eventName, String sessionId) instead with "playbackSessionStarted" and "playbackSessionEnded" events Should be called on local media source player events. This will switch the media focus to that context.
        -
        Parameters
        - - -
        focusAcquiretrue if focus should be acquired, false if focus should be abandoned
        -
        -
        -

        Note: PlaybackSessionStarted and PlaybackSessionEnded handles the setFocus(true) and setFocus(false) internally. Do not call the deprecated setFocus method.

        - -
        -
        - -

        ◆ setFocus() [2/2]

        - -
        -
        - - - - - - - -
        void com.amazon.aace.alexa.LocalMediaSource.setFocus ()
        -
        -
        Deprecated:
        Use the playerEvent(String eventName, String sessionId) instead with "playbackSessionStarted" and "playbackSessionEnded" events Overload of above for backward compatibility. Always acquires focus.
        -

        Note: PlaybackSessionStarted and PlaybackSessionEnded handles the setFocus(true) and setFocus(false) internally. Do not call the deprecated setFocus method.

        - -
        -
        - -

        ◆ getSource()

        - -
        -
        - - - - - - - -
        final Source com.amazon.aace.alexa.LocalMediaSource.getSource ()
        -
        -

        Return the source type the interface registered with

        - -
        -
        - -

        ◆ volumeChanged()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.LocalMediaSource.volumeChanged (float volume)
        -
        -

        Notifies the platform implementation to set the volume of the output channel. The volume value should be scaled to fit the needs of the platform.

        -
        Parameters
        - - -
        [in]volumeThe volume to set on the output channel. volume is in the range [0,1].
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mutedStateChanged()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.LocalMediaSource.mutedStateChanged (MutedState state)
        -
        -

        Notifies the platform implementation to apply a muted state has changed for the output channel

        -
        Parameters
        - - -
        [in]stateThe muted state to apply to the output channel. MutedState::MUTED when the output channel be muted, MutedState::UNMUTED when unmuted
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor-members.html deleted file mode 100644 index 933d96ac2..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.MediaPlaybackRequestor Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.MediaPlaybackRequestor, including all inherited members.

        - - - - -
        mediaPlaybackResponse(MediaPlaybackRequestStatus mediaPlaybackRequestStatus)com.amazon.aace.alexa.MediaPlaybackRequestor
        requestMediaPlayback(InvocationReason invocationReason)com.amazon.aace.alexa.MediaPlaybackRequestor
        requestMediaPlayback(InvocationReason invocationReason, long elapsedBootTime)com.amazon.aace.alexa.MediaPlaybackRequestor
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html deleted file mode 100644 index f62ff394b..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.MediaPlaybackRequestor Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.MediaPlaybackRequestor Class Referenceabstract
        -
        -
        - - - - - - -

        -Classes

        enum  InvocationReason
         
        enum  MediaPlaybackRequestStatus
         
        - - - - - - - -

        -Public Member Functions

        void mediaPlaybackResponse (MediaPlaybackRequestStatus mediaPlaybackRequestStatus)
         
        final void requestMediaPlayback (InvocationReason invocationReason)
         
        final void requestMediaPlayback (InvocationReason invocationReason, long elapsedBootTime)
         
        -

        Detailed Description

        -

        MediaPlaybackRequestor platform interface should be extended and registered into the Alexa Engine. This class is used to send an event to AVS when client is expected to automatically resume the last playing media. Alexa can use this event to push the last playing media on the device.

        -

        Member Function Documentation

        - -

        ◆ mediaPlaybackResponse()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.MediaPlaybackRequestor.mediaPlaybackResponse (MediaPlaybackRequestStatus mediaPlaybackRequestStatus)
        -
        -

        Override and implement this callback method. This method indicates the success status of the requestMediaPlayback call

        Parameters
        - - -
        MediaPlaybackRequestStatusindicates status code MediaPlaybackRequestStatus::SUCCESS} or MediaPlaybackRequestStatus::FAILED_TIMEOUT
        -
        -
        - -
        -
        - -

        ◆ requestMediaPlayback() [1/2]

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.MediaPlaybackRequestor.requestMediaPlayback (InvocationReason invocationReason)
        -
        -

        Platform interface is expected to call this method whenever Alexa is the right source for the media resume. Please refer the overloaded method also. If your platform does not provide right value of elapsed boot time for some platform specific technical reason, use the overloaded method and provide the correct value.

        - -
        -
        - -

        ◆ requestMediaPlayback() [2/2]

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.alexa.MediaPlaybackRequestor.requestMediaPlayback (InvocationReason invocationReason,
        long elapsedBootTime 
        )
        -
        -

        Platform interface is expected to call this method instead of other overloaded method whenever Alexa is the right source for the media resume, Use the function only when OEM platform's boot elapsed time calculation is special and it does not provide correct results for- Android: https://developer.android.com/reference/android/os/SystemClock#elapsedRealtime() or Linux: sys/sysinfo.h uptime Note: There can be multiple reasons like special power mode handling, unsupported platform etc. OEM needs to ensure right value is provided. Media auto resume is supported only within the certain duration to avoid sudden surprise music playback to driver while driving.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications-members.html deleted file mode 100644 index 6e157635c..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.Notifications Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.Notifications, including all inherited members.

        - - - -
        onNotificationReceived()com.amazon.aace.alexa.Notifications
        setIndicator(IndicatorState state)com.amazon.aace.alexa.Notifications
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html deleted file mode 100644 index 27b21516d..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.Notifications Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.Notifications Class Reference
        -
        -
        - - - - -

        -Classes

        enum  IndicatorState
         
        - - - - - -

        -Public Member Functions

        void setIndicator (IndicatorState state)
         
        void onNotificationReceived ()
         
        -

        Detailed Description

        -

        Notifications should be extended to handle rendering indicators for notifications from AVS. The platform implementation is responsible for rendering visual cues for an active notification.

        -
        Note
        This interface provides indicators that a notification was received, not the content of the notification.
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ setIndicator()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.alexa.Notifications.setIndicator (IndicatorState state)
        -
        -

        Notifies the platform implementation of whether a notification indicator should be rendered

        -
        Parameters
        - - -
        stateThe new notification indicator state
        -
        -
        - -
        -
        - -

        ◆ onNotificationReceived()

        - -
        -
        - - - - - - - -
        void com.amazon.aace.alexa.Notifications.onNotificationReceived ()
        -
        -

        Notifies the platform implementation of notification received

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller-members.html deleted file mode 100644 index 0f1c72e93..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.PlaybackController Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.PlaybackController, including all inherited members.

        - - - -
        buttonPressed(PlaybackButton button)com.amazon.aace.alexa.PlaybackController
        togglePressed(PlaybackToggle toggle, boolean action)com.amazon.aace.alexa.PlaybackController
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html deleted file mode 100644 index 66fa1929f..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.PlaybackController Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.PlaybackController Class Referenceabstract
        -
        -
        - - - - - - -

        -Classes

        enum  PlaybackButton
         
        enum  PlaybackToggle
         
        - - - - - -

        -Public Member Functions

        final void buttonPressed (PlaybackButton button)
         
        final void togglePressed (PlaybackToggle toggle, boolean action)
         
        -

        Detailed Description

        -

        PlaybackController should be extended to handle playback control operations such as on-platform button presses for the AudioPlayer. The Engine will respond to PlaybackController events with playback control directives on the AudioPlayer MediaPlayer.

        -
        Note
        The TemplateRuntime.renderPlayerInfo() payload includes information about what playback control buttons should be enabled on screen with a player info display card.
        -
        See also
        AudioPlayer
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ buttonPressed()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.alexa.PlaybackController.buttonPressed (PlaybackButton button)
        -
        -

        Notifies the Engine of a platform button request (i.e. Play/Pause/Next/Previous/Skip Forward/Skip Backward). For certain playback types, the Engine will issue playback directives to the AudioPlayer MediaPlayer to control playback on the platform.

        Parameters
        - - -
        buttonThe playback button type
        -
        -
        - -
        -
        - -

        ◆ togglePressed()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.alexa.PlaybackController.togglePressed (PlaybackToggle toggle,
        boolean action 
        )
        -
        -

        Notifies the Engine of a platform toggle request (i.e. Shuffle/Loop/Repeat/Thumbs Up/Thumbs Down). For certain playback types, the Engine will issue playback directives to the AudioPlayer MediaPlayer to control playback on the platform.

        Parameters
        - - - -
        toggleThe playback toggle type
        actionThe playback toggle action
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer-members.html deleted file mode 100644 index 2233da98c..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.SpeechRecognizer Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html deleted file mode 100644 index 35dfe76c8..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.SpeechRecognizer Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.SpeechRecognizer Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  Initiator
         
        - - - - - - - - - - - - - -

        -Public Member Functions

        boolean wakewordDetected (String wakeword)
         
        void endOfSpeechDetected ()
         
        final boolean holdToTalk ()
         
        final boolean tapToTalk ()
         
        final boolean startCapture (Initiator initiator, long keywordBegin, long keywordEnd, String keyword)
         
        final boolean stopCapture ()
         
        -

        Detailed Description

        -

        SpeechRecognizer should be extended to initiate voice interactions with Alexa. SpeechRecognizer provides interfaces for

        -
          -
        • Initiating a dialog interaction with Alexa via press-and-hold, press-and-release, and voice-initiated user actions
        • -
        -
          -
        • Enabling and disabling the wake word engine
        • -
        -
          -
        • Handling wake word and end of speech detection
        • -
        -
        Note
        For observing Alexa dialog state transitions, see AlexaClient.dialogStateChanged().
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ wakewordDetected()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.alexa.SpeechRecognizer.wakewordDetected (String wakeword)
        -
        -

        Notifies the platform implementation when a wake word is detected

        -
        Parameters
        - - -
        wakewordThe wake word that was detected
        -
        -
        -
        Returns
        true if the Engine should initiate a recognize event, false if the Engine should ignore the invocation
        - -
        -
        - -

        ◆ endOfSpeechDetected()

        - -
        -
        - - - - - - - -
        void com.amazon.aace.alexa.SpeechRecognizer.endOfSpeechDetected ()
        -
        -

        Notifies the platform implementation when end of speech is detected for the current recognize event

        - -
        -
        - -

        ◆ holdToTalk()

        - -
        -
        - - - - - - - -
        final boolean com.amazon.aace.alexa.SpeechRecognizer.holdToTalk ()
        -
        -

        Notifies the Engine of a speech recognition event initiated by a press-and-hold action on the platform. The Engine will call startAudioInput() to notify the platform implementation when to start writing audio samples. The platform implementation should call stopCapture() to terminate speech recognition on release of the press-and-hold action.

        -
        Returns
        true if the Engine successfully initiated a recognize event, else false
        - -
        -
        - -

        ◆ tapToTalk()

        - -
        -
        - - - - - - - -
        final boolean com.amazon.aace.alexa.SpeechRecognizer.tapToTalk ()
        -
        -

        Notifies the Engine of a speech recognition event initiated by a press-and-release action on the platform. The Engine will call startAudioInput() to notify the platform implementation when to start writing audio samples. The Engine will terminate the recognize event initiated by the press-and-release action when end of speech is detected.

        -
        Returns
        true if the Engine successfully started a recognize event, else false
        - -
        -
        - -

        ◆ startCapture()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final boolean com.amazon.aace.alexa.SpeechRecognizer.startCapture (Initiator initiator,
        long keywordBegin,
        long keywordEnd,
        String keyword 
        )
        -
        -

        Notifies the Engine of a speech recognition event. The Engine will call startAudioInput() to notify the platform implementation when to start writing audio samples. If the initiator type is HOLD_TO_TALK, then the platform implementation should call stopCapture() to terminate speech recognition on release of the press-and-hold action. Otherwise, the Engine will terminate the recognize event when end of speech is detected.

        -
        Parameters
        - - - - - -
        initiatorThe Initiator type for the speech recognition event
        keywordBeginThe sample index where the keyword begins. This is required when the initiator type is WAKEWORD, otherwise should be set to UNSPECIFIED_INDEX.
        keywordEndThe sample index where the keyword ends. This is required when the initiator type is WAKEWORD, otherwise should be set to UNSPECIFIED_INDEX.
        keywordThe keyword being recognized, e.g. "alexa". This is required when the initiator type is WAKEWORD, otherwise should be set to null.
        -
        -
        -
        Returns
        true if the Engine successfully started a recognize event, else false
        - -
        -
        - -

        ◆ stopCapture()

        - -
        -
        - - - - - - - -
        final boolean com.amazon.aace.alexa.SpeechRecognizer.stopCapture ()
        -
        -

        Notifies the Engine to terminate the current recognize event. The Engine will call stopAudioInput() to notify the platform implementation when to stop writing audio samples.

        -
        Returns
        true if the Engine successfully terminated the current recognize event, else false
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer-members.html deleted file mode 100644 index 0802999b9..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.SpeechSynthesizer Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.SpeechSynthesizer, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer.html deleted file mode 100644 index c08db6136..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.SpeechSynthesizer Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.SpeechSynthesizer Class Reference
        -
        -
        -

        Detailed Description

        -

        SpeechSynthesizer should be extended to handle Alexa speech events from the Engine.

        -
        Note
        For observing Alexa dialog state transitions, see AlexaClient.dialogStateChanged().
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime-members.html deleted file mode 100644 index 98879e9b8..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.TemplateRuntime Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.TemplateRuntime, including all inherited members.

        - - - - - - -
        clearPlayerInfo()com.amazon.aace.alexa.TemplateRuntime
        clearTemplate()com.amazon.aace.alexa.TemplateRuntime
        displayCardCleared()com.amazon.aace.alexa.TemplateRuntime
        renderPlayerInfo(String payload, PlayerActivity audioPlayerState, long offset, FocusState focusState)com.amazon.aace.alexa.TemplateRuntime
        renderTemplate(String payload, FocusState focusState)com.amazon.aace.alexa.TemplateRuntime
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html deleted file mode 100644 index 6bfa70729..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.TemplateRuntime Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.TemplateRuntime Class Referenceabstract
        -
        -
        - - - - - - -

        -Classes

        enum  FocusState
         
        enum  PlayerActivity
         
        - - - - - - - - - - - -

        -Public Member Functions

        void renderTemplate (String payload, FocusState focusState)
         
        void renderPlayerInfo (String payload, PlayerActivity audioPlayerState, long offset, FocusState focusState)
         
        void clearTemplate ()
         
        void clearPlayerInfo ()
         
        final void displayCardCleared ()
         
        -

        Detailed Description

        -

        TemplateRuntime should be extended to handle directives from the Engine for rendering visual metadata with display cards. Metadata is provided as structured JSON and should be parsed by the platform implementation for rendering cards that adhere to design guidelines for the platform device type. For screen-specific design guidance, see the AVS UX Design Overview: https://developer.amazon.com/docs/alexa-voice-service/ux-design-overview.html#displaycards

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ renderTemplate()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.TemplateRuntime.renderTemplate (String payload,
        FocusState focusState 
        )
        -
        -

        Provides visual metadata associated with a user request to Alexa. The platform implementation should parse the template metadata and render a display card for the user.

        -

        For supported templates and rendering guidelines, see https://alexa.design/DevDocRenderTemplate

        -
        Parameters
        - - - -
        [in]payloadRenderable template metadata in structured JSON format
        [in]focusStateThe FocusState of the channel used by TemplateRuntime interface
        -
        -
        - -
        -
        - -

        ◆ renderPlayerInfo()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.alexa.TemplateRuntime.renderPlayerInfo (String payload,
        PlayerActivity audioPlayerState,
        long offset,
        FocusState focusState 
        )
        -
        -

        Provides visual metadata associated with a user request to Alexa for audio playback. The platform implementation should parse the player info metadata and render a display card for the user. The audioPlayerState and offset are useful for implementing the progress bar in the display card. It is assumed that the client is responsible for progressing the progress bar when the AudioPlayer is in PLAYING state.

        -

        For rendering guidelines, see https://amzn.to/DevDocTemplatePlayerInfo

        -
        Parameters
        - - - - - -
        [in]payloadRenderable player info metadata in structured JSON format
        [in]audioPlayerStateThe state of the AudioPlayer
        [in]offsetThe offset in millisecond of the media that AudioPlayer is handling
        [in]focusStateThe FocusState of the channel used by TemplateRuntime interface
        -
        -
        -
        See also
        PlaybackController
        -
        -AudioPlayer
        - -
        -
        - -

        ◆ clearTemplate()

        - -
        -
        - - - - - - - -
        void com.amazon.aace.alexa.TemplateRuntime.clearTemplate ()
        -
        -

        Notifies the platform implementation to dismiss the template display card

        - -
        -
        - -

        ◆ clearPlayerInfo()

        - -
        -
        - - - - - - - -
        void com.amazon.aace.alexa.TemplateRuntime.clearPlayerInfo ()
        -
        -

        Notifies the platform implementation to dismiss the player info display card

        - -
        -
        - -

        ◆ displayCardCleared()

        - -
        -
        - - - - - - - -
        final void com.amazon.aace.alexa.TemplateRuntime.displayCardCleared ()
        -
        -

        Notifies the Engine that a display card has been cleared from the screen. Upon getting this notification, the TemplateRuntime will release the visual channel.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration-members.html deleted file mode 100644 index e80432021..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration-members.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.config.AlexaConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.config.AlexaConfiguration, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - - - - -
        createAlertsConfig(final String databaseFilePath)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createAuthProviderConfig(final String[] providerNames)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createCapabilitiesDelegateConfig(final String databaseFilePath)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createCertifiedSenderConfig(final String databaseFilePath)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createCurlConfig(String certsPath)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createCurlConfig(final String certsPath, final String iface)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createCurlConfig(final String certsPath, final String iface, final String proxy)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createDeviceInfoConfig(final String deviceSerialNumber, final String clientId, final String productId, final String manufacturerName, final String description)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createDeviceSettingsConfig(final String databaseFilePath, final String[] locales, final String defaultLocale, final String defaultTimezone, final String[][] localeCombinations)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createDeviceSettingsConfig(final String databaseFilePath)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createDeviceSettingsConfig(final String databaseFilePath, final String[] locales, final String defaultLocale, final String defaultTimezone)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createDuckingConfig(final boolean duckingEnabled)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createEqualizerControllerConfig(final EqualizerBand[] supportedBands, final int minLevel, final int maxLevel, final EqualizerBandLevel[] defaultBandLevels)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createExternalMediaPlayerConfig(final String agent)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createMiscStorageConfig(final String databaseFilePath)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createNotificationsConfig(final String databaseFilePath)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createSettingsConfig(final String databaseFilePath, final String locale)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createSettingsConfig(String databaseFilePath)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createSpeakerManagerConfig(final boolean enabled)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createSpeechRecognizerConfig(final String encoderName)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createSystemConfig(final int firmwareVersion)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        createTemplateRuntimeTimeoutConfig(final TemplateRuntimeTimeout[] timeoutList)com.amazon.aace.alexa.config.AlexaConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html deleted file mode 100644 index 4eef48404..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html +++ /dev/null @@ -1,1043 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.config.AlexaConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.config.AlexaConfiguration Class Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Static Public Member Functions

        static EngineConfiguration createDeviceInfoConfig (final String deviceSerialNumber, final String clientId, final String productId, final String manufacturerName, final String description)
         
        static EngineConfiguration createAlertsConfig (final String databaseFilePath)
         
        static EngineConfiguration createNotificationsConfig (final String databaseFilePath)
         
        static EngineConfiguration createCertifiedSenderConfig (final String databaseFilePath)
         
        static EngineConfiguration createCapabilitiesDelegateConfig (final String databaseFilePath)
         
        static EngineConfiguration createCurlConfig (String certsPath)
         
        static EngineConfiguration createCurlConfig (final String certsPath, final String iface)
         
        static EngineConfiguration createCurlConfig (final String certsPath, final String iface, final String proxy)
         
        static EngineConfiguration createDeviceSettingsConfig (final String databaseFilePath, final String[] locales, final String defaultLocale, final String defaultTimezone, final String[][] localeCombinations)
         
        static EngineConfiguration createDeviceSettingsConfig (final String databaseFilePath)
         
        static EngineConfiguration createDeviceSettingsConfig (final String databaseFilePath, final String[] locales, final String defaultLocale, final String defaultTimezone)
         
        static EngineConfiguration createSettingsConfig (final String databaseFilePath, final String locale)
         
        static EngineConfiguration createSettingsConfig (String databaseFilePath)
         
        static EngineConfiguration createMiscStorageConfig (final String databaseFilePath)
         
        static EngineConfiguration createSpeakerManagerConfig (final boolean enabled)
         
        static EngineConfiguration createSystemConfig (final int firmwareVersion)
         
        static EngineConfiguration createSpeechRecognizerConfig (final String encoderName)
         
        static EngineConfiguration createTemplateRuntimeTimeoutConfig (final TemplateRuntimeTimeout[] timeoutList)
         
        static EngineConfiguration createEqualizerControllerConfig (final EqualizerBand[] supportedBands, final int minLevel, final int maxLevel, final EqualizerBandLevel[] defaultBandLevels)
         
        static EngineConfiguration createExternalMediaPlayerConfig (final String agent)
         
        static EngineConfiguration createAuthProviderConfig (final String[] providerNames)
         
        static EngineConfiguration createDuckingConfig (final boolean duckingEnabled)
         
        -

        Detailed Description

        -

        A factory interface for creating Alexa configuration objects

        -

        Member Function Documentation

        - -

        ◆ createDeviceInfoConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceInfoConfig (final String deviceSerialNumber,
        final String clientId,
        final String productId,
        final String manufacturerName,
        final String description 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate device info configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "deviceInfo":
        {
        "deviceSerialNumber": "<DEVICE_SERIAL_NUMBER>"
        "clientId": "<CLIENT_ID>",
        "productId": "<PRODUCT_ID>"
        "manufacturerName": "<MANUFACTURER_NAME>"
        "description": "<DESCRIPTION>"
        }
        }
        Parameters
        - - - - - - -
        deviceSerialNumberThe device serial number used to authorize the client with AVS
        clientIdThe client ID used to authorize the client with AVS
        productIdThe product ID used to authorize the client with AVS
        manufacturerNameThe manufacturer name of the product
        descriptionThe description of the product
        -
        -
        - -
        -
        - -

        ◆ createAlertsConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createAlertsConfig (final String databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate alerts configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "alertsCapabilityAgent":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        databaseFilePathThe file path to the SQLite database used to store persistent alerts data. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createNotificationsConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createNotificationsConfig (final String databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate notifications configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "notifications":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        databaseFilePathThe file path to the SQLite database used to store persistent notifications data. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createCertifiedSenderConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createCertifiedSenderConfig (final String databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate certified sender configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "certifiedSender":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        databaseFilePathThe file path to the SQLite database used to store persistent certified sender data. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createCapabilitiesDelegateConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createCapabilitiesDelegateConfig (final String databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate capabilities delegate configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "capabilitiesDelegate":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        databaseFilePathThe file path to the SQLite database used to store device capabilities. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createCurlConfig() [1/3]

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createCurlConfig (String certsPath)
        -
        -static
        -
        -

        Factory method used to programmatically generate CURL configuration data. The 'libCurlUtils' sub-component of the global configuration supports the following options:

          -
        • CURLOPT_CAPATH If present, specifies a value for the libcurl property CURLOPT_CAPATH. The data generated by this method is equivalent to providing the following JSON values in a configuration file:
        • -
        -
        {
        "libcurlUtils" : {
        "CURLOPT_CAPATH" : "<CA_CERTIFICATES_FILE_PATH>"
        }
        }
        Parameters
        - - -
        certsPathThe file path to the directory holding CA certificates
        -
        -
        - -
        -
        - -

        ◆ createCurlConfig() [2/3]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createCurlConfig (final String certsPath,
        final String iface 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate CURL configuration data. The 'libCurlUtils' sub-component of the global configuration supports the following options:

          -
        • CURLOPT_CAPATH If present, specifies a value for the libcurl property CURLOPT_CAPATH.
        • -
        • CURLOPT_INTERFACE if present, specifies a value for the libcurl property CURLOPT_INTERFACE. The data generated by this method is equivalent to providing the following JSON values in a configuration file:
        • -
        -
        {
        "libcurlUtils" : {
        "CURLOPT_CAPATH" : "<CA_CERTIFICATES_FILE_PATH>",
        "CURLOPT_INTERFACE" : "<NETWORK_INTERFACE_NAME>"
        }
        }
        Parameters
        - - - -
        certsPathThe file path to the directory holding CA certificates
        ifaceThe interface used for outgoing network interface. This can be an network interface name, an IP address or a host name.
        -
        -
        - -
        -
        - -

        ◆ createCurlConfig() [3/3]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createCurlConfig (final String certsPath,
        final String iface,
        final String proxy 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate CURL configuration data. The 'libCurlUtils' sub-component of the global configuration supports the following options:

          -
        • CURLOPT_CAPATH If present, specifies a value for the libcurl property CURLOPT_CAPATH.
        • -
        • CURLOPT_INTERFACE if present, specifies a value for the libcurl property CURLOPT_INTERFACE.
        • -
        • CURLOPT_PROXY if present, specifies a value for the libcurl property CURLOPT_PROXY. The data generated by this method is equivalent to providing the following JSON values in a configuration file:
        • -
        -
        {
        "libcurlUtils" : {
        "CURLOPT_CAPATH" : "<CA_CERTIFICATES_FILE_PATH>",
        "CURLOPT_INTERFACE" : "<NETWORK_INTERFACE_NAME>",
        "CURLOPT_PROXY" : "<PROXY_ADDRESS>"
        }
        }
        Parameters
        - - - - -
        certsPathThe file path to the directory holding CA certificates
        ifaceThe interface used for outgoing network interface.
        proxyThe proxy used for outgoing requests. This can be an network interface name, an IP address or a host name.
        -
        -
        - -
        -
        - -

        ◆ createDeviceSettingsConfig() [1/3]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceSettingsConfig (final String databaseFilePath,
        final String [] locales,
        final String defaultLocale,
        final String defaultTimezone,
        final String localeCombinations[][] 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate device settings configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "deviceSettings": {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>",
        "locales": [<LIST_OF_LOCALE_STRINGS>],
        "defaultLocale": "<DEFAULT_LOCALE_STRING>",
        "localeCombinations": [[<LOCALE_STRING_PAIR>]],
        "defaultTimezone": "<TIMEZONE>"
        }
        }
        Parameters
        - - - - - - -
        databaseFilePathThe file path to the SQLite database used to store persistent settings data. The database will be created on initialization if it does not already exist.
        localesA list of locales supported by the device. The default is ["en-US","en-GB","de-DE", "en-IN","en-CA","ja-JP","en-AU","fr-FR","it-IT","es-ES","es-MX","fr-CA","es-US", "hi-IN", "pt-BR"].
        defaultLocaleThe default locale setting on the device.
        defaultTimezoneThe default timezone setting on the device. For accepted values, refer to the accepted timezones here: https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/system.html#timezonechanged
        localeCombinationsA list of locale combinations supported by the device for dual-locale mode. The permitted combinations are [["en-CA","fr-CA"],["fr-CA","en-CA"],["en-US","es-US"], ["es-US","en-US"],["en-IN","hi-IN"],["hi-IN","en-IN"],["en-US","fr-FR"],["fr-FR","en-US"], ["en-US","de-DE"],["de-DE","en-US"],["en-US","ja-JP"],["ja-JP","en-US"],["en-US","it-IT"], ["it-IT","en-US"],["en-US","es-ES"],["es-ES","en-US"]]. Any locale specified in this list must also be specified in the locales list.
        -
        -
        - -
        -
        - -

        ◆ createDeviceSettingsConfig() [2/3]

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceSettingsConfig (final String databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate device settings configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "deviceSettings": {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>",
        "locales": [
        "en-US",
        "en-GB",
        "de-DE",
        "en-IN",
        "en-CA",
        "ja-JP",
        "en-AU",
        "fr-FR",
        "it-IT",
        "es-ES",
        "es-MX",
        "fr-CA",
        "es-US",
        "hi-IN",
        "pt-BR"
        ],
        "defaultLocale": "en-US",
        "localeCombinations": [
        ["en-CA","fr-CA"],
        ["fr-CA","en-CA"],
        ["en-US","es-US"],
        ["es-US","en-US"],
        ["en-IN","hi-IN"],
        ["hi-IN","en-IN"],
        ["en-US","es-ES"],
        ["es-ES","en-US"],
        ["en-US","de-DE"],
        ["de-DE","en-US"],
        ["en-US","fr-FR"],
        ["fr-FR","en-US"],
        ["en-US","it-IT"],
        ["it-IT","en-US"],
        ["en-US","ja-JP"],
        ["ja-JP","en-US"],
        ],
        "defaultTimezone": "America/Vancouver"
        }
        Parameters
        - - -
        databaseFilePathThe file path to the SQLite database used to store persistent settings data. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createDeviceSettingsConfig() [3/3]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceSettingsConfig (final String databaseFilePath,
        final String [] locales,
        final String defaultLocale,
        final String defaultTimezone 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate device settings configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "deviceSettings": {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>",
        "locales": [<LIST_OF_LOCALE_STRINGS>],
        "defaultLocale": "<DEFAULT_LOCALE_STRING>",
        "defaultTimezone": "<TIMEZONE>"
        }
        }
        Parameters
        - - - - - -
        databaseFilePathThe file path to the SQLite database used to store persistent settings data. The database will be created on initialization if it does not already exist.
        localesA list of locales supported by the device. The default is ["en-US","en-GB","de-DE", "en-IN","en-CA","ja-JP","en-AU","fr-FR","it-IT","es-ES","es-MX","fr-CA","es-US","hi-IN","pt-BR"]. For the accepted values, refer to https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/system.html#locales
        defaultLocaleThe default locale setting on the device. The default is "en-US".
        defaultTimezoneThe default timezone setting on the device. The default is "America/Vancouver". For accepted values, refer to the accepted timezones here: https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/system.html#timezonechanged
        -
        -
        - -
        -
        - -

        ◆ createSettingsConfig() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createSettingsConfig (final String databaseFilePath,
        final String locale 
        )
        -
        -static
        -
        -
        Deprecated:
        Use AlexaConfiguration.createDeviceSettingsConfig().
        -

        Factory method used to programmatically generate settings configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "settings": {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>",
        "defaultAVSClientSettings": {
        "locale": "<LOCALE>"
        }
        }
        }
        Parameters
        - - - -
        databaseFilePathThe file path to the SQLite database used to store persistent settings data. The database will be created on initialization if it does not already exist.
        localeThe current locale setting on the client
        -
        -
        - -
        -
        - -

        ◆ createSettingsConfig() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createSettingsConfig (String databaseFilePath)
        -
        -static
        -
        -
        Deprecated:
        Use AlexaConfiguration.createDeviceSettingsConfig().
        -

        Factory method used to programmatically generate settings configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "settings": {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>",
        "defaultAVSClientSettings": {
        "locale": "<LOCALE>"
        }
        }
        }
        Parameters
        - - - -
        databaseFilePathThe file path to the SQLite database used to store persistent settings data. The database will be created on initialization if it does not already exist.
        localeThe current locale setting on the client
        -
        -
        - -
        -
        - -

        ◆ createMiscStorageConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createMiscStorageConfig (final String databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate misc storage configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "miscDatabase":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>",
        }
        }
        Parameters
        - - -
        databaseFilePathThe file path to the SQLite database used to store persistent misc storage data. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createSpeakerManagerConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createSpeakerManagerConfig (final boolean enabled)
        -
        -static
        -
        -

        Factory method used to programmatically generate speaker manager configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "speakerManager": {
        "enabled": [true|false]
        }
        }
        }
        Parameters
        - - -
        enabledEnable or disable the speaker manager (default is enabled)
        -
        -
        - -
        -
        - -

        ◆ createSystemConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createSystemConfig (final int firmwareVersion)
        -
        -static
        -
        -

        Factory method used to programmatically generate system configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "system": {
        "firmwareVersion": "<FIRMWARE_VERSION>"
        }
        }
        }
        Parameters
        - - -
        firmwareVersionThe firmware version of the client device
        -
        -
        - -
        -
        - -

        ◆ createSpeechRecognizerConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createSpeechRecognizerConfig (final String encoderName)
        -
        -static
        -
        -

        Factory method used to programmatically generate encoder configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "speechRecognizer": {
        "encoder": {
        "name": "<ENCODER_NAME>"
        }
        }
        }
        }
        Parameters
        - - -
        encoderNameThe encoder codec name to be used
        -
        -
        - -
        -
        - -

        ◆ createTemplateRuntimeTimeoutConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createTemplateRuntimeTimeoutConfig (final TemplateRuntimeTimeout [] timeoutList)
        -
        -static
        -
        -

        Factory method used to programmatically generate template runtime configuration data. This is an optional configuration. Following are the accepted keys and their description.

          -
        • displayCardTTSFinishedTimeout If present, specifies the values in milli seconds to control the timeout of display card at the Alexa Speech.
        • -
        • displayCardAudioPlaybackFinishedTimeout If present, specifies the values in milli seconds to control the timeout of display card at the FINISHED state of AudioPlayback.
        • -
        • displayCardAudioPlaybackStoppedPausedTimeout If present, specifies the values in milli seconds to control the timeout of display card at STOP or PAUSE state of AudioPlayback. The data generated by this method is equivalent to providing the following JSON values in a configuration file:
        • -
        -
        {
        "templateRuntimeCapabilityAgent": {
        "displayCardTTSFinishedTimeout": <TIMEOUT_IN_MS>,
        "displayCardAudioPlaybackFinishedTimeout": <TIMEOUT_IN_MS>,
        "displayCardAudioPlaybackStoppedPausedTimeout": <TIMEOUT_IN_MS>
        }
        }
        Parameters
        - - -
        timeoutListA list of TemplateRuntimeTimeout type and value pairs
        -
        -
        - -
        -
        - -

        ◆ createEqualizerControllerConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createEqualizerControllerConfig (final EqualizerBand [] supportedBands,
        final int minLevel,
        final int maxLevel,
        final EqualizerBandLevel [] defaultBandLevels 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate equalizer controller configuration data. This is an optional configuration, and default settings will be used if configuration is not provided. This method produces configuration data according to the JSON structure in the sample below.

        -
        "equalizer": {
        "bands": {
        "BASS": true,
        "MIDRANGE": false,
        "TREBLE": true
        },
        "defaultState": {
        "bands": {
        "BASS": 4,
        "TREBLE" : -1
        }
        },
        "minLevel": -6,
        "maxLevel": 6
        }

        The configuration branches are used as follows:

        -
          -
        • equalizer.bands: Specifies which bands are supported by the device and will be enabled for control with Alexa. Each child key is the name of an Alexa-supported band ("BASS", "MIDRANGE", or "TREBLE") and value is whether the device supports the band. Only bands explicitly declared supported will be enabled in the SDK and Alexa. Omitting this branch enables all bands by default.
        • -
        -
          -
        • equalizer.defaultState: Describes the default or reset state of the equalizer. These settings are used to reset the equalizer with Alexa such as by saying "Alexa, reset bass." If this branch or its child is omitted, default values will be used.
        • -
        • equalizer.defaultState.bands: Defines the default gain level setting in dB for each supported equalizer band. Each element key is the name of a supported band and value is a level (int) specifying the default gain in dB. All of the supported bands must be provided once this branch is defined. All dB levels must obey the limits declared in "equalizer.minLevel" and "equalizer.maxLevel". Omitting this branch uses the default 0db for each band.
        • -
        -
          -
        • equalizer.minLevel and equalizer.maxLevel: Integer values specifying the decibel level range on which Alexa may operate for the supported bands. The device may support a different range internally, but Alexa will know only about the limits declared here. Values should be specified as absolute amplitude gain in integer dB and scaled to the platform's internal range as necessary. If these values are omitted, the default range min -6dB and max +6dB will be used.
        • -
        -
        Parameters
        - - - - - -
        supportedBandsThe supported equalizer bands. Corresponds to the "equalizer.bands" config branch. Only bands provided will be enabled. Null supportedBands omits the config branch. Nonnull supportedBands includes the branch and declares each band in the set with a value "true".
        minLevelThe minimum gain level for the equalizer bands in integer dB. Corresponds to "equalizer.minLevel".
        maxLevelThe maximum gain level for the equalizer bands in integer dB. Corresponds to "equalizer.maxLevel".
        defaultBandLevelsThe default or reset state of the equalizer bands. Corresponds to the "equalizer.defaultState.bands" config branch. Null defaultBandLevels omits the config branch.
        -
        -
        - -
        -
        - -

        ◆ createExternalMediaPlayerConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createExternalMediaPlayerConfig (final String agent)
        -
        -static
        -
        -

        Factory method used to programmatically generate external media player configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "externalMediaPlayer": {
        "agent": "<agent>"
        }
        }
        }
        Parameters
        - - -
        [in]agentThe external media player agent
        -
        -
        - -
        -
        - -

        ◆ createAuthProviderConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createAuthProviderConfig (final String [] providerNames)
        -
        -static
        -
        -

        Factory method used to programmatically generate auth provider configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "authProvider": {
        "providers": [<LIST_OF_PROVIDER_NAMES_STRINGS>]
        }
        }
        }
        Parameters
        - - -
        providerNamesThe list of auth providers
        -
        -
        - -
        -
        - -

        ◆ createDuckingConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.alexa.config.AlexaConfiguration.createDuckingConfig (final boolean duckingEnabled)
        -
        -static
        -
        -

        Factory method used to programmatically generate music ducking configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "audio" : {
        "audioOutputType.music": {
        "ducking": {
        "enabled" : true
        }
        }
        }
        }
        Parameters
        - - -
        duckingEnabledtrue if ducking is enabled
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l-members.html deleted file mode 100644 index 2e83eebed..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l-members.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.apl.APL Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.apl.APL, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - -
        clearAllExecuteCommands()com.amazon.aace.apl.APLprotected
        clearCard()com.amazon.aace.apl.APLprotected
        clearDocument(String token)com.amazon.aace.apl.APL
        dataSourceUpdate(String sourceType, String jsonPayload, String token)com.amazon.aace.apl.APL
        executeCommands(String jsonPayload, String token)com.amazon.aace.apl.APL
        executeCommandsResult(String token, boolean result, String error)com.amazon.aace.apl.APLprotected
        interruptCommandSequence(String token)com.amazon.aace.apl.APL
        processActivityEvent(String token, ActivityEvent event)com.amazon.aace.apl.APLprotected
        renderDocument(String jsonPayload, String token, String windowId)com.amazon.aace.apl.APL
        renderDocumentResult(String token, boolean result, String error)com.amazon.aace.apl.APLprotected
        sendDataSourceFetchRequestEvent(String type, String payload)com.amazon.aace.apl.APLprotected
        sendDeviceWindowState(String state)com.amazon.aace.apl.APLprotected
        sendDocumentState(String state)com.amazon.aace.apl.APLprotected
        sendRuntimeErrorEvent(String payload)com.amazon.aace.apl.APLprotected
        sendUserEvent(String payload)com.amazon.aace.apl.APLprotected
        setAPLMaxVersion(String aplMaxVersion)com.amazon.aace.apl.APLprotected
        setDocumentIdleTimeout(long documentIdleTimeout)com.amazon.aace.apl.APLprotected
        setPlatformProperty(String name, String value)com.amazon.aace.apl.APLprotected
        updateAPLRuntimeProperties(String properties)com.amazon.aace.apl.APL
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html deleted file mode 100644 index c5724662e..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html +++ /dev/null @@ -1,844 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.apl.APL Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.apl.APL Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  ActivityEvent
         
        - - - - - - - - - - - - - -

        -Public Member Functions

        void renderDocument (String jsonPayload, String token, String windowId)
         
        void clearDocument (String token)
         
        void executeCommands (String jsonPayload, String token)
         
        void dataSourceUpdate (String sourceType, String jsonPayload, String token)
         
        void interruptCommandSequence (String token)
         
        void updateAPLRuntimeProperties (String properties)
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Protected Member Functions

        final void clearCard ()
         
        final void clearAllExecuteCommands ()
         
        final void sendUserEvent (String payload)
         
        final void sendDataSourceFetchRequestEvent (String type, String payload)
         
        final void sendRuntimeErrorEvent (String payload)
         
        final void setAPLMaxVersion (String aplMaxVersion)
         
        final void setDocumentIdleTimeout (long documentIdleTimeout)
         
        final void renderDocumentResult (String token, boolean result, String error)
         
        final void executeCommandsResult (String token, boolean result, String error)
         
        final void processActivityEvent (String token, ActivityEvent event)
         
        final void sendDocumentState (String state)
         
        final void sendDeviceWindowState (String state)
         
        final void setPlatformProperty (String name, String value)
         
        -

        Detailed Description

        -

        APL should be extended to handle receiving Alexa Presentation RenderDocument and ExecuteCommands directives from AVS. These directives contain metadata for rendering or operating on display cards for devices with GUI support. For more information about Alexa Presentation Language (APL) see the interface overview:

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/understand-apl.html

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ renderDocument()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.apl.APL.renderDocument (String jsonPayload,
        String token,
        String windowId 
        )
        -
        -

        Notifies the platform implementation that a RenderDocument directive has been received. Once called, the client should render the document based on the APL specification in the payload in structured JSON format.

        -
        Note
        The payload may contain customer sensitive information and should be used with utmost care. Failure to do so may result in exposing or mishandling of customer data.
        -
        Parameters
        - - - - -
        [in]jsonPayloadThe payload of the Alexa.Presentation.APL.RenderDocument directive which follows the APL specification.
        [in]tokenThe APL presentation token associated with the document in the payload.
        [in]windowIdThe target windowId.
        -
        -
        - -
        -
        - -

        ◆ clearDocument()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.apl.APL.clearDocument (String token)
        -
        -

        Notifies the platform implementation when the client should clear the APL display card. Once the card is cleared, the platform implementation should call clearCard().

        -
        Parameters
        - - -
        [in]tokenThe APL presentation token associated with the current rendered document.
        -
        -
        - -
        -
        - -

        ◆ executeCommands()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.apl.APL.executeCommands (String jsonPayload,
        String token 
        )
        -
        -

        Notifies the platform implementation that an ExecuteCommands directive has been received.

        -
        Parameters
        - - - -
        [in]jsonPayloadThe payload of the Alexa.Presentation.APL.ExecuteCommands directive in structured JSON format.
        [in]tokenThe APL presentation token associated with the current rendered document.
        -
        -
        - -
        -
        - -

        ◆ dataSourceUpdate()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.apl.APL.dataSourceUpdate (String sourceType,
        String jsonPayload,
        String token 
        )
        -
        -

        Notifies the platform implementation of a dynamic data source update. Please refer to APL documentation for more information.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-data-source.html

        -
        Parameters
        - - - - -
        [in]sourceTypeDataSource type.
        [in]jsonPayloadThe payload of the directive in structured JSON format.
        [in]tokenThe APL presentation token associated with the current rendered document.
        -
        -
        - -
        -
        - -

        ◆ interruptCommandSequence()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.apl.APL.interruptCommandSequence (String token)
        -
        -

        Notifies the platform implementation that a command execution sequence should be interrupted.

        -
        Parameters
        - - -
        [in]tokenThe APL presentation token associated with the current rendered document.
        -
        -
        - -
        -
        - -

        ◆ updateAPLRuntimeProperties()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.apl.APL.updateAPLRuntimeProperties (String properties)
        -
        -

        Notifies the platform implementation of APL runtime environment properties that must be updated. The Engine will generate these values based on the setAPLProperty() values. The APL runtime will be affected by these values.

        -
        Parameters
        - - -
        [in]propertiesA JSON object in string form containing the APL runtime properties that need to be updated.
        {
        "drivingState" : "parked|moving",
        "theme" : "light|light-gray1|light-gray2|dark|dark-black|dark-gray",
        "video" : "enabled|disabled"
        }
        -
        -
        - -
        -
        - -

        ◆ clearCard()

        - -
        -
        - - - - - -
        - - - - - - - -
        final void com.amazon.aace.apl.APL.clearCard ()
        -
        -protected
        -
        -

        Notifies the Engine to clear the card from the screen and release any focus being held.

        - -
        -
        - -

        ◆ clearAllExecuteCommands()

        - -
        -
        - - - - - -
        - - - - - - - -
        final void com.amazon.aace.apl.APL.clearAllExecuteCommands ()
        -
        -protected
        -
        -

        Notifies the Engine to clear all pending ExecuteCommands directives and mark them as failed.

        - -
        -
        - -

        ◆ sendUserEvent()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.apl.APL.sendUserEvent (String payload)
        -
        -protected
        -
        -

        Notifies the Engine to send UserEvent event to AVS.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-interface.html#userevent-request

        -
        Parameters
        - - -
        [in]payloadThe UserEvent event payload. The caller of this function is responsible to pass the payload as it defined by AVS.
        -
        -
        - -
        -
        - -

        ◆ sendDataSourceFetchRequestEvent()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.apl.APL.sendDataSourceFetchRequestEvent (String type,
        String payload 
        )
        -
        -protected
        -
        -

        Notifies the Engine to send a LoadIndexListData event to AVS.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-interface.html#loadindexlistdata-request https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-data-source.html

        -
        Parameters
        - - - -
        typeThe type of data source fetch request. The only supported value is "dynamicIndexList".
        payloadThe DataSourceFetchRequest event payload. The caller of this function is responsible to pass the payload as defined by AVS.
        -
        -
        - -
        -
        - -

        ◆ sendRuntimeErrorEvent()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.apl.APL.sendRuntimeErrorEvent (String payload)
        -
        -protected
        -
        -

        Notifies the Engine to send an APL RuntimeError event to AVS

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-interface.html#runtimeerror-request

        -
        Parameters
        - - -
        payloadThe RuntimeError event payload. The caller of this function is responsible to pass the payload as defined by AVS.
        -
        -
        - -
        -
        - -

        ◆ setAPLMaxVersion()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.apl.APL.setAPLMaxVersion (String aplMaxVersion)
        -
        -protected
        -
        -

        Set the APL version supported by the runtime component.

        -
        Parameters
        - - -
        [in]aplMaxVersionThe APL version supported.
        -
        -
        - -
        -
        - -

        ◆ setDocumentIdleTimeout()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.apl.APL.setDocumentIdleTimeout (long documentIdleTimeout)
        -
        -protected
        -
        -

        Set a custom document idle timeout. When the idle timeout is reached, clearDocument will be called.

        -
        Parameters
        - - -
        [in]documentIdleTimeoutThe timeout in milliseconds.
        -
        -
        -
        Note
        Will be reset for every directive received from AVS.
        - -
        -
        - -

        ◆ renderDocumentResult()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.apl.APL.renderDocumentResult (String token,
        boolean result,
        String error 
        )
        -
        -protected
        -
        -

        Notifies the Engine with the result of a renderDocument notification.

        -
        Parameters
        - - - - -
        [in]tokenThe APL presentation token associated with the current rendered document.
        [in]resultRendering result (true on executed, false on exception).
        [in]errorError message provided in case result is false.
        -
        -
        - -
        -
        - -

        ◆ executeCommandsResult()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.apl.APL.executeCommandsResult (String token,
        boolean result,
        String error 
        )
        -
        -protected
        -
        -

        Notifies the Engine with the result of an executeCommands notification.

        -
        Parameters
        - - - - -
        [in]tokenThe APL presentation token associated with the current rendered document.
        [in]resultRendering result (true on executed, false on exception).
        [in]errorError message provided in case result is false.
        -
        -
        - -
        -
        - -

        ◆ processActivityEvent()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.apl.APL.processActivityEvent (String token,
        ActivityEvent event 
        )
        -
        -protected
        -
        -

        Notifies the Engine of an activity change event. The APL runtime can report whether the rendered document is active or inactive. If active, the idle timer is stopped and prevents clearDocument. If inactive, the idle timer is started and clearDocument will be called after timer expiration.

        -
        Parameters
        - - - -
        [in]sourceThe source of the activity event.
        [in]eventThe activity change event.
        -
        -
        - -
        -
        - -

        ◆ sendDocumentState()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.apl.APL.sendDocumentState (String state)
        -
        -protected
        -
        -

        Notifies the Engine of rendered document state. The format of the state is a JSON string representing the payload object of the RenderedDocumentState sent with APL events.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/presentation-apl.html#rendereddocumentstate

        -
        Parameters
        - - -
        [in]stateThe visual state of the rendered components.
        -
        -
        - -
        -
        - -

        ◆ sendDeviceWindowState()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.apl.APL.sendDeviceWindowState (String state)
        -
        -protected
        -
        -

        Notifies the Engine of the current window state. The format of the state is a JSON string representing the payload object of the WindowState context sent for the Alexa.Display.Window interface.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/display-window.html#windowstate-context-object

        -
        Parameters
        - - -
        [in]stateThe window state context object.
        -
        -
        - -
        -
        - -

        ◆ setPlatformProperty()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.apl.APL.setPlatformProperty (String name,
        String value 
        )
        -
        -protected
        -
        -

        The rendered APL experience will rely on the value of some defined properties. The platform implementation must report these values to provide a safe visual experience in the vehicle.

        -
        Parameters
        - - - -
        [in]nameThe name of the property.
        [in]valueThe value of the property.
        -
        -
        -
        Note
        Contact your Solutions Architect for an updated list of automotive themes identifiers.
        -
        Attention
        Supported names and values.
        - - - - - - - - - -
        Name Values Description
        drivingState parked, moving Set this property when vehicle driving state changes.
        uiMode day, night This affects the contrast of certified APL experiences.
        themeId <string> Contact Solutions Architect for list of values.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html deleted file mode 100644 index 6fcf0aaca..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.apl.config.APLConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.apl.config.APLConfiguration, including all inherited members.

        - - -
        createAlexaPresentationTimeoutConfig(final AlexaPresentationTimeout[] timeoutList)com.amazon.aace.apl.config.APLConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html deleted file mode 100644 index 974377438..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.apl.config.APLConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.apl.config.APLConfiguration Class Reference
        -
        -
        - - - - -

        -Static Public Member Functions

        static EngineConfiguration createAlexaPresentationTimeoutConfig (final AlexaPresentationTimeout[] timeoutList)
         
        -

        Detailed Description

        -

        A factory interface for creating APL configuration objects.

        -

        Member Function Documentation

        - -

        ◆ createAlexaPresentationTimeoutConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.apl.config.APLConfiguration.createAlexaPresentationTimeoutConfig (final AlexaPresentationTimeout [] timeoutList)
        -
        -static
        -
        -

        Factory method used to programmatically generate Alexa Presentation configuration data. This is an optional configuration. Following are the accepted keys and their description.

          -
        • displayDocumentInteractionIdleTimeout If present, the timeout in ms for display card timeout. The data generated by this method is equivalent to providing the following JSON values in a configuration file:
        • -
        -
        {
        "alexaPresentationCapabilityAgent": {
        "displayDocumentInteractionIdleTimeout": <TIMEOUT_IN_MS>
        }
        }
        Parameters
        - - -
        timeoutListA list of AlexaPresentationTimeout type and value pairs.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider-members.html deleted file mode 100644 index dffda8478..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioInputProvider Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.audio.AudioInputProvider, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider.html deleted file mode 100644 index 9023ed3f7..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioInputProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioInputProvider Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  AudioInputType
         
        -

        Detailed Description

        -

        AudioInputProvider should be extended to provide an audio input source to the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output-members.html deleted file mode 100644 index 48a78f4b8..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output-members.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioOutput Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html deleted file mode 100644 index 3d1a24fc9..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html +++ /dev/null @@ -1,594 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioOutput Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioOutput Class Referenceabstract
        -
        -
        - - - - - - - - - - -

        -Classes

        enum  FocusAction
         
        enum  MediaError
         
        enum  MediaState
         
        enum  MutedState
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        boolean prepare (AudioStream stream, boolean repeating)
         
        boolean prepare (String url, boolean repeating)
         
        void mayDuck ()
         
        boolean play ()
         
        boolean stop ()
         
        boolean pause ()
         
        boolean resume ()
         
        boolean startDucking ()
         
        boolean stopDucking ()
         
        long getPosition ()
         
        boolean setPosition (long position)
         
        long getDuration ()
         
        long getNumBytesBuffered ()
         
        boolean volumeChanged (float volume)
         
        boolean mutedStateChanged (MutedState state)
         
        - - - -

        -Static Public Attributes

        static final long TIME_UNKNOWN = -1
         
        - - - - - -

        -Protected Member Functions

        void mediaError (MediaError type, String error)
         
        void mediaStateChanged (MediaState state)
         
        -

        Detailed Description

        -

        AudioOutput should be extended to play audio data provided by the Engine.

        -

        After returning true from a playback-controlling method invocation from the Engine (i.e. play(), pause(), stop(), resume()), it is required that platform implementation notify the Engine of a playback state change by calling one of mediaStateChanged() with the new MediaState or mediaError() with the MediaError. The Engine expects no call to mediaStateChanged() in response to an invocation for which the platform returned false.

        -

        The platform implementation may call mediaError() or mediaStateChanged() with MediaState.BUFFERING at any time during a playback operation to notify the Engine of an error or buffer underrun, respectively. When the media player resumes playback after a buffer underrun, the platform implementation should call mediaStateChanged() with MediaState.PLAYING.

        -
        Note
        The AudioOutput platform implementation should be able to support the audio formats recommended by AVS for a familiar Alexa experience: https://developer.amazon.com/docs/alexa-voice-service/recommended-media-support.html
        -

        Member Function Documentation

        - -

        ◆ prepare() [1/2]

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.prepare (AudioStream stream,
        boolean repeating 
        )
        -
        -

        Notifies the platform implementation to prepare for playback of an audio stream source. Audio data will be available to stream from the Engine via read(). After returning true, the Engine will call play() to initiate audio playback.

        -
        Parameters
        - - - -
        streamThe audio stream to prepare
        repeatingtrue if the audio should repeat
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ prepare() [2/2]

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.prepare (String url,
        boolean repeating 
        )
        -
        -

        Notifies the platform implementation to prepare for playback of a URL audio source. After returning true, the Engine will call play() to initiate audio playback.

        -
        Parameters
        - - - -
        urlThe URL audio source to prepare
        repeatingtrue if the audio should repeat
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mayDuck()

        - -
        -
        - - - - - - - -
        void com.amazon.aace.audio.AudioOutput.mayDuck ()
        -
        -

        Notifies the platform implementation only if prepared media allows platform interface to duck the volume if any high priority audio stream is in the focus. If platform interface ducks the volume, report the state using audioFocusEvent always. If mayDuck is not called, platform interface can assume that media is not allowed to duck.

        - -
        -
        - -

        ◆ play()

        - -
        -
        - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.play ()
        -
        -

        Notifies the platform implementation to start playback of the current audio source. After returning true, the platform implementation must call mediaStateChanged() with MediaState.PLAYING when the media player begins playing the audio or mediaError() if an error occurs.

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ stop()

        - -
        -
        - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.stop ()
        -
        -

        Notifies the platform implementation to stop playback of the current audio source. After returning true, the platform implementation must call mediaStateChanged() with MediaState.STOPPED when the media player stops playing the audio or mediaError() if an error occurs.

        -

        A subsequent call to play() will be preceded by calls to prepare() and setPosition().

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ pause()

        - -
        -
        - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.pause ()
        -
        -

        Notifies the platform implementation to pause playback of the current audio source. After returning true, the platform implementation must call mediaStateChanged() with MediaState.STOPPED when the media player pauses the audio or mediaError() if an error occurs. A subsequent call to resume() will not be preceded by calls to prepare() and setPosition().

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ resume()

        - -
        -
        - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.resume ()
        -
        -

        Notifies the platform implementation to resume playback of the current audio source. After returning true, the platform implementation must call mediaStateChanged() with MediaState.PLAYING when the media player resumes the audio or mediaError() if an error occurs.

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ startDucking()

        - -
        -
        - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.startDucking ()
        -
        -

        Notifies the platform implementation to move the playback in background. If platform implementation supports audio ducking, reduce the media player volume according to platform guidelines.

        - -
        -
        - -

        ◆ stopDucking()

        - -
        -
        - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.stopDucking ()
        -
        -

        Notifies the platform implementation to move the playback in foreground. If platform implementation supports audio ducking, restore the media player volume to original value.

        - -
        -
        - -

        ◆ getPosition()

        - -
        -
        - - - - - - - -
        long com.amazon.aace.audio.AudioOutput.getPosition ()
        -
        -

        Returns the current playback position of the platform media player. If the audio source is not playing, the most recent position played should be returned.

        -
        Returns
        The platform media player's playback position in milliseconds, or TIME_UNKNOWN if the current media position is unknown or invalid.
        - -
        -
        - -

        ◆ setPosition()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.setPosition (long position)
        -
        -

        Notifies the platform implementation to set the playback position of the current audio source in the platform media player

        -
        Parameters
        - - -
        positionThe playback position in milliseconds to set in the platform media player
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ getDuration()

        - -
        -
        - - - - - - - -
        long com.amazon.aace.audio.AudioOutput.getDuration ()
        -
        -

        Returns the duration of the current audio source. If the duration is unknown, then TIME_UNKNOWN should be returned.

        -
        Returns
        The duration of the current audio source in milliseconds, or TIME_UNKNOWN.
        - -
        -
        - -

        ◆ getNumBytesBuffered()

        - -
        -
        - - - - - - - -
        long com.amazon.aace.audio.AudioOutput.getNumBytesBuffered ()
        -
        -

        Returns the amount of audio data buffered.

        -
        Returns
        the number of bytes of the audio data buffered, or 0 if it's unknown.
        - -
        -
        - -

        ◆ volumeChanged()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.volumeChanged (float volume)
        -
        -

        Notifies the platform implementation to set the volume of the output channel. The volume value should be scaled to fit the needs of the platform.

        -
        Parameters
        - - -
        [in]volumeThe volume to set on the output channel. volume is in the range [0,1].
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mutedStateChanged()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.audio.AudioOutput.mutedStateChanged (MutedState state)
        -
        -

        Notifies the platform implementation to apply a muted state has changed for the output channel

        -
        Parameters
        - - -
        [in]stateThe muted state to apply to the output channel. MutedState::MUTED when the output channel be muted, MutedState::UNMUTED when unmuted
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mediaError()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.audio.AudioOutput.mediaError (MediaError type,
        String error 
        )
        -
        -protected
        -
        -

        Notifies the Engine of an error during audio playback

        -
        Parameters
        - - - -
        errorThe error encountered by the platform media player during playback
        descriptionA description of the error
        -
        -
        -
        See also
        MediaError
        - -
        -
        - -

        ◆ mediaStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        void com.amazon.aace.audio.AudioOutput.mediaStateChanged (MediaState state)
        -
        -protected
        -
        -

        Notifies the Engine of an audio playback state change in the platform implementation. Must be called when the platform media player transitions between stopped and playing states.

        -
        Parameters
        - - -
        stateThe new playback state of the platform media player
        -
        -
        -
        See also
        MediaState
        - -
        -
        -

        Member Data Documentation

        - -

        ◆ TIME_UNKNOWN

        - -
        -
        - - - - - -
        - - - - -
        final long com.amazon.aace.audio.AudioOutput.TIME_UNKNOWN = -1
        -
        -static
        -
        -

        Used when audio time is unknown or indeterminate.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider-members.html deleted file mode 100644 index 43ffc804b..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioOutputProvider Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.audio.AudioOutputProvider, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider.html deleted file mode 100644 index 56f6c921a..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioOutputProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioOutputProvider Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  AudioOutputType
         
        -

        Detailed Description

        -

        AudioOutputProvider should be extended to provide an audio output source to the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization-members.html deleted file mode 100644 index 57fa4ec31..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization-members.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.authorization.Authorization Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.authorization.Authorization, including all inherited members.

        - - - - - - - - - - -
        authorizationError(String service, String error, String message)com.amazon.aace.authorization.Authorization
        authorizationStateChanged(String service, AuthorizationState state)com.amazon.aace.authorization.Authorization
        cancelAuthorization(String service)com.amazon.aace.authorization.Authorizationprotected
        eventReceived(String service, String event)com.amazon.aace.authorization.Authorization
        getAuthorizationData(String service, String key)com.amazon.aace.authorization.Authorization
        logout(String service)com.amazon.aace.authorization.Authorizationprotected
        sendEvent(String service, String event)com.amazon.aace.authorization.Authorizationprotected
        setAuthorizationData(String service, String key, String data)com.amazon.aace.authorization.Authorization
        startAuthorization(String service, String data)com.amazon.aace.authorization.Authorizationprotected
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html deleted file mode 100644 index 457840042..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html +++ /dev/null @@ -1,472 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.authorization.Authorization Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.authorization.Authorization Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  AuthorizationState
         
        - - - - - - - - - - - -

        -Public Member Functions

        void eventReceived (String service, String event)
         
        void authorizationStateChanged (String service, AuthorizationState state)
         
        void authorizationError (String service, String error, String message)
         
        String getAuthorizationData (String service, String key)
         
        void setAuthorizationData (String service, String key, String data)
         
        - - - - - - - - - -

        -Protected Member Functions

        final void startAuthorization (String service, String data)
         
        final void cancelAuthorization (String service)
         
        final void sendEvent (String service, String event)
         
        final void logout (String service)
         
        -

        Detailed Description

        -

        Authorization should be extended to carry out the authorization's required for the Engine.

        -

        This is a single platform interface for any supported authorizations by the Engine. The authorization process shall be carried out by the individual providers, referred here as authorization service. The platform implementation is responsible to follow the protocol established by the authorization service. Please refer to the authorization service documentation for the protocol information.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ eventReceived()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.authorization.Authorization.eventReceived (String service,
        String event 
        )
        -
        -

        Notifies the platform implementation about the authorization event.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        eventJSON representation of the authorization event as defined by the authorization service.
        -
        -
        - -
        -
        - -

        ◆ authorizationStateChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.authorization.Authorization.authorizationStateChanged (String service,
        AuthorizationState state 
        )
        -
        -

        Notifies the platform implementation about the authorization state change.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        stateThe authorization state represented using AuthorizationState
        -
        -
        - -
        -
        - -

        ◆ authorizationError()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.authorization.Authorization.authorizationError (String service,
        String error,
        String message 
        )
        -
        -

        Notifies the platform implementation about any error in the authorization process.

        -
        Parameters
        - - - - -
        serviceIndicates the authorization service.
        errorIndicates the authorization error. The value is defined by the each authorization service.
        messageError message for logging purpose.
        -
        -
        - -
        -
        - -

        ◆ getAuthorizationData()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        String com.amazon.aace.authorization.Authorization.getAuthorizationData (String service,
        String key 
        )
        -
        -

        Function to get the authorization data from the platform implementation.

        Note
        Call to this API need not necessarily require a call to the setAuthorizationData.
        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        keyThe key of the data requested.
        -
        -
        -
        Returns
        Returns the value of the key if available otherwise returns an empty string.
        - -
        -
        - -

        ◆ setAuthorizationData()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.authorization.Authorization.setAuthorizationData (String service,
        String key,
        String data 
        )
        -
        -

        Function to set the authorization data in platform implementation. The platform implementation are expected to store these values securely.

        -
        Parameters
        - - - - -
        serviceIndicates the authorization service.
        keyRepresents the key of the data
        dataThe data to be set.
        -
        -
        - -
        -
        - -

        ◆ startAuthorization()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.authorization.Authorization.startAuthorization (String service,
        String data 
        )
        -
        -protected
        -
        -

        Notifies the Engine to start the authorization process. Engine to call authStateChanged with AUTHORIZING on the start of authorization process. Engine to call authStateChanged with AUTHORIZED on the successful authorization.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        dataRepresents the data in json format. The value of this is defined by each authorization service.
        -
        -
        - -
        -
        - -

        ◆ cancelAuthorization()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.authorization.Authorization.cancelAuthorization (String service)
        -
        -protected
        -
        -

        Notifies the Engine to cancel the authorization.

        Note
        This does not logout the active authorization.
        -
        Parameters
        - - -
        serviceIndicates the authorization service.
        -
        -
        - -
        -
        - -

        ◆ sendEvent()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.authorization.Authorization.sendEvent (String service,
        String event 
        )
        -
        -protected
        -
        -

        The authorization event from platform implementation.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        eventRepresents the event in json format. The value of this is defined by each authorization service.
        -
        -
        - -
        -
        - -

        ◆ logout()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.authorization.Authorization.logout (String service)
        -
        -protected
        -
        -

        Notifies the Engine to logout. Engine would call authStateChanged with UNAUTHORIZED on the successful logout.

        -
        Parameters
        - - -
        serviceIndicates the authorization service that needs to be logged out.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control-members.html deleted file mode 100644 index 6c3d00abe..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control-members.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.carControl.CarControl Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.carControl.CarControl, including all inherited members.

        - - - - - - - - - - - - - - -
        adjustModeControllerValue(String endpointId, String controllerId, int delta)com.amazon.aace.carControl.CarControl
        adjustRangeControllerValue(String endpointId, String controllerId, double delta)com.amazon.aace.carControl.CarControl
        CarControl()com.amazon.aace.carControl.CarControl
        getModeControllerValue(String endpointId, String controllerId)com.amazon.aace.carControl.CarControl
        getRangeControllerValue(String endpointId, String controllerId)com.amazon.aace.carControl.CarControl
        isPowerControllerOn(String endpointId)com.amazon.aace.carControl.CarControl
        isToggleControllerOn(String endpointId, String controllerId)com.amazon.aace.carControl.CarControl
        setModeControllerValue(String endpointId, String controllerId, String value)com.amazon.aace.carControl.CarControl
        setRangeControllerValue(String endpointId, String controllerId, double value)com.amazon.aace.carControl.CarControl
        turnPowerControllerOff(String endpointId)com.amazon.aace.carControl.CarControl
        turnPowerControllerOn(String endpointId)com.amazon.aace.carControl.CarControl
        turnToggleControllerOff(String endpointId, String controllerId)com.amazon.aace.carControl.CarControl
        turnToggleControllerOn(String endpointId, String controllerId)com.amazon.aace.carControl.CarControl
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html deleted file mode 100644 index 76deb6bdb..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html +++ /dev/null @@ -1,659 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.carControl.CarControl Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.carControl.CarControl Class Referenceabstract
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         CarControl ()
         
        void turnPowerControllerOn (String endpointId) throws Exception
         
        void turnPowerControllerOff (String endpointId) throws Exception
         
        boolean isPowerControllerOn (String endpointId) throws Exception
         
        void turnToggleControllerOn (String endpointId, String controllerId) throws Exception
         
        void turnToggleControllerOff (String endpointId, String controllerId) throws Exception
         
        boolean isToggleControllerOn (String endpointId, String controllerId) throws Exception
         
        void setRangeControllerValue (String endpointId, String controllerId, double value) throws Exception
         
        void adjustRangeControllerValue (String endpointId, String controllerId, double delta) throws Exception
         
        double getRangeControllerValue (String endpointId, String controllerId) throws Exception
         
        void setModeControllerValue (String endpointId, String controllerId, String value) throws Exception
         
        void adjustModeControllerValue (String endpointId, String controllerId, int delta) throws Exception
         
        String getModeControllerValue (String endpointId, String controllerId) throws Exception
         
        -

        Detailed Description

        -

        CarControl should be extended to interface the elements that can be controlled in the vehicle. Each controllable element is an 'endpoint' with a unique endpointId. CarControl provides interfaces for four types of controllers. A custom combination of these controllers describes controls of the entire vehicle:

          -
        • Power Controller: Controls the power state of an endpoint. A maximum of one Power Controller is allowed per endpoint, identified by endpointId.
        • -
        • Toggle Controller: Controls the power state of a particular setting of an endpoint. Multiple Toggle Controllers for unique settings are allowed per endpoint, each identified by the combination of endpointId and controllerId.
        • -
        • Range Controller: Controls the settings of an endpoint that can be accessed with a range of values. Multiple Range Controllers for unique settings are allowed per endpoint, each identified by the combination of endpointId and controllerId.
        • -
        • Mode Controller: Controls the settings of an endpoint that can be accessed with a set of modes. Multiple Mode Controllers for unique settings are allowed per endpoint, each identified by the combination of endpointId and controllerId.
        • -
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Constructor & Destructor Documentation

        - -

        ◆ CarControl()

        - -
        -
        - - - - - - - -
        com.amazon.aace.carControl.CarControl.CarControl ()
        -
        -

        CarControl constructor.

        - -
        -
        -

        Member Function Documentation

        - -

        ◆ turnPowerControllerOn()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.carControl.CarControl.turnPowerControllerOn (String endpointId) throws Exception
        -
        -

        Notifies the platform implementation to power on the controller identified by endpointId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - -
        endpointIdThe unique identifier of the endpoint.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe controller cannot be powered on.
        -
        -
        - -
        -
        - -

        ◆ turnPowerControllerOff()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.carControl.CarControl.turnPowerControllerOff (String endpointId) throws Exception
        -
        -

        Notifies the platform implementation to power off the controller identified by endpointId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - -
        endpointIdThe unique identifier of the endpoint.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe controller cannot be powered off.
        -
        -
        - -
        -
        - -

        ◆ isPowerControllerOn()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.carControl.CarControl.isPowerControllerOn (String endpointId) throws Exception
        -
        -

        Retrieves the power state of the controller identified by endpointId from the platform implementation.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - -
        endpointIdThe unique identifier of the endpoint.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe power state of the controller identified by endpointId cannot be retrieved.
        -
        -
        -
        Returns
        true if the power controller is on.
        - -
        -
        - -

        ◆ turnToggleControllerOn()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.carControl.CarControl.turnToggleControllerOn (String endpointId,
        String controllerId 
        ) throws Exception
        -
        -

        Notifies the platform implementation to turn on the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - -
        endpointIdThe unique identifier of the endpoint.
        controllerIdThe unique identifier of the controller.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe controller cannot be powered on.
        -
        -
        - -
        -
        - -

        ◆ turnToggleControllerOff()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.carControl.CarControl.turnToggleControllerOff (String endpointId,
        String controllerId 
        ) throws Exception
        -
        -

        Notifies the platform implementation to turn off the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - -
        endpointIdThe unique identifier of the endpoint.
        controllerIdThe unique identifier of the controller.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe controller cannot be powered off.
        -
        -
        - -
        -
        - -

        ◆ isToggleControllerOn()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.carControl.CarControl.isToggleControllerOn (String endpointId,
        String controllerId 
        ) throws Exception
        -
        -

        Retrieves the power state of the controller identified by endpointId and controllerId from the platform implementation.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - -
        endpointIdThe unique identifier of the endpoint.
        controllerIdThe unique identifier of the controller.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe power state of the controller identified by endpointId and controllerId cannot be retrieved.
        -
        -
        -
        Returns
        true if the controller is on.
        - -
        -
        - -

        ◆ setRangeControllerValue()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.carControl.CarControl.setRangeControllerValue (String endpointId,
        String controllerId,
        double value 
        ) throws Exception
        -
        -

        Notifies the platform implementation to set the range setting of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        endpointIdThe unique identifier of the endpoint.
        controllerIdThe unique identifier of the controller.
        valueThe new range setting.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe range setting of the controller cannot be set.
        -
        -
        - -
        -
        - -

        ◆ adjustRangeControllerValue()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.carControl.CarControl.adjustRangeControllerValue (String endpointId,
        String controllerId,
        double delta 
        ) throws Exception
        -
        -

        Notifies the platform implementation to adjust the range setting of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        endpointIdThe unique identifier of the endpoint.
        controllerIdThe unique identifier of the controller.
        deltaThe delta by which to adjust the range setting.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe range setting of the controller cannot be adjusted.
        -
        -
        - -
        -
        - -

        ◆ getRangeControllerValue()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        double com.amazon.aace.carControl.CarControl.getRangeControllerValue (String endpointId,
        String controllerId 
        ) throws Exception
        -
        -

        Retrieves the range value of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - -
        endpointIdThe unique identifier of the endpoint.
        controllerIdThe unique identifier of the controller.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe range setting of the controller identified by endpointId and controllerId cannot be retrieved.
        -
        -
        -
        Returns
        The range setting of the controller.
        - -
        -
        - -

        ◆ setModeControllerValue()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.carControl.CarControl.setModeControllerValue (String endpointId,
        String controllerId,
        String value 
        ) throws Exception
        -
        -

        Notifies the platform implementation to set the mode of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        endpointIdThe unique identifier of the endpoint.
        controllerIdThe unique identifier of the controller.
        valueThe new mode to set.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe mode of the controller cannot be set.
        -
        -
        - -
        -
        - -

        ◆ adjustModeControllerValue()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.carControl.CarControl.adjustModeControllerValue (String endpointId,
        String controllerId,
        int delta 
        ) throws Exception
        -
        -

        Notifies the platform implementation to adjust the mode of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        endpointIdThe unique identifier of the endpoint.
        controllerIdThe unique identifier of the controller.
        deltaThe delta by which to adjust the mode.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe mode of the controller cannot be adjusted.
        -
        -
        - -
        -
        - -

        ◆ getModeControllerValue()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        String com.amazon.aace.carControl.CarControl.getModeControllerValue (String endpointId,
        String controllerId 
        ) throws Exception
        -
        -

        Retrieves the mode of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - -
        endpointIdThe unique identifier of the endpoint.
        controllerIdThe unique identifier of the controller.
        -
        -
        -
        Exceptions
        - - -
        ExceptionThe mode of the controller identified by endpointId and controllerId cannot be retrieved.
        -
        -
        -
        Returns
        The mode of the controller.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration-members.html deleted file mode 100644 index ff9652923..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration-members.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.carControl.CarControlConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.carControl.CarControlConfiguration, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - - -
        addActionAdjustMode(String[] actions, int delta)com.amazon.aace.carControl.CarControlConfiguration
        addActionAdjustRange(String[] actions, double delta)com.amazon.aace.carControl.CarControlConfiguration
        addActionSetMode(String[] actions, String value)com.amazon.aace.carControl.CarControlConfiguration
        addActionSetRange(String[] actions, double value)com.amazon.aace.carControl.CarControlConfiguration
        addActionTurnOff(String[] actions)com.amazon.aace.carControl.CarControlConfiguration
        addActionTurnOn(String[] actions)com.amazon.aace.carControl.CarControlConfiguration
        addAssetId(String assetId)com.amazon.aace.carControl.CarControlConfiguration
        addCustomAssetsPath(String path)com.amazon.aace.carControl.CarControlConfiguration
        addDefaultAssetsPath(String path)com.amazon.aace.carControl.CarControlConfiguration
        addMembers(String[] endpointIds)com.amazon.aace.carControl.CarControlConfiguration
        addModeController(String instanceId, boolean retrievable, boolean ordered)com.amazon.aace.carControl.CarControlConfiguration
        addPowerController(boolean retrievable)com.amazon.aace.carControl.CarControlConfiguration
        addPreset(double value)com.amazon.aace.carControl.CarControlConfiguration
        addRangeController(String instanceId, boolean retrievable, double minimum, double maximum, double precision, String unit)com.amazon.aace.carControl.CarControlConfiguration
        addToggleController(String instanceId, boolean retrievable)com.amazon.aace.carControl.CarControlConfiguration
        addValue(String value)com.amazon.aace.carControl.CarControlConfiguration
        create()com.amazon.aace.carControl.CarControlConfigurationstatic
        createEndpoint(String endpointId)com.amazon.aace.carControl.CarControlConfiguration
        createZone(String zoneId)com.amazon.aace.carControl.CarControlConfiguration
        setDefaultZone(String zoneId)com.amazon.aace.carControl.CarControlConfiguration
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html deleted file mode 100644 index 96cc931aa..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html +++ /dev/null @@ -1,803 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.carControl.CarControlConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.carControl.CarControlConfiguration Class Reference
        -
        -
        - - - - -

        -Classes

        class  Action
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        final CarControlConfiguration createEndpoint (String endpointId)
         
        final CarControlConfiguration addAssetId (String assetId)
         
        final CarControlConfiguration addPowerController (boolean retrievable)
         
        final CarControlConfiguration addToggleController (String instanceId, boolean retrievable)
         
        final CarControlConfiguration addActionTurnOn (String[] actions)
         
        final CarControlConfiguration addActionTurnOff (String[] actions)
         
        final CarControlConfiguration addRangeController (String instanceId, boolean retrievable, double minimum, double maximum, double precision, String unit)
         
        final CarControlConfiguration addPreset (double value)
         
        final CarControlConfiguration addActionSetRange (String[] actions, double value)
         
        final CarControlConfiguration addActionAdjustRange (String[] actions, double delta)
         
        final CarControlConfiguration addModeController (String instanceId, boolean retrievable, boolean ordered)
         
        final CarControlConfiguration addValue (String value)
         
        final CarControlConfiguration addActionSetMode (String[] actions, String value)
         
        final CarControlConfiguration addActionAdjustMode (String[] actions, int delta)
         
        final CarControlConfiguration createZone (String zoneId)
         
        final CarControlConfiguration addMembers (String[] endpointIds)
         
        final CarControlConfiguration setDefaultZone (String zoneId)
         
        final CarControlConfiguration addDefaultAssetsPath (String path)
         
        final CarControlConfiguration addCustomAssetsPath (String path)
         
        - - - -

        -Static Public Member Functions

        static CarControlConfiguration create ()
         
        -

        Detailed Description

        -

        The CarControlConfiguration class programmatically generates the "aace.carControl" com.amazon.aace.core.config.EngineConfiguration. "aace.carControl" configuration specifies additional endpoints that are connected and controllable through the root endpoint that maintains the connection to the Alexa service. Each connected endpoint represents a controllable component of the vehicle and should be configured with any of the supported capabilities (i.e. PowerController and primitives ModeController, ToggleController, RangeController ) to model how the endpoint can be controlled with voice.

        -

        Using the methods on an instance of this class produces configuration data in the format of the following example:

        -
        {
        "aace.carControl": {
        "endpoints": [
        {
        "endpointId": "default.ac",
        "endpointResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.DeviceName.AirConditioner"
        }
        }
        ]
        },
        "capabilities": [
        {
        "type": "AlexaInterface",
        "interface": "Alexa.PowerController",
        "version": "3",
        "properties": {
        "supported": [
        {
        "name": "powerState"
        }
        ],
        "proactivelyReported": false,
        "retrievable": false
        }
        },
        {
        "type": "AlexaInterface",
        "interface": "Alexa.ModeController",
        "version": "3",
        "instance": "intensity",
        "capabilityResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Setting.Intensity"
        }
        }
        ]
        },
        "properties": {
        "supported": [
        {
        "name": "mode"
        }
        ],
        "proactivelyReported": false,
        "retrievable": false
        },
        "configuration": {
        "ordered": true,
        "supportedModes": [
        {
        "value": "LOW",
        "modeResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.Low"
        }
        },
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.Minimum"
        }
        }
        ]
        }
        },
        {
        "value": "MEDIUM",
        "modeResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.Medium"
        }
        }
        ]
        }
        },
        {
        "value": "HIGH",
        "modeResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.High"
        }
        },
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.Maximum"
        }
        }
        ]
        }
        }
        ]
        },
        "semantics" : {
        "actionMappings": [
        {
        "@type": "ActionsToDirective",
        "actions": ["Alexa.Actions.Raise"],
        "directive": {
        "name": "AdjustMode",
        "payload": {"modeDelta": 1}
        }
        },
        {
        "@type": "ActionsToDirective",
        "actions": ["Alexa.Actions.Lower"],
        "directive": {
        "name": "AdjustMode",
        "payload": {"modeDelta": -1}
        }
        }
        ]
        }
        }
        ]
        }
        ],
        "zones": [
        {
        "zoneId": "zone.default",
        "zoneResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Location.All"
        }
        }
        ]
        },
        "members": [
        {
        "endpointId": "default.ac"
        }
        ]
        }
        ],
        "defaultZoneId" : "zone.default",
        "assets" : {
        "customAssetsPath" : "/opt/AAC/assets-3P.json"
        }
        }
        }

        note This class acts as a configuration builder, so the method calls must be ordered to produce the intended configuration.

        -

        Member Function Documentation

        - -

        ◆ create()

        - -
        -
        - - - - - -
        - - - - - - - -
        static CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.create ()
        -
        -static
        -
        -

        Create a CarControlConfiguration instance.

        - -
        -
        - -

        ◆ createEndpoint()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.createEndpoint (String endpointId)
        -
        -

        Begin an endpoint definition using the specified endpoint ID. This creates a single entry in the "endpoints" array of 'aace.carControl'.

        -
        Note
        Do not use the following format for the endpointId: <clientId>::<productId>::<serialNumber>::[-<extEndpoint>]. The Engine internally prepends the 3-part device prefix to your specified endpointId before sending the configuration to the cloud in an AddOrUpdateReport event. Configuring the full ID directly results in duplication and excess characters.
        -
        Parameters
        - - -
        endpointIdThe unique identifier for the endpoint.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addAssetId()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addAssetId (String assetId)
        -
        -

        Add an asset ID to the enclosing element. This can be called to add an asset ID to the friendly names list for the following elements:

          -
        • The 'endpointResources' of an endpoint definition
        • -
        • The 'capabilityResources' of a ToggleController, RangeController, or ModeController definition
        • -
        • The 'presetResources' of a RangeController preset definition
        • -
        • The 'modeResources' of a ModeController mode definition
        • -
        -
        Note
        Specify only valid asset IDs. See CarControlAssets.java for a full list of the asset IDs supported by default.
        -
        Parameters
        - - -
        assetIdThe identifier of the asset.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addPowerController()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addPowerController (boolean retrievable)
        -
        -

        Add a PowerController capability to the enclosing endpoint. Only one instance is allowed per endpoint.

        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/alexa-powercontroller.html.
        -
        Parameters
        - - -
        retrievableWhether the state of this instance may be retrieved by the Alexa service. Only false is supported.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addToggleController()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addToggleController (String instanceId,
        boolean retrievable 
        )
        -
        -

        Add a ToggleController capability to the enclosing endpoint. Multiple instances are allowed per endpoint. Call addAsset() to add friendly names to the 'capabilityResources' of this instance.

        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/alexa-togglecontroller.html.
        -
        Parameters
        - - - -
        instanceIdThe identifier of this ToggleController instance. Must be unique with respect to the enclosing endpoint.
        retrievableWhether the state of this instance may be retrieved by the Alexa service. Only false is supported.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addActionTurnOn()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addActionTurnOn (String [] actions)
        -
        -

        Maps the specified action IDs to the TurnOn directive for the enclosing ToggleController. This adds a 'semantics.actionMappings' entry to its definition. com.amazon.aace.carControl.CarControl.turnToggleControllerOn() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in com.amazon.aace.carControl.CarControlConfiguration.Action are supported.
        -
        Parameters
        - - -
        actionsThe action IDs to map to the TurnOn directive.
        -
        -
        - -
        -
        - -

        ◆ addActionTurnOff()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addActionTurnOff (String [] actions)
        -
        -

        Maps the specified action IDs to the TurnOff directive for the enclosing ToggleController. This adds a 'semantics.actionMappings' entry to its definition. com.amazon.aace.carControl.CarControl.turnToggleControllerOn() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in com.amazon.aace.carControl.CarControlConfiguration.Action are supported.
        -
        Parameters
        - - -
        actionsThe action IDs to map to the TurnOff directive.
        -
        -
        - -
        -
        - -

        ◆ addRangeController()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addRangeController (String instanceId,
        boolean retrievable,
        double minimum,
        double maximum,
        double precision,
        String unit 
        )
        -
        -

        Add a RangeController capability to the enclosing endpoint. Multiple instances are allowed per endpoint. Call addAsset() to add friendly names to the 'capabilityResources' of this instance.

        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/alexa-rangecontroller.html
        -
        Parameters
        - - - - - - - -
        instanceIdThe identifier of this RangeController instance. Must be unique with respect to the enclosing endpoint.
        retrievableWhether the state of this instance may be retrieved by the Alexa service. Only false is supported.
        minimumThe minimum value of the range supported by this instance.
        minimumThe maximum value of the range supported by this instance.
        precisionThe amount by which the set value changes when iterating through the range.
        unitThe unit of the measure.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addPreset()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addPreset (double value)
        -
        -

        Add a 'preset' to the enclosing RangeController instance. A preset describes a value that can be invoked by name. Call addAsset() to add friendly names to 'presetResources' of this preset.

        -
        Parameters
        - - -
        valueThe value within the range that has an associated named preset.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addActionSetRange()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addActionSetRange (String [] actions,
        double value 
        )
        -
        -

        Maps the specified action IDs to the SetRangeValue directive for the enclosing RangeController. This adds a 'semantics.actionMappings' entry to its definition. com.amazon.aace.carControl.CarControl.setRangeControllerValue() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in com.amazon.aace.carControl.CarControlConfiguration.Action are supported.
        -
        Parameters
        - - - -
        actionsThe action IDs to map to the SetRangeValue directive.
        valueThe value argument of setRangeControllerValue(). The value must be within the configured range of this RangeController instance.
        -
        -
        - -
        -
        - -

        ◆ addActionAdjustRange()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addActionAdjustRange (String [] actions,
        double delta 
        )
        -
        -

        Maps the specified action IDs to AdjustRangeValue directive for the enclosing RangeController. This adds a 'semantics.actionMappings' entry to its definition. com.amazon.aace.carControl.CarControl/adjustRangeControllerValue() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in com.amazon.aace.carControl.CarControlConfiguration.Action are supported.
        -
        Parameters
        - - - -
        actionsThe action IDs to map to the AdjustRangeValue directive.
        deltaThe delta argument of adjustRangeControllerValue(). The absolute value must be <= (max - min) configured for this RangeController instance.
        -
        -
        - -
        -
        - -

        ◆ addModeController()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addModeController (String instanceId,
        boolean retrievable,
        boolean ordered 
        )
        -
        -

        Add a ModeController capability to the enclosing endpoint. Multiple instances are allowed per endpoint. Call addAsset() to add friendly names to the 'capabilityResources' of this instance.

        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/alexa-modecontroller.html
        -
        Parameters
        - - - - -
        instanceIdThe identifier of this ModeController instance. Must be unique with respect to the enclosing endpoint.
        retrievableWhether the state of this instance may be retrieved by the Alexa service. Only false is supported.
        orderedWhether the modes are ordered, enabling iteration through them using the AdjustMode directive.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addValue()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addValue (String value)
        -
        -

        Add a supported mode 'value' to the enclosing ModeController instance. If ordered is true, the order in which modes are created with calls to this method determines the ordering for iteration by voice. Call addAsset() to add friendly names to 'modeResources' of this mode.

        -
        Parameters
        - - -
        valueThe identifier of the mode.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addActionSetMode()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addActionSetMode (String [] actions,
        String value 
        )
        -
        -

        Maps the specified action IDs to the SetMode directive for the enclosing ModeController. This adds a 'semantics.actionMappings' entry to its definition. com.amazon.aace.carControl.CarControl.setModeControllerValue() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in com.amazon.aace.carControl.CarControlConfiguration.Action are supported.
        -
        Parameters
        - - - -
        actionsThe action IDs to map to the SetMode directive.
        valueThe value argument of setModeControllerValue() specifying the mode to set. The value must be one configured for this ModeController instance.
        -
        -
        - -
        -
        - -

        ◆ addActionAdjustMode()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addActionAdjustMode (String [] actions,
        int delta 
        )
        -
        -

        Maps the specified action IDs to the AdjustMode directive for the enclosing ModeController. This adds a 'semantics.actionMappings' entry to its definition. com.amazon.aace.carControl.CarControl.adjustModeControllerValue() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        This may only be used if ordered is true for this ModeController instance.
        -
        -Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in com.amazon.aace.carControl.CarControlConfiguration.Action are supported.
        -
        Parameters
        - - - -
        actionsThe action IDs to map to the AdjustMode directive.
        deltaThe delta argument of adjustModeControllerValue() specifying the number of modes to advance from the current mode setting.
        -
        -
        - -
        -
        - -

        ◆ createZone()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.createZone (String zoneId)
        -
        -

        Begin a zone definition using the specified zone ID. This creates a single entry in the "zones" array of 'aace.carControl'. Call addMembers() to add endpoint IDs as members of this zone.

        -
        Parameters
        - - -
        zoneIdThe unique identifier for the zone.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addMembers()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addMembers (String [] endpointIds)
        -
        -

        Add the specified endpoint IDs to the definition of the enclosing zone.

        -
        Note
        An endpoint ID added to this zone instance may belong to other zones as well.
        -
        Parameters
        - - -
        endpointIdsThe IDs of the endpoints belonging to this zone. Endpoint IDs used must correspond to endpoints created with createEndpoint().
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ setDefaultZone()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.setDefaultZone (String zoneId)
        -
        -

        Set the default zone to the specified zone ID. This allows the endpoints in the specified default zone to take precedence over endpoints not in the default zone when the user does not specify any zone in the utterance.

        -
        Note
        There can only be one default zone. Multiple calls to this method will override the previously set default.
        -
        Parameters
        - - -
        zoneIdThe ID of the default zone.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addDefaultAssetsPath()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addDefaultAssetsPath (String path)
        -
        -
        Deprecated:
        -

        Specify the path to a file that defines the default assets. This creates an "assets.defaultAssetsPath" entry in 'aace.carControl'.

        -
        Note
        Using this method is not necessary or recommended. The default assets are already defined internally. including all supported locales and use the asset IDs present in CarControlAssets.h. This method can override the internal asset definitions in online-only use cases (without the LVC extension).
        -
        Parameters
        - - -
        pathThe path to the file defining the default assets.
        -
        -
        - -
        -
        - -

        ◆ addCustomAssetsPath()

        - -
        -
        - - - - - - - - -
        final CarControlConfiguration com.amazon.aace.carControl.CarControlConfiguration.addCustomAssetsPath (String path)
        -
        -

        Specify the path to a file that defines additional assets. This creates an "assets.customAssetsPath" entry in 'aace.carControl'. Specify a path to additional assets if you have endpoints that cannot be modeled using the default asset IDs present in CarControlAssets.java.

        -
        Parameters
        - - -
        pathThe path to the file defining additional assets.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action-members.html deleted file mode 100644 index fddf78c49..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.carControl.CarControlConfiguration.Action Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html deleted file mode 100644 index 0e4e7bce5..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.carControl.CarControlConfiguration.Action Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.carControl.CarControlConfiguration.Action Class Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Static Public Attributes

        -static final String CLOSE = "Alexa.Actions.Close"
         "Close" action.
         
        -static final String LOWER = "Alexa.Actions.Lower"
         "Lower" action.
         
        -static final String OPEN = "Alexa.Actions.Open"
         "Open" action.
         
        -static final String RAISE = "Alexa.Actions.Raise"
         "Raise" action.
         
        -

        Detailed Description

        -

        Supported action IDs used to create action mapping 'semantic annotations' for capability instances on endpoints. Action mapping semantic annotations enable mapping specific additional utterances to the directives of individual capability instances.

        -
        Note
        These are the only supported action IDs.
        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/capability-primitives.html#semantic-annotation for additional reference, but note that state mappings are not supported.
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l-members.html deleted file mode 100644 index 01cb93685..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l-members.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.cbl.CBL Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.cbl.CBL, including all inherited members.

        - - - - - - - - - -
        cancel()com.amazon.aace.cbl.CBLprotected
        cblStateChanged(CBLState state, CBLStateChangedReason reason, String url, String code)com.amazon.aace.cbl.CBL
        clearRefreshToken()com.amazon.aace.cbl.CBL
        getRefreshToken()com.amazon.aace.cbl.CBL
        reset()com.amazon.aace.cbl.CBLprotected
        setRefreshToken(String refreshToken)com.amazon.aace.cbl.CBL
        setUserProfile(String name, String email)com.amazon.aace.cbl.CBL
        start()com.amazon.aace.cbl.CBLprotected
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html deleted file mode 100644 index c49251a13..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html +++ /dev/null @@ -1,333 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.cbl.CBL Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.cbl.CBL Class Referenceabstract
        -
        -
        - - - - - - -

        -Classes

        enum  CBLState
         
        enum  CBLStateChangedReason
         
        - - - - - - - - - - - -

        -Public Member Functions

        void cblStateChanged (CBLState state, CBLStateChangedReason reason, String url, String code)
         
        void clearRefreshToken ()
         
        void setRefreshToken (String refreshToken)
         
        String getRefreshToken ()
         
        void setUserProfile (String name, String email)
         
        - - - - - - - -

        -Protected Member Functions

        final void start ()
         
        final void cancel ()
         
        final void reset ()
         
        -

        Detailed Description

        -

        CBL should be extended to perform CBL authentication.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ cblStateChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.cbl.CBL.cblStateChanged (CBLState state,
        CBLStateChangedReason reason,
        String url,
        String code 
        )
        -
        -

        Notifies the platform implementation of an authorization flow state change

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ clearRefreshToken()

        - -
        -
        - - - - - - - -
        void com.amazon.aace.cbl.CBL.clearRefreshToken ()
        -
        -

        Notifies the platform implementation to clear the refresh token

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ setRefreshToken()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.cbl.CBL.setRefreshToken (String refreshToken)
        -
        -

        Notifies the platform implementation to set the refresh token

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ getRefreshToken()

        - -
        -
        - - - - - - - -
        String com.amazon.aace.cbl.CBL.getRefreshToken ()
        -
        -

        Returns the refresh token stored by the platform implementation, otherwise return an empty string

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ setUserProfile()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.cbl.CBL.setUserProfile (String name,
        String email 
        )
        -
        -

        Notifies the platform implementation to set the user profile, this is requested one time after authorization requestUserProfile must be enabled in configuration

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ start()

        - -
        -
        - - - - - -
        - - - - - - - -
        final void com.amazon.aace.cbl.CBL.start ()
        -
        -protected
        -
        -

        Notifies the Engine to begin the authorization process

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ cancel()

        - -
        -
        - - - - - -
        - - - - - - - -
        final void com.amazon.aace.cbl.CBL.cancel ()
        -
        -protected
        -
        -

        Notifies the Engine to cancel the authorization process

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ reset()

        - -
        -
        - - - - - -
        - - - - - - - -
        final void com.amazon.aace.cbl.CBL.reset ()
        -
        -protected
        -
        -

        Notifies the Engine to reset the authorization state

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html deleted file mode 100644 index fab0c73b1..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.cbl.config.CBLConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.cbl.config.CBLConfiguration, including all inherited members.

        - - - - -
        createCBLConfig(final int seconds)com.amazon.aace.cbl.config.CBLConfigurationstatic
        createCBLConfig(final int seconds, final boolean enableUserProfile)com.amazon.aace.cbl.config.CBLConfigurationstatic
        createCBLUserProfileConfig(final boolean enableUserProfile)com.amazon.aace.cbl.config.CBLConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html deleted file mode 100644 index f47f31e54..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.cbl.config.CBLConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.cbl.config.CBLConfiguration Class Reference
        -
        -
        - - - - - - - - -

        -Static Public Member Functions

        static EngineConfiguration createCBLConfig (final int seconds)
         
        static EngineConfiguration createCBLConfig (final int seconds, final boolean enableUserProfile)
         
        static EngineConfiguration createCBLUserProfileConfig (final boolean enableUserProfile)
         
        -

        Detailed Description

        -

        A factory interface for creating CBL configuration objects

        -

        Member Function Documentation

        - -

        ◆ createCBLConfig() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.cbl.config.CBLConfiguration.createCBLConfig (final int seconds)
        -
        -static
        -
        -

        Factory method used to programmatically generate cbl configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.cbl": {
        "requestTimeout" : <REQUEST_TIMEOUT_IN_SECONDS>,
        "enableUserProfile" : false
        }
        }
        Parameters
        - - -
        requestTimeoutThe timeout used for requesting code pair The default configuration of 60 seconds will be overridden with this value when configured.
        -
        -
        - -
        -
        - -

        ◆ createCBLConfig() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.cbl.config.CBLConfiguration.createCBLConfig (final int seconds,
        final boolean enableUserProfile 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate cbl configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.cbl": {
        "requestTimeout" : <REQUEST_TIMEOUT_IN_SECONDS>,
        "enableUserProfile" : <true/false>
        }
        }
        Parameters
        - - - -
        requestTimeoutThe timeout used for requesting code pair. The default value is 60s
        enableUserProfileEnable functionality to request user profile. The default value is false.
        -
        -
        - -
        -
        - -

        ◆ createCBLUserProfileConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.cbl.config.CBLConfiguration.createCBLUserProfileConfig (final boolean enableUserProfile)
        -
        -static
        -
        -
        Deprecated:
        This method is deprecated, use createCBLConfig instead. Factory method used to programmatically generate cbl configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:
        -
        {
        "aace.cbl": {
        "enableUserProfile": <true/false>
        }
        }
        Parameters
        - - -
        [in]enableUserProfileEnable functionality to request user profile
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity-members.html deleted file mode 100644 index 51566fbb6..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.connectivity.AlexaConnectivity Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html deleted file mode 100644 index e36534d93..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.connectivity.AlexaConnectivity Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.connectivity.AlexaConnectivity Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  StatusCode
         
        - - - - - - - - - - - - - -

        -Public Member Functions

        String getConnectivityState ()
         
        String getIdentifier ()
         
        final boolean connectivityStateChange ()
         
        final void sendConnectivityEvent (String event)
         
        final void sendConnectivityEvent (String event, String token)
         
        void connectivityEventResponse (String token, StatusCode statusCode)
         
        -

        Detailed Description

        -

        AlexaConnectivity should be extended to send network connectivity status and data plan status to Alexa. The information sent determines what Alexa features are available to the device.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ getConnectivityState()

        - -
        -
        - - - - - - - -
        String com.amazon.aace.connectivity.AlexaConnectivity.getConnectivityState ()
        -
        -

        Retrieve the connectivity state from the platform implementation.

        -

        ConnectivityState

        - - - - - - - - - -
        Name Description Type Status
        managedProvider Provides information about connectivity of the device. Object Required
        dataPlan Provides the active data plan type and end date. Object Optional
        dataPlansAvailable Indicates the data plans that can be activated on a device. Array Optional
        -

        termsStatus | Indicates whether the customer has accepted the terms and conditions of the OEM and network provider. | String | Optional termsVersion | Indicates the version of the terms and conditions put forward to the user. Max 250 characters| String | Optional

        -

        managedProvider

        - - - - - -
        Name Description Type Status
        type Type of the managed provider, MANAGED or NOT_MANAGED (see below). String Required
        -

        id | Specifies the name of the provider that manages connectivity. The only accepted value is AMAZON. | String | Required*

        -

        managedProvider.type

        -

        Set to MANAGED if the device's internet connectivity is managed by a provider. The only possible provider that manages connectivity is Amazon. When managedProvider.type is MANAGED, the Alexa experience is affected by the attribute values of the InternetDataPlan capability. Set to NOT_MANAGED if the device's internet connectivity is not managed by a provider (for example, if the customer accesses the internet via a WiFi network or mobile hotspot). In this case, the customer can access all Alexa features, regardless of the attribute values of the InternetDataPlan capability.

        -

        managedProvider.id

        -

        * Required only when managedProvider.type is MANAGED.

        -

        dataPlan

        - - - - - - - -
        Name Description Type Status
        type Type of the data plan (see below). String Required
        endDate RFC 3339 format date on which the current data plan ends. String Optional
        -

        dataPlan.type

        -

        Possible values are PAID, TRIAL, and AMAZON_SPONSORED. A customer with either of these data plan has unrestricted access to all Alexa features. PAID indicates that the device has an active data plan paid for by the customer.TRIAL indicates that the device has an active data plan which has been provided to the customer as a promotional event. AMAZON_SPONSORED means that the customer has not paid for a data plan or signed up for a free trial. The customer can connect to the internet via a plan sponsored by Amazon and can access a limited number of Alexa features.

        -

        For example:

        {
        "managedProvider": {
        "type": "MANAGED",
        "id": "AMAZON"
        },
        "dataPlan": {
        "type": "AMAZON_SPONSORED",
        "endDate": "2021-12-31T23:59:59.999Z"
        },
        "dataPlansAvailable": [
        "TRIAL", "PAID", "AMAZON_SPONSORED"
        ],
        "termsStatus": "ACCEPTED",
        "termsVersion": "1"
        }
        Note
        AlexaConnectivity platform interface registration requires a valid connectivity state.
        -
        -You may return an empty string to indicate that connectivity state is not available.
        -
        Returns
        A String representing the connectivity state in structured JSON format.
        - -
        -
        - -

        ◆ getIdentifier()

        - -
        -
        - - - - - - - -
        String com.amazon.aace.connectivity.AlexaConnectivity.getIdentifier ()
        -
        -

        Retrieve the network identifier from the platform implementation.

        -

        The network identifier is agnostic of the data plan and is assigned when initially integrated into the vehicle. It links the device with the network provider and enables the network provider to identify and provide device connectivity. The network identifier is optional, return an empty string to automatically use VEHICLE_IDENTIFIER from Engine configuration instead.

        -
        Returns
        A String representing the network identifier, or empty for default behavior.
        -
        See also
        VehicleConfiguration
        - -
        -
        - -

        ◆ connectivityStateChange()

        - -
        -
        - - - - - - - -
        final boolean com.amazon.aace.connectivity.AlexaConnectivity.connectivityStateChange ()
        -
        -

        Notifies the Engine of a change in the connectivity state. The Engine calls getConnectivityState to retrieve the the connectivity state and communicate any changes to Alexa.

        -
        Returns
        true if connectivity state was processed successfully, false otherwise.
        - -
        -
        - -

        ◆ sendConnectivityEvent() [1/2]

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.connectivity.AlexaConnectivity.sendConnectivityEvent (String event)
        -
        -

        Notifies the Engine of an event in connectivity.

        -
        Parameters
        - - -
        [in]eventThe stringified JSON containing the event.
        {
        "type": "{{STRING}}"
        }
          -
        • type (required) : Indicates the connectivity event type.
        • -
        -Activating Trial
        -
        -
        -

        Set event type to "ACTIVATE_TRIAL" for Alexa to begin the trial data plan activation (if available) via voice conversation with the customer. Alexa, upon receiving this event, may perform some validations and eligibility checks before starting the voice conversation.

        -
        Note
        Alexa requires the customer to have accepted the OEM and network provider's terms and conditions before starting the voice conversation for activating the trial data plan.
        -
        -If the platform implementation cannot determine the data plan type, then send this event. Alexa would first check the trial eligibility. If customer is not eligible, Alexa begins the paid plan voice conversation.
        -

        Example:

        {
        "type": "ACTIVATE_TRIAL"
        }

        Starting Paid Plan

        -

        Set event type to "ACTIVATE_PAID_PLAN" for Alexa to begin the paid data plan activation via voice conversation with the customer. Alexa, upon receiving this event, may perform some validations and eligibility checks before starting the voice conversation.

        -
        Note
        Alexa requires the customer to have accepted the OEM and network provider's terms and conditions before starting the voice conversation for activating the paid data plan.
        -

        Example:

        {
        "type": "ACTIVATE_PAID_PLAN"
        }
        -
        -
        - -

        ◆ sendConnectivityEvent() [2/2]

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.connectivity.AlexaConnectivity.sendConnectivityEvent (String event,
        String token 
        )
        -
        -

        Notifies the Engine of an event in connectivity.

        -
        Parameters
        - - -
        [in]eventThe stringified JSON containing the event.
        {
        "type": "{{STRING}}"
        }
          -
        • type (required) : Indicates the connectivity event type.
        • -
        -Activating Trial
        -
        -
        -

        Set event type to "ACTIVATE_TRIAL" for Alexa to begin the trial data plan activation (if available) via voice conversation with the customer. Alexa, upon receiving this event, may perform some validations and eligibility checks before starting the voice conversation.

        -
        Note
        Alexa requires the customer to have accepted the OEM and network provider's terms and conditions before starting the voice conversation for activating the trial data plan.
        -
        -If the platform implementation cannot determine the data plan type, then send this event. Alexa would first check the trial eligibility. If customer is not eligible, Alexa begins the paid plan voice conversation.
        -

        Example:

        {
        "type": "ACTIVATE_TRIAL"
        }

        Starting Paid Plan

        -

        Set event type to "ACTIVATE_PAID_PLAN" for Alexa to begin the paid data plan activation via voice conversation with the customer. Alexa, upon receiving this event, may perform some validations and eligibility checks before starting the voice conversation.

        -
        Note
        Alexa requires the customer to have accepted the OEM and network provider's terms and conditions before starting the voice conversation for activating the paid data plan.
        -

        Example:

        {
        "type": "ACTIVATE_PAID_PLAN"
        }
        Parameters
        - - -
        [in]tokenAn identifier to correlate connectivityEventResponse to sendConnectivityEvent. Set this to a unique non-empty value for engine to call connectivityEventResponse. If it is empty, engine will not call connectivityEventResponse.
        -
        -
        - -
        -
        - -

        ◆ connectivityEventResponse()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.connectivity.AlexaConnectivity.connectivityEventResponse (String token,
        StatusCode statusCode 
        )
        -
        -

        Notifies the platform implementation of the delivery status of sendConnectivityEvent() sendConnectivityEvent()} call. This is only called if a non-empty token was provided in the sendConnectivityEvent() sendConnectivityEvent()}.

        -
        Parameters
        - - - -
        [in]tokenThe identifier that was provided in sendConnectivityEvent call.
        [in]statusCodeRepresents the delivery status of event sent using sendConnectivityEvent.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_engine-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_engine-members.html deleted file mode 100644 index a08805d01..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_engine-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.core.Engine Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.core.Engine, including all inherited members.

        - - - - - - - -
        configure(EngineConfiguration[] configurationList)com.amazon.aace.core.Engine
        create(Context context)com.amazon.aace.core.Enginestatic
        getMessageBroker()com.amazon.aace.core.Engine
        registerPlatformInterface(PlatformInterface platformInterface)com.amazon.aace.core.Engine
        start()com.amazon.aace.core.Engine
        stop()com.amazon.aace.core.Engine
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html deleted file mode 100644 index 4e524d02e..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.core.Engine Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.core.Engine Class Reference
        -
        -
        - - - - - - - - - - - - -

        -Public Member Functions

        final boolean configure (EngineConfiguration[] configurationList)
         
        final boolean start ()
         
        final boolean stop ()
         
        final boolean registerPlatformInterface (PlatformInterface platformInterface)
         
        final MessageBroker getMessageBroker ()
         
        - - - -

        -Static Public Member Functions

        static Engine create (Context context)
         
        -

        Detailed Description

        -

        The Engine must be instantiated by the platform implementation. Along with the platform interfaces, it is responsible for managing the interactions between the platform and AVS. The platform implementation should not extend Engine; it is extended in the SDK.

        -

        Member Function Documentation

        - -

        ◆ create()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static Engine com.amazon.aace.core.Engine.create (Context context)
        -
        -static
        -
        -

        Creates a new instance of an Engine object.

        - -
        -
        - -

        ◆ configure()

        - -
        -
        - - - - - - - - -
        final boolean com.amazon.aace.core.Engine.configure (EngineConfiguration [] configurationList)
        -
        -

        Sets the Engine configuration to a set of configuration objects

        -
        Parameters
        - - -
        configurationListA collection of com.amazon.aace.core.EngineConfiguration objects as an EngineConfiguration[]
        -
        -
        -
        Returns
        true if the Engine configuration was successful, else false
        - -
        -
        - -

        ◆ start()

        - -
        -
        - - - - - - - -
        final boolean com.amazon.aace.core.Engine.start ()
        -
        -

        Starts the Engine and attempts to establish a connection to AVS

        -
        Returns
        true if the Engine was started, else false
        -
        See also
        stop()
        - -
        -
        - -

        ◆ stop()

        - -
        -
        - - - - - - - -
        final boolean com.amazon.aace.core.Engine.stop ()
        -
        -

        Stops the Engine and shuts down the connection to AVS

        -
        Returns
        true if the Engine was stopped, else false
        -
        See also
        start()
        - -
        -
        - -

        ◆ registerPlatformInterface()

        - -
        -
        - - - - - - - - -
        final boolean com.amazon.aace.core.Engine.registerPlatformInterface (PlatformInterface platformInterface)
        -
        -

        Registers a PlatformInterface instance with the Engine The platform implementation must register each interface required by the application.

        -
        Parameters
        - - -
        platformInterfaceThe PlatformInterface instance to register
        -
        -
        -
        Returns
        true if the PlatformInterface instance was registered, else false
        -
        See also
        com.amazon.aace.core.PlatformInterface
        - -
        -
        - -

        ◆ getMessageBroker()

        - -
        -
        - - - - - - - -
        final MessageBroker com.amazon.aace.core.Engine.getMessageBroker ()
        -
        -

        Returns the MessageBroker instance for the Engine

        -
        Returns
        MessageBroker
        -
        See also
        com.amazon.aace.core.MessageBroker
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface-members.html deleted file mode 100644 index a0442a29e..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.core.PlatformInterface Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.core.PlatformInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface.html deleted file mode 100644 index 7c6bce3a9..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.core.PlatformInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.core.PlatformInterface Class Referenceabstract
        -
        -
        -

        Detailed Description

        -

        PlatformInterface is the base class for all platform interfaces. It can be extended to create custom platform interfaces.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration-members.html deleted file mode 100644 index 5ec074a61..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.core.config.EngineConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.core.config.EngineConfiguration, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration.html deleted file mode 100644 index 01df14f62..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.core.config.EngineConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.core.config.EngineConfiguration Class Referenceabstract
        -
        -
        -

        Detailed Description

        -

        PlatformInterface is the base class for all platform interfaces. It can be extended to create custom platform interfaces.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain-members.html deleted file mode 100644 index f5600ae3f..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.customDomain.CustomDomain Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.customDomain.CustomDomain, including all inherited members.

        - - - - - - -
        cancelDirective(String directiveNamespace, String name, String correlationToken, String messageId)com.amazon.aace.customDomain.CustomDomain
        getContext(String contextNamespace)com.amazon.aace.customDomain.CustomDomain
        handleDirective(String directiveNamespace, String name, String payload, String correlationToken, String messageId)com.amazon.aace.customDomain.CustomDomain
        reportDirectiveHandlingResult(String directiveNamespace, String messageId, ResultType result)com.amazon.aace.customDomain.CustomDomain
        sendEvent(String eventNamespace, String name, String payload, boolean requiresContext, String correlationToken, String customContext)com.amazon.aace.customDomain.CustomDomain
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html deleted file mode 100644 index d952a2a08..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html +++ /dev/null @@ -1,393 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.customDomain.CustomDomain Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.customDomain.CustomDomain Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  ResultType
         
        - - - - - - - - - - - -

        -Public Member Functions

        abstract void handleDirective (String directiveNamespace, String name, String payload, String correlationToken, String messageId)
         
        abstract void cancelDirective (String directiveNamespace, String name, String correlationToken, String messageId)
         
        abstract String getContext (String contextNamespace)
         
        final void reportDirectiveHandlingResult (String directiveNamespace, String messageId, ResultType result)
         
        final void sendEvent (String eventNamespace, String name, String payload, boolean requiresContext, String correlationToken, String customContext)
         
        -

        Detailed Description

        -

        CustomDomain should be extended when custom interface is defined. The implementation of the platform interface should handle receiving custom directives, sending custom events, contexts, processing cancel directive requests from AVS, and report the handling result back to Auto SDK engine. The implementation of the abstract APIs in this class MUST be thread-safe as they will be called by multiple threads when there are multiple custom interfaces defined and configured.

        -

        Member Function Documentation

        - -

        ◆ handleDirective()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        abstract void com.amazon.aace.customDomain.CustomDomain.handleDirective (String directiveNamespace,
        String name,
        String payload,
        String correlationToken,
        String messageId 
        )
        -
        -abstract
        -
        -

        Handle the action specified by the directive identified by directiveNamespace, name, and payload. If handling this directive succeeds, this CustomDomain should call reportDirectiveHandlingResult() with matching directiveNamespace and messageId and com.amazon.aace.customDomain.CustomDomain.ResultType.SUCCESS. Otherwise, if handling this directive fails such that subsequent directives with the same dialog request ID should be cancelled, this CustomDomain should instead call reportDirectiveHandlingResult() with a ResultType describing the failure.

        -
        Note
        The implementation of this function MUST be thread-safe.
        -
        -The implementation of this function MUST return quickly. Failure to do so blocks the processing of subsequent directives
        -
        Parameters
        - - - - - - -
        [in]directiveNamespaceThe namespace of the directive. It must be prefixed with "Custom" and followed by the encrypted vendorId from the manufacturer.
        [in]nameThe name of the directive
        [in]payloadAn opaque JSON object sent to the device
        [in]correlationTokenAn opaque token that must be included in any events responding to this directive
        [in]messageIdThe unique ID of the directive to be handled. Used to report directive handling result.
        -
        -
        - -
        -
        - -

        ◆ cancelDirective()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        abstract void com.amazon.aace.customDomain.CustomDomain.cancelDirective (String directiveNamespace,
        String name,
        String correlationToken,
        String messageId 
        )
        -
        -abstract
        -
        -

        Cancel an ongoing handleDirective() operation with matching directiveNamespace, name, correlationToken, and messageId.

        -
        Note
        The implementation of this method MUST be thread-safe.
        -
        -The implementation of this method MUST return quickly. Failure to do so blocks the processing of subsequent directives.
        -
        -Do not call reportDirectiveHandlingResult for a cancelled directive.
        -
        Parameters
        - - - - - -
        [in]directiveNamespaceThe namespace of the cancelled directive.
        [in]nameThe name of the cancelled directive
        [in]correlationTokenThe correlationToken of the cancelled directive
        [in]messageIdThe unique ID of the directive to cancel.
        -
        -
        - -
        -
        - -

        ◆ getContext()

        - -
        -
        - - - - - -
        - - - - - - - - -
        abstract String com.amazon.aace.customDomain.CustomDomain.getContext (String contextNamespace)
        -
        -abstract
        -
        -

        Called to query current custom states under contextNamespace from device.

        -
        Note
        The implementation of this method MUST be thread-safe.
        -
        Parameters
        - - -
        [in]contextNamespaceThe namespace of the queried context
        -
        -
        -
        Returns
        The queried context in string
        {
        "context": [
        {
        "name": "{{String}}",
        "value": {{Object}} | "{{String}}" | {{Long}},
        "timeOfSample": "{{String}}",
        "uncertaintyInMilliseconds": {{Long}}
        },{
        "name": "{{String}}",
        "value": {{Object}} | "{{String}}" | {{Long}},
        "timeOfSample": "{{String}}",
        "uncertaintyInMilliseconds": {{Long}}
        },
        ...
        ]
        }
          -
        • name (required): The name of the context property state.
        • -
        • value (required): The value of the context property state. Accepted format: JSON Object, string, or number..
        • -
        • timeOfSample (optional): The time at which the property value was recorded in ISO-8601 representation. If omitted, the default value is the current time.
        • -
        • uncertaintyInMilliseconds (optional): The number of milliseconds that have elapsed since the property value was last confirmed. If omitted, the default value is 0.
        • -
        -
        - -
        -
        - -

        ◆ reportDirectiveHandlingResult()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.customDomain.CustomDomain.reportDirectiveHandlingResult (String directiveNamespace,
        String messageId,
        ResultType result 
        )
        -
        -

        Notifies the engine about the result of a directive handling. This should be used in response to handleDirective() when the handling is complete.

        -
        Parameters
        - - - - -
        [in]directiveNamespaceThe namespace of the directive.
        [in]messageIdThe messageId that uniquely identifies which directive this report is for.
        [in]resultThe result of the handling.
        -
        -
        - -
        -
        - -

        ◆ sendEvent()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.customDomain.CustomDomain.sendEvent (String eventNamespace,
        String name,
        String payload,
        boolean requiresContext,
        String correlationToken,
        String customContext 
        )
        -
        -

        Notifes the engine to send a custom event.

        -
        Parameters
        - - - - - - - -
        [in]eventNamespaceThe namespace of the event.
        [in]nameThe name of the event.
        [in]payloadAn opaque JSON object sent to the cloud with the event.
        [in]requiresContextA boolean indicating if this event must be sent with context.
        [in]correlationTokenOptional. The token correlating this event to a directive. Empty string if this event is not a response to any directive.
        [in]customContextOptional. The context corresponding to eventNamespace or an empty string if this event does not require context.
        -
        -
        -

        customContext is a String representation of a JSON object in the following format:

        {
        "context": [
        {
        "name": "{{String}}",
        "value": {{Object}} | "{{String}}" | {{Long}},
        "timeOfSample": "{{String}}",
        "uncertaintyInMilliseconds": {{Long}}
        },{
        "name": "{{String}}",
        "value": {{Object}} | "{{String}}" | {{Long}},
        "timeOfSample": "{{String}}",
        "uncertaintyInMilliseconds": {{Long}}
        },
        ...
        ]
        }
          -
        • name (required): The name of the context property state.
        • -
        • value (required): The value of the context property state. Accepted format: JSON Object, string, or number..
        • -
        • timeOfSample (optional): The time at which the property value was recorded in ISO-8601 representation. If omitted, the default value is the current time.
        • -
        • uncertaintyInMilliseconds (optional): The number of milliseconds that have elapsed since the property value was last confirmed. If omitted, the default value is 0.
        • -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage-members.html deleted file mode 100644 index 6429cffd3..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.deviceUsage.DeviceUsage Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.deviceUsage.DeviceUsage, including all inherited members.

        - - -
        reportNetworkDataUsage(String usage)com.amazon.aace.deviceUsage.DeviceUsage
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html deleted file mode 100644 index 36cdffb79..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.deviceUsage.DeviceUsage Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.deviceUsage.DeviceUsage Class Referenceabstract
        -
        -
        - - - - -

        -Public Member Functions

        final void reportNetworkDataUsage (String usage)
         
        -

        Detailed Description

        -

        Device Usage should be extended by the platform implementation to provide the Alexa app usage on the device to Auto SDK. The interface currently supports providing the network data consumption only.

        -

        Member Function Documentation

        - -

        ◆ reportNetworkDataUsage()

        - -
        -
        - - - - - - - - -
        final void com.amazon.aace.deviceUsage.DeviceUsage.reportNetworkDataUsage (String usage)
        -
        -

        Reports the network usage data consumed by the Alexa application between the startTimeStamp and endTimeStamp

        -
        Parameters
        - - -
        usageThe network usage data.
        {
        "startTimeStamp" : {{LONG}},
        "endTimeStamp" : {{LONG}},
        "networkInterfaceType": "{{STRING}}",
        "dataPlanType" : "{{STRING}}",
        "bytesUsage" :{
        "rxBytes" : {{LONG}},
        "txBytes" : {{LONG}}
        }
        }
          -
        • startTimeStamp The starting timestamp in milliseconds from when the network usage data is captured
        • -
        • endTimeStamp The ending timestamp in milliseconds till when the network usage data is captured
        • -
        • networkInterfaceType The network interface name over which the data is recorded. For e.g WIFI, MOBILE
        • -
        • dataPlanType The type of current data plan the device is subscribed to. This is an optional field and should be provided only when the aace::connectivity::AlexaConnectivity platform interface is registered by the platform implementation. Refer to aace::connectivity::AlexaConnectivity for more details about dataPlanType
        • -
        • bytesUsage.rxBytes The received bytes over the networkInterfaceType
        • -
        • bytesUsage.txBytes The transmitted bytes over the networkInterfaceType
        • -
        -
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location-members.html deleted file mode 100644 index c30f7750d..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location-members.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.location.Location Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.location.Location, including all inherited members.

        - - - - - - - - -
        getAccuracy()com.amazon.aace.location.Location
        getAltitude()com.amazon.aace.location.Location
        getLatitude()com.amazon.aace.location.Location
        getLongitude()com.amazon.aace.location.Location
        Location(double latitude, double longitude, double altitude, double accuracy)com.amazon.aace.location.Location
        Location(double latitude, double longitude, double altitude)com.amazon.aace.location.Location
        Location(double latitude, double longitude)com.amazon.aace.location.Location
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location.html deleted file mode 100644 index 125b443d5..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location.html +++ /dev/null @@ -1,312 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.location.Location Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.location.Location Class Reference
        -
        -
        - - - - - - - - - - - - - - - - -

        -Public Member Functions

         Location (double latitude, double longitude, double altitude, double accuracy)
         
         Location (double latitude, double longitude, double altitude)
         
         Location (double latitude, double longitude)
         
        double getLatitude ()
         
        double getLongitude ()
         
        double getAltitude ()
         
        double getAccuracy ()
         
        -

        Detailed Description

        -

        Represents a location object and provides accessor methods to its data

        -

        Constructor & Destructor Documentation

        - -

        ◆ Location() [1/3]

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        com.amazon.aace.location.Location.Location (double latitude,
        double longitude,
        double altitude,
        double accuracy 
        )
        -
        -

        Most verbose constructor for a Location object

        -
        Parameters
        - - - - - -
        latitudeA location latitude
        longitudeA location longitude
        altitudeA location altitude in meters
        accuracyA location accuracy in meters
        -
        -
        - -
        -
        - -

        ◆ Location() [2/3]

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        com.amazon.aace.location.Location.Location (double latitude,
        double longitude,
        double altitude 
        )
        -
        -

        Less verbose constructor for a Location object

        -
        Parameters
        - - - - -
        latitudeA location latitude
        longitudeA location longitude
        altitudeA location altitude in meters
        -
        -
        - -
        -
        - -

        ◆ Location() [3/3]

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        com.amazon.aace.location.Location.Location (double latitude,
        double longitude 
        )
        -
        -

        Least verbose constructor for a Location object

        -
        Parameters
        - - - -
        latitudeA location latitude
        longitudeA location longitude
        -
        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ getLatitude()

        - -
        -
        - - - - - - - -
        double com.amazon.aace.location.Location.getLatitude ()
        -
        -

        Location accessor method for latitude

        -
        Returns
        The latitude for the location
        - -
        -
        - -

        ◆ getLongitude()

        - -
        -
        - - - - - - - -
        double com.amazon.aace.location.Location.getLongitude ()
        -
        -

        Location accessor method for longitude

        -
        Returns
        The longitude for the location
        - -
        -
        - -

        ◆ getAltitude()

        - -
        -
        - - - - - - - -
        double com.amazon.aace.location.Location.getAltitude ()
        -
        -

        Location accessor method for altitude

        -
        Returns
        The altitude for the location
        - -
        -
        - -

        ◆ getAccuracy()

        - -
        -
        - - - - - - - -
        double com.amazon.aace.location.Location.getAccuracy ()
        -
        -

        Location accessor method for accuracy

        -
        Returns
        The accuracy for the location
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider-members.html deleted file mode 100644 index dc7eb866a..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.location.LocationProvider Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html deleted file mode 100644 index a687ce5f6..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.location.LocationProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.location.LocationProvider Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  LocationServiceAccess
         
        - - - - - - - -

        -Public Member Functions

        abstract Location getLocation ()
         
        String getCountry ()
         
        void locationServiceAccessChanged (LocationServiceAccess access)
         
        -

        Detailed Description

        -

        LocationProvider should be extended to report geolocation to the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ getLocation()

        - -
        -
        - - - - - -
        - - - - - - - -
        abstract Location com.amazon.aace.location.LocationProvider.getLocation ()
        -
        -abstract
        -
        -

        Returns the current geolocation of the device

        -
        Returns
        The current location
        - -
        -
        - -

        ◆ getCountry()

        - -
        -
        - - - - - - - -
        String com.amazon.aace.location.LocationProvider.getCountry ()
        -
        -

        Returns the ISO country code for the current geolocation of the device. If no country can be determined, this method should return an empty string.

        -
        Returns
        The current country
        - -
        -
        - -

        ◆ locationServiceAccessChanged()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.location.LocationProvider.locationServiceAccessChanged (LocationServiceAccess access)
        -
        -

        Notifies the Engine of a change in location service access. Use this method when the device's access to location service provider changes. E.g., system location access is not granted to the application.

        -
        Parameters
        - - -
        accessAccess to the location service
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger-members.html deleted file mode 100644 index c5ff74a15..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.logger.Logger Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.logger.Logger, including all inherited members.

        - - - -
        log(Level level, String tag, String message)com.amazon.aace.logger.Logger
        logEvent(Level level, long time, String source, String message)com.amazon.aace.logger.Logger
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html deleted file mode 100644 index 57d87a496..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.logger.Logger Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.logger.Logger Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  Level
         
        - - - - - -

        -Public Member Functions

        boolean logEvent (Level level, long time, String source, String message)
         
        void log (Level level, String tag, String message)
         
        -

        Detailed Description

        -

        Logger should be extended handle log events from the AAC SDK.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ logEvent()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        boolean com.amazon.aace.logger.Logger.logEvent (Level level,
        long time,
        String source,
        String message 
        )
        -
        -

        Notifies the platform implementation of a log event from the AAC SDK logger

        -
        Parameters
        - - - - - -
        levelThe log level
        timeThe timestamp of the logged message
        sourceThe source of the log message
        messageThe log message
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the log event, else false
        - -
        -
        - -

        ◆ log()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.logger.Logger.log (Level level,
        String tag,
        String message 
        )
        -
        -

        Notifies the Engine to use the AAC SDK logger to log a message originating on the platform. The log event will be received by the platform with a call to logEvent() from the Engine.

        -
        Parameters
        - - - - -
        levelThe log level
        tagThe log tag
        messageThe log message
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration-members.html deleted file mode 100644 index e0f60e3ea..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.logger.config.LoggerConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.logger.config.LoggerConfiguration, including all inherited members.

        - - - - - - - -
        createConsoleSinkConfig(final String id, final Logger.Level level)com.amazon.aace.logger.config.LoggerConfigurationstatic
        createFileSinkConfig(final String id, final Logger.Level level, final String path, final String prefix, final int maxSize, final int maxFiles, final boolean append)com.amazon.aace.logger.config.LoggerConfigurationstatic
        createFileSinkConfig(String id, Logger.Level level, String path)com.amazon.aace.logger.config.LoggerConfigurationstatic
        createLoggerRuleConfig(final String sink, final Logger.Level level, final String sourceFilter, final String tagFilter, final String messageFilter)com.amazon.aace.logger.config.LoggerConfigurationstatic
        createLoggerRuleConfig(String sink, Logger.Level level)com.amazon.aace.logger.config.LoggerConfigurationstatic
        createSyslogSinkConfig(final String id, final Logger.Level level)com.amazon.aace.logger.config.LoggerConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html deleted file mode 100644 index 0e72adfc8..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html +++ /dev/null @@ -1,437 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.logger.config.LoggerConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.logger.config.LoggerConfiguration Class Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Static Public Member Functions

        static EngineConfiguration createConsoleSinkConfig (final String id, final Logger.Level level)
         
        static EngineConfiguration createSyslogSinkConfig (final String id, final Logger.Level level)
         
        static EngineConfiguration createFileSinkConfig (final String id, final Logger.Level level, final String path, final String prefix, final int maxSize, final int maxFiles, final boolean append)
         
        static EngineConfiguration createFileSinkConfig (String id, Logger.Level level, String path)
         
        static EngineConfiguration createLoggerRuleConfig (final String sink, final Logger.Level level, final String sourceFilter, final String tagFilter, final String messageFilter)
         
        static EngineConfiguration createLoggerRuleConfig (String sink, Logger.Level level)
         
        -

        Detailed Description

        -
        {
        "aace.logger":
        {
        "sinks": [<Sink>],
        "rules": [{"sink": "<SINK_ID>", "rule": <Rule>}]
        }
        }
        <Sink>: {
        "id": "<SINK_ID>"
        "type": "<SINK_TYPE>",
        "config": {
        <CONFIG_DATA>
        },
        "rules": [<RuleConfiguration>]
        }
        <Rule>: {
        "level": "<LOG_LEVEL>",
        "source": "<SOURCE_FILTER>",
        "tag": "<TAG_FILTER>",
        "message": "<MESSAGE_FILTER>"
        }

        Member Function Documentation

        - -

        ◆ createConsoleSinkConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.logger.config.LoggerConfiguration.createConsoleSinkConfig (final String id,
        final Logger.Level level 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate logger configuration data for a console sink. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "sinks": [{
        "id": "<SINK_ID>",
        "type": "aace.logger.sink.console",
        "rules": [{
        "level": <LOG_LEVEL>
        }]
        }
        }
        }
        Parameters
        - - - -
        idThe id of sink object
        levelThe log level to be used to filter logs to this sink
        -
        -
        - -
        -
        - -

        ◆ createSyslogSinkConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.logger.config.LoggerConfiguration.createSyslogSinkConfig (final String id,
        final Logger.Level level 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate logger configuration data for a syslog sink. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "sinks": [{
        "id": "<SINK_ID>",
        "type": "aace.logger.sink.syslog",
        "rules": [{
        "level": <LOG_LEVEL>
        }]
        }
        }
        }
        Parameters
        - - - -
        idThe id of sink object
        levelThe log level to be used to filter logs to this sink
        -
        -
        - -
        -
        - -

        ◆ createFileSinkConfig() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.logger.config.LoggerConfiguration.createFileSinkConfig (final String id,
        final Logger.Level level,
        final String path,
        final String prefix,
        final int maxSize,
        final int maxFiles,
        final boolean append 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate logger configuration data for a file sink. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "sinks": [{
        "id": "<SINK_ID>",
        "type": "aace.logger.sink.file",
        "config": {
        "path": "<PATH>",
        "prefix": "<PREFIX>",
        "maxSize": <MAX_SIZE>,
        "maxFiles": <MAX_FILES>,
        "append": <APPEND>
        }
        "rules": [{
        "level": <LOG_LEVEL>
        }]
        }
        }
        }
        Parameters
        - - - - - - - - -
        idThe id of sink object
        levelThe log level to be used to filter logs to this sink
        pathThe parent path where the log files will be written (must exist)
        prefixThe prefix name given to the log file
        maxSizeThe maximum log file size in bytes
        maxFilesThe maximum number of log files to rotate
        appendtrue If the logs should be appended to the existing file, false if the file should be overwritten
        -
        -
        - -
        -
        - -

        ◆ createFileSinkConfig() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.logger.config.LoggerConfiguration.createFileSinkConfig (String id,
        Logger.Level level,
        String path 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate logger configuration data for a file sink. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "sinks": [{
        "id": "<SINK_ID>",
        "type": "aace.logger.sink.file",
        "config": {
        "path": "<PATH>",
        "prefix": "<PREFIX>",
        "maxSize": <MAX_SIZE>,
        "maxFiles": <MAX_FILES>,
        "append": <APPEND>
        }
        "rules": [{
        "level": <LOG_LEVEL>
        }]
        }
        }
        }
        Parameters
        - - - - - - - - -
        idThe id of sink object
        levelThe log level to be used to filter logs to this sink
        pathThe parent path where the log files will be written (must exist)
        prefixThe prefix name given to the log file
        maxSizeThe maximum log file size in bytes
        maxFilesThe maximum number of log files to rotate
        appendtrue If the logs should be appended to the existing file, false if the file should be overwritten
        -
        -
        - -
        -
        - -

        ◆ createLoggerRuleConfig() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.logger.config.LoggerConfiguration.createLoggerRuleConfig (final String sink,
        final Logger.Level level,
        final String sourceFilter,
        final String tagFilter,
        final String messageFilter 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate configuration data for a logger rule. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "rules": [{
        "sink": "<SINK_ID>",
        "rule": {
        "level": <LOG_LEVEL>,
        "source": "<SOURCE_FILTER>",
        "tag": "<TAG_FILTER>",
        "message": "<MESSAGE_FILTER>"
        }
        }
        }
        }
        Parameters
        - - - - - - -
        sinkThe id of sink object to which this rule is applied
        levelThe log level to be used as a filter for this rule
        sourceFilterThe source regex to be used as a filter for this rule
        tagFilterThe tag regex to be used as a filter for this rule
        messageFilterThe message regex to be used as a filter for this rule
        -
        -
        - -
        -
        - -

        ◆ createLoggerRuleConfig() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static EngineConfiguration com.amazon.aace.logger.config.LoggerConfiguration.createLoggerRuleConfig (String sink,
        Logger.Level level 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate configuration data for a logger rule. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "rules": [{
        "sink": "<SINK_ID>",
        "rule": {
        "level": <LOG_LEVEL>,
        "source": "<SOURCE_FILTER>",
        "tag": "<TAG_FILTER>",
        "message": "<MESSAGE_FILTER>"
        }
        }
        }
        }
        Parameters
        - - - - - - -
        sinkThe id of sink object to which this rule is applied
        levelThe log level to be used as a filter for this rule
        sourceFilterThe source regex to be used as a filter for this rule
        tagFilterThe tag regex to be used as a filter for this rule
        messageFilterThe message regex to be used as a filter for this rule
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging-members.html deleted file mode 100644 index 3c70a9608..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging-members.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.messaging.Messaging Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.messaging.Messaging, including all inherited members.

        - - - - - - - - - - -
        conversationsReport(String token, String conversations)com.amazon.aace.messaging.Messagingprotected
        sendMessage(String token, String message, String recipients)com.amazon.aace.messaging.Messaging
        sendMessageFailed(String token, ErrorCode code, String message)com.amazon.aace.messaging.Messagingprotected
        sendMessageSucceeded(String token)com.amazon.aace.messaging.Messagingprotected
        updateMessagesStatus(String token, String conversationId, String status)com.amazon.aace.messaging.Messaging
        updateMessagesStatusFailed(String token, ErrorCode code, String message)com.amazon.aace.messaging.Messagingprotected
        updateMessagesStatusSucceeded(String token)com.amazon.aace.messaging.Messagingprotected
        updateMessagingEndpointState(ConnectionState connectionState, PermissionState sendPermission, PermissionState readPermission)com.amazon.aace.messaging.Messagingprotected
        uploadConversations(String token)com.amazon.aace.messaging.Messaging
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html deleted file mode 100644 index 62be3a155..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html +++ /dev/null @@ -1,534 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.messaging.Messaging Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.messaging.Messaging Class Referenceabstract
        -
        -
        - - - - - - - - -

        -Classes

        enum  ConnectionState
         
        enum  ErrorCode
         
        enum  PermissionState
         
        - - - - - - - -

        -Public Member Functions

        void sendMessage (String token, String message, String recipients)
         
        void uploadConversations (String token)
         
        void updateMessagesStatus (String token, String conversationId, String status)
         
        - - - - - - - - - - - - - -

        -Protected Member Functions

        final void sendMessageSucceeded (String token)
         
        final void sendMessageFailed (String token, ErrorCode code, String message)
         
        final void conversationsReport (String token, String conversations)
         
        final void updateMessagesStatusSucceeded (String token)
         
        final void updateMessagesStatusFailed (String token, ErrorCode code, String message)
         
        final void updateMessagingEndpointState (ConnectionState connectionState, PermissionState sendPermission, PermissionState readPermission)
         
        -

        Detailed Description

        -

        Messaging should be extended to allow a user to use Alexa to interact with a device that provides Short Messaging Service (SMS) messaging capabilities such as a connected mobile phone.

        -
        Note
        The device is referred to as the messaging endpoint.
        -

        The platform implementation is responsible for uploading unread messages to the cloud when the messaging endpoint is connected, and when new messages are received. Messages will be read by Alexa according the order in which they are uploaded. Additionally, the platform implementation is responsible for sending messages, updating message status, and providing the messaging endpoint connection state and permissions.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ sendMessage()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.messaging.Messaging.sendMessage (String token,
        String message,
        String recipients 
        )
        -
        -

        Notifies the platform implementation to send an SMS message via the messaging endpoint. The message text contains a short lived URL that contains the audio data from which the message was generated.

        -
        Parameters
        - - - - -
        [in]tokenThe identifier for the request.
        [in]messageThe message that should be sent through the messaging endpoint. The message includes both text followed by a URL to the audio that was used to generate the text message. It is delimited by a '
        -' character and can optionally be omitted in the transmission of the text message.
        [in]recipientsJSON data containing the recipients of the message.
        {
        "recipients" : [
        {
        "address" : "{{STRING}}",
        "addressType" : "PhoneNumberAddress"
        }
        ]
        }
          -
        • recipients (required) : The list of phone numbers where the message should be sent. If there are multiple entries in the list, then the message should be sent as a group message.
        • -
        • address (required) : The phone number of the recipient.
        • -
        • addressType (required) : Describes the type of value address contains. Currently, only "PhoneNumberAddress" is supported.
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ uploadConversations()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.messaging.Messaging.uploadConversations (String token)
        -
        -

        Notifies the platform implementation to upload all unread messages to the cloud. This method is called if message playback is interrupted or when Alexa has finished reading all messages. This ensures that the cloud and the messaging endpoint stay in sync with the status of unread messages. Messages should be uploaded via the conversationsReport API using the token received.

        -
        Parameters
        - - -
        [in]tokenThe identifier for the request.
        -
        -
        - -
        -
        - -

        ◆ updateMessagesStatus()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.messaging.Messaging.updateMessagesStatus (String token,
        String conversationId,
        String status 
        )
        -
        -

        Notifies the platform implementation that a messages have been read, and therefore the messaging device should updated to reflect that. It is the responsibility of the platform implementation to maintain the list of unread messages. A response should be sent to the cloud via updateMessagesStatusSucceeded or updateMessagesStatusFailed depending on the result of the status update.

        -
        Parameters
        - - - - -
        [in]tokenThe identifier for the request.
        [in]conversationIdThe identifier for the conversation whose status will be updated. This is the value provided by the platform via the conversationsReport API.
        [in]statusContains the set of message identifiers that need to be updated to the associated status.
        {
        "statusMap" : {
        "read" : [{{STRING}}],
        }
        }
          -
        • read The list of message ids that were read in the associated conversationId.
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ sendMessageSucceeded()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.messaging.Messaging.sendMessageSucceeded (String token)
        -
        -protected
        -
        -

        Notifies the cloud that the sendMessage request succeeded.

        -
        Parameters
        - - -
        [in]tokenThe token received from the sendMessage request.
        -
        -
        - -
        -
        - -

        ◆ sendMessageFailed()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.messaging.Messaging.sendMessageFailed (String token,
        ErrorCode code,
        String message 
        )
        -
        -protected
        -
        -

        Notifies the cloud that the sendMessage request failed.

        -
        Parameters
        - - - - -
        [in]tokenThe token received from the sendMessage request.
        [in]codeThe error code describing the reason for the failure.
        [in]messageOptional error message describing the failure.
        -
        -
        - -
        -
        - -

        ◆ conversationsReport()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.messaging.Messaging.conversationsReport (String token,
        String conversations 
        )
        -
        -protected
        -
        -

        Updates the cloud with the list of unread messages that Alexa will play back. The platform implementation should call this method when the messaging endpoint is connected and read permission has been granted. Additionally, this method should be called to reply to a uploadConversations request, passing back the token that was sent in that request.

        -
        Note
        The format of the conversation report should be a JSON Array and therefore be enclosed in brackets [].
        -

        The list of conversations is provided as a JSON array. Each conversation must contain a unique identifier that will be used by the updateMessagesStatus request to identify the conversation whose messages must be updated.

        -

        The "otherParticipants" field of the conversation report should contain all the phone numbers of the participants in the conversation, except for the phone number of the messaging endpoint.

        -
        Parameters
        - - - -
        [in]Thetoken received from uploadConversations, otherwise an empty string.
        [in]conversationsA JSON array representing the unread messages of the messaging endpoint.
        [
        {
        "id": "{{STRING}}",
        "otherParticipants": [
        {
        "address":"{{STRING}}",
        "addressType":"PhoneNumberAddress"
        }
        ],
        "messages": [
        {
        "id":"{{STRING}}",
        "payload": {
        "@type":"text",
        "text":"{{STRING}}"
        },
        "status":"unread",
        "createdTime":"{{STRING}}",
        "sender": {
        "address":"{{STRING}}",
        "addressType":"PhoneNumberAddress"
        }
        }
        ],
        "unreadMessageCount": {{INTEGER}}
        }
        ]
          -
        • id A unique identifier generated by the application for the conversation.
        • -
        • otherParticipants Additional recipients of the message used for group conversation or empty.
        • -
        • otherParticipants.address The phone number of the recipient.
        • -
        • otherParticipants.addressType Hard coded string "PhoneNumberAddress" indicating the value of the address field.
        • -
        • messages.id A unique identifier generated by the application for the message.
        • -
        • messages.payload. Hard coded string "text" indicating the value of the text field.
        • -
        • messages.text The text for the message.
        • -
        • messages.createdTime (optional) The ISO 8601 timestamp of when the message was created on the device.
        • -
        • messages.sender.address The phone number of the sender.
        • -
        • messages.sender.addressType Hard coded string "PhoneNumberAddress" indicating the value of the address field.
        • -
        • unreadMessageCount The total number of unread messages in this conversation.
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ updateMessagesStatusSucceeded()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.messaging.Messaging.updateMessagesStatusSucceeded (String token)
        -
        -protected
        -
        -

        Notifies the cloud that the updateMessagesStatus request succeeded.

        -
        Parameters
        - - -
        [in]tokenThe token received from the
        -
        -
        -
        See also
        Messaging::updateMessagesStatus request.
        - -
        -
        - -

        ◆ updateMessagesStatusFailed()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.messaging.Messaging.updateMessagesStatusFailed (String token,
        ErrorCode code,
        String message 
        )
        -
        -protected
        -
        -

        Notifies the cloud that the updateMessagesStatus request failed.

        -
        Parameters
        - - -
        [in]tokenThe token received from the
        -
        -
        -
        See also
        Messaging::updateMessagesStatus request.
        -
        Parameters
        - - - -
        [in]codeThe error code describing the reason for the failure.
        [in]messageOptional error message describing the failure.
        -
        -
        - -
        -
        - -

        ◆ updateMessagingEndpointState()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.messaging.Messaging.updateMessagingEndpointState (ConnectionState connectionState,
        PermissionState sendPermission,
        PermissionState readPermission 
        )
        -
        -protected
        -
        -

        Updates the state of the messaging endpoint. The platform implementation needs to request consent from the end user to allow sending and reading messages. Also, the connection state of the messaging endpoint must be reported when it is connected or disconnected.

        -
        Parameters
        - - - - -
        [in]connectionStateCONNECTED If the messaging endpoint is connected, else DISCONNECTED
        [in]sendPermissionON If the messaging endpoint can send messages, else OFF
        [in]readPermissionON If the messaging endpoint messages be read, else OFF
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation-members.html deleted file mode 100644 index 5870315e6..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation-members.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.navigation.Navigation Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html deleted file mode 100644 index 31c76ba71..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html +++ /dev/null @@ -1,420 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.navigation.Navigation Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.navigation.Navigation Class Referenceabstract
        -
        -
        - - - - - - - - - - - - -

        -Public Member Functions

        boolean cancelNavigation ()
         
        String getNavigationState ()
         
        void startNavigation (String payload)
         
        void announceManeuver (String payload)
         
        void announceRoadRegulation (RoadRegulation roadRegulation)
         
        - - - - - - - -

        -Protected Member Functions

        final void navigationError (ErrorType type, ErrorCode code, String description)
         
        final void navigationEvent (EventName event)
         
        final void showAlternativeRoutesSucceeded (String payload)
         
        -

        Detailed Description

        -

        Navigation should be extended to handle navigation directives from the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ cancelNavigation()

        - -
        -
        - - - - - - - -
        boolean com.amazon.aace.navigation.Navigation.cancelNavigation ()
        -
        -

        Notifies the platform implementation to cancel navigation

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ getNavigationState()

        - -
        -
        - - - - - - - -
        String com.amazon.aace.navigation.Navigation.getNavigationState ()
        -
        -

        Retrieve the navigation state from the platform. NOTE: You may return an empty string to default the payload to NOT_NAVIGATING

        -
        Returns
        the current NavigationState JSON payload
        )
        "state": "{{STRING}}", //NAVIGATING or NOT_NAVIGATING
        "waypoints": [
        {
        "type": "{{STRING}}", //Type of the waypoint - SOURCE, DESTINATION or INTERIM
        "estimatedTimeOfArrival": {
        "ideal": {{STRING}}, //Expected clock time ETA based on the ideal conditions. ISO 8601 UTC format
        "predicted": {{STRING}} //predicted clock time ETA based on traffic conditions. ISO 8601 UTC format
        },
        "address": "{{STRING}}",
        "coordinate": [{{LATITUDE_DOUBLE}},{{LONGITUDE_DOUBLE}}],
        },
        {
        "type": "{{STRING}}", //Type of the waypoint - SOURCE, DESTINATION or INTERIM
        "estimatedTimeOfArrival": {
        "ideal": {{STRING}}, //Expected clock time ETA based on the ideal conditions. ISO 8601 UTC format
        "predicted": {{STRING}} //predicted clock time ETA based on traffic conditions. ISO 8601 UTC format
        },
        "address": "{{STRING}}",
        "coordinate": [{{LATITUDE_DOUBLE}},{{LONGITUDE_DOUBLE}}],
        "poiOfInterest": {
        "id": "{{STRING}}", //POI lookup Id vended from Alexa
        "name": "{{STRING}}", // POI Name
        "hoursOfOperation": [
        {
        "dayOfWeek": "{{STRING}}",
        "hours": [
        {
        "open": "{{STRING}}", // ISO-8601 time with timezone format
        "close": "{{STRING}}" // ISO-8601 time with timezone format
        }
        ],
        "type": "{{STRING}}" // Can be: OPEN_DURING_HOURS, OPEN_24_HOURS, etc.
        }
        ],
        "phoneNumber": "{{STRING}}"
        }
        },
        ...
        ],
        "shapes": [
        [
        {{LATITUDE_DOUBLE}},
        {{LONGITUDE_DOUBLE}}
        ],
        ...
        ]
          -
        • state (required) : current navigation state
        • -
        • waypoints (required) : list of waypoints, which can be empty
        • -
        • shapes (required) : list of route shapes, which can be empty or limited to 100 entries
        • -
        -
        - -
        -
        - -

        ◆ startNavigation()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.navigation.Navigation.startNavigation (String payload)
        -
        -

        Notifies the platform implementation to start the navigation

        -
        Parameters
        - - -
        payloadJSON data containing the destination information
        )
        "transportationMode":"{{STRING}}",
        "waypoints":[
        {
        "type":"{{STRING}}",
        "estimatedTimeOfArrival":{
        "ideal":"{{STRING}}", //ISO-8601 time format
        "predicted":"{{STRING}}" //ISO-8601 time format
        },
        "address": {
        "addressLine1": "{{STRING}}", //Address line 1
        "addressLine2": "{{STRING}}", //Address line 2
        "addressLine3": "{{STRING}}", //Address line 3
        "city": "{{STRING}}", //city
        "districtOrCounty": "{{STRING}}", //district or county
        "stateOrRegion": "{{STRING}}", // state or region
        "countryCode": "{{STRING}}", //3 letter country code
        "postalCode": "{{STRING}}", // postal code
        },
        "coordinate":[
        "{{LATITUDE_DOUBLE}}",
        "{{LONGITUDE_DOUBLE}}"
        ],
        "name":"{{STRING}}"
        },
        {
        "type":"{{STRING}}",
        "estimatedTimeOfArrival":{
        "ideal":"{{STRING}}",
        "predicted":"{{STRING}}"
        },
        "address":"{{STRING}}",
        "coordinate":[
        "{{LATITUDE_DOUBLE}}",
        "{{LONGITUDE_DOUBLE}}"
        ],
        "name":"{{STRING}}"
        "poiOfInterest":{
        "id":"{{STRING}}",
        "hoursOfOperation":[
        {
        "dayOfWeek":"{{STRING}}",
        "hours":[
        {
        "open":"{{STRING}}",
        "close":"{{STRING}}"
        }
        ],
        "type":"{{STRING}}"
        }
        ],
        "phoneNumber":"{{STRING}}"
        }
        }
        ]
          -
        • transportationMode (optional) : Indicates the means by which to navigate to the destination (Values: BIKING, DRIVING, TRANSIT, WALKING)
        • -
        • waypoints (required) : list of waypoints, which can be empty
        • -
        • waypoints.type (required) : String from Enum Type of the waypoint - SOURCE, DESTINATION or INTERIM
        • -
        • estimatedTimeOfArrival (optional) : Arrival time at the destination
        • -
        • estimatedTimeOfArrival.ideal (optional) : Expected arrival time to the destination without considering any other signals such as traffic, diversions etc
        • -
        • estimatedTimeOfArrival.predicted (required) : Predicted arrival time to the destination based on traffic etc. In the case of actual and current matching, only current ETA will be populated
        • -
        • address (optional) : Waypoint address
        • -
        • address.addressLine1 (optional) : address line 1
        • -
        • address.addressLine2 (optional) : address line 2
        • -
        • address.addressLine3 (optional) : address line 3
        • -
        • address.city (optional) : city of destination address
        • -
        • address.stateOrRegion (optional) : city of destination address
        • -
        • address.countryCode (optional) : 3 letter country code in ISO 3166-1 alpha-3 format
        • -
        • address.districtOrCounty (optional) : district or county
        • -
        • address.postalCode (optional) : postal code
        • -
        • coordinate (required) : Contains the geolocation information of the destination
        • -
        • coordinate.latitudeInDegrees (required) : Latitude coordinate in degrees
        • -
        • coordinate.longitudeInDegrees (required) : Longitude coordinate in degrees
        • -
        • name (optional) : waypoint name
        • -
        • pointOfInterest (optional) : POI information related to the waypoint
        • -
        • pointOfInterest.id (optional) : Lookup Id for the POIs vended by Alexa
        • -
        • metadata.hoursOfOperation (optional) : Hours of operation for the business
        • -
        • hoursOfOperation.dayOfWeek (required) : Day of the week (Values: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY)
        • -
        • hoursOfOperation.hours (required): List of opening (open) and closing (close) hours for the day. Hours are in ISO-8601 time with timezone format
        • -
        • hoursOfOperation.type (required) : Indicates whether the location is open on this day or not (Values: OPEN_DURING_HOURS, OPEN_24_HOURS, CLOSED, UNKNOWN, HOLIDAY)
        • -
        • metadata.phoneNumber (optional) : The phone number of the location in E.164 format
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ announceManeuver()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.navigation.Navigation.announceManeuver (String payload)
        -
        -

        Notifies the platform implementation to give details about a maneuver to next waypoint on the route or a completely different waypoint off route.

        -
        Parameters
        - - -
        payloadJSON data containing the maneuver information
        )
        "maneuverType": "{{STRING}}", // requested maneuver type
        "queryTarget" : {
        "name": "{{STRING}}" // name of the requested location
        "address": { // address of requested location
        "addressLine1": "{{STRING}}", //Address line 1
        "addressLine2": "{{STRING}}", //Address line 2
        "addressLine3": "{{STRING}}", //Address line 3
        "city": "{{STRING}}", //city
        "districtOrCounty": "{{STRING}}", //district or county
        "stateOrRegion": "{{STRING}}", // state or region
        "countryCode": "{{STRING}}", //3 letter country code
        "postalCode": "{{STRING}}", // postal code
        },
        "coordinate": [{{LATITUDE_DOUBLE}},{{LONGITUDE_DOUBLE}}]
        }
          -
        • maneuverType (required) : Can take values : TURN, EXIT, ENTER, MERGE, LANE
        • -
        • queryTarget (optional) : Contains information about the targeted location on the route. If the location is a POI / user place / street address, Alexa will resolve and provide all 3 fields in the directive. If Alexa is not able to resolve the target, then at least one of the three fields will be present if a target was specified.
        • -
        • queryTarget.name (optional) : name of the requested location
        • -
        • queryTarget.coordinate (optional) : The geographic coordinates (lat, long) of the location as an ordered double list. (The order of the lat/long double list → [Latitude double , Longitude double])
        • -
        • queryTarget.address (optional) : Address of the requested location
        • -
        • queryTarget.address.addressLine1 (optional) : address line 1
        • -
        • queryTarget.address.addressLine2 (optional) : address line 2
        • -
        • queryTarget.address.addressLine3 (optional) : address line 3
        • -
        • queryTarget.address.city (optional) : city of destination address
        • -
        • queryTarget.address.stateOrRegion (optional) : city of destination address
        • -
        • queryTarget.address.countryCode (optional) : 3 letter country code in ISO 3166-1 alpha-3 format
        • -
        • queryTarget.address.districtOrCounty (optional) : district or county
        • -
        • queryTarget.address.postalCode (optional) : postal code
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ announceRoadRegulation()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.navigation.Navigation.announceRoadRegulation (RoadRegulation roadRegulation)
        -
        -

        Notifies the platform implementation to give details about road regulations about the road segments that the user is on

        -
        Parameters
        - - -
        roadRegulationType of road regulation requested.(Values: SPEED_LIMIT, CARPOOL_RULES)
        -
        -
        - -
        -
        - -

        ◆ navigationError()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.navigation.Navigation.navigationError (ErrorType type,
        ErrorCode code,
        String description 
        )
        -
        -protected
        -
        -

        Notifies the Engine of error in handling a Navigation directive.

        -
        Parameters
        - - - - -
        typeErrorType describing which operation failed.
          -
        • ErrorType values based on directive:
        • -
        • startNavigation(): NAVIGATION_START_FAILED
        • -
        • showPreviousWaypoints(): SHOW_PREVIOUS_WAYPOINTS_FAILED
        • -
        • navigateToPreviousWaypoint(): PREVIOUS_NAVIGATION_START_FAILED
        • -
        • controlDisplay(): ROUTE_OVERVIEW_FAILED, DIRECTIONS_LIST_FAILED, ZOOM_IN_FAILED, ZOOM_OUT_FAILED, CENTER_FAILED, ORIENT_NORTH_FAILED, SCROLL_NORTH_FAILED, SCROLL_UP_FAILED, SCROLL_EAST_FAILED, SCROLL_RIGHT_FAILED, SCROLL_SOUTH_FAILED, SCROLL_DOWN_FAILED, SCROLL_WEST_FAILED, SCROLL_LEFT_FAILED, MUTED_ROUTE_GUIDANCE_FAILED, UNMUTED_ROUTE_GUIDANCE_FAILED
        • -
        • showAlternativeRoutes(): DEFAULT_ALTERNATE_ROUTES_FAILED, SHORTER_TIME_ROUTES_FAILED, SHORTER_DISTANCE_ROUTES_FAILED,
        • -
        • announceManeuver(): TURN_GUIDANCE_FAILED, EXIT_GUIDANCE_FAILED, ENTER_GUIDANCE_FAILED, MERGE_GUIDANCE_FAILED, LANE_GUIDANCE_FAILED,
        • -
        • announceRoadRegulation(): SPEED_LIMIT_REGULATION_FAILED, CARPOOL_RULES_REGULATION_FAILED
        • -
        -
        codeErrorCode describing the type of failure. (Values: INTERNAL_SERVICE_ERROR, ROUTE_NOT_FOUND, NO_PREVIOUS_WAYPOINTS, NOT_SUPPORTED, NOT_ALLOWED)
        descriptionString providing additional information.
        -
        -
        - -
        -
        - -

        ◆ navigationEvent()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.navigation.Navigation.navigationEvent (EventName event)
        -
        -protected
        -
        -

        Notifies the Engine of successful handling of a Navigation directive.

        -
        Parameters
        - - -
        [in]eventEventName describing which operation was successful.
          -
        • EventName values based on directive:
        • -
        • startNavigation(): NAVIGATION_STARTED
        • -
        • showPreviousWaypoints(): PREVIOUS_WAYPOINTS_SHOWN
        • -
        • navigateToPreviousWaypoint(): PREVIOUS_NAVIGATION_STARTED
        • -
        • controlDisplay(): ROUTE_OVERVIEW_SHOWN, DIRECTIONS_LIST_SHOWN, ZOOMED_IN, ZOOMED_OUT, MAP_CENTERED, ORIENTED_NORTH, SCROLLED_NORTH, SCROLLED_UP, SCROLLED_EAST, SCROLLED_RIGHT, SCROLLED_SOUTH, SCROLLED_DOWN, SCROLLED_WEST, SCROLLED_LEFT, ROUTE_GUIDANCE_MUTED, ROUTE_GUIDANCE_UNMUTED
        • -
        • announceManeuver(): TURN_GUIDANCE_ANNOUNCED, EXIT_GUIDANCE_ANNOUNCED, ENTER_GUIDANCE_ANNOUNCED, MERGE_GUIDANCE_ANNOUNCED, LANE_GUIDANCE_ANNOUNCED
        • -
        • announceRoadRegulation(): SPEED_LIMIT_REGULATION_ANNOUNCED, CARPOOL_RULES_REGULATION_ANNOUNCED
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ showAlternativeRoutesSucceeded()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.navigation.Navigation.showAlternativeRoutesSucceeded (String payload)
        -
        -protected
        -
        -

        Notifies AVS of successful showing of alternative routes to the user

        -
        Parameters
        - - -
        payloadJSON data containing the alternative route information
        )
        "inquiryType": "{{STRING}}" // DEFAULT, SHORTER_TIME, SHORTER_DISTANCE
        "alternateRoute":
        {
        "labels": ["{{STRING}}"],
        "savings": [
        {
        "type": "{{STRING}}", // DISTANCE, TIME
        "amount": {{FLOAT}},
        "unit": "{{STRING}}" // MINUTE, HOUR, YARD, FOOT, MILE, METER, KILOMETER
        }
        ]
        }
          -
        • inquiryType (required) : alternate route preference
        • -
        • alternateRoute (required) : The best route found that matches inquiryType.
        • -
        • labels (required) : Unique names within a route used to distinguish between alternative routes. The label might contain the direction of the route when passing by the detail.
        • -
        • savings (optional) : List of savings achieved by the route. Savings can be in: Time and/or Distance
        • -
        • savings.type (required) : The type of savings
        • -
        • savings.amount (required) : The amount of savings achieved by the route. Alexa will use prescribed unit to convert the amount of savings to improve the driver's experience, if needed.
        • -
        • savings.unit (required) : Measurement unit of the savings
        • -
        -
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration-members.html deleted file mode 100644 index 0f37a61d6..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.navigation.config.NavigationConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.navigation.config.NavigationConfiguration, including all inherited members.

        - - -
        createNavigationConfig(final String providerName)com.amazon.aace.navigation.config.NavigationConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html deleted file mode 100644 index 3c2961107..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.navigation.config.NavigationConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.navigation.config.NavigationConfiguration Class Reference
        -
        -
        - - - - -

        -Static Public Member Functions

        static EngineConfiguration createNavigationConfig (final String providerName)
         
        -

        Detailed Description

        -

        A factory interface for creating Navigation configuration objects

        -

        Member Function Documentation

        - -

        ◆ createNavigationConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.navigation.config.NavigationConfiguration.createNavigationConfig (final String providerName)
        -
        -static
        -
        -

        Factory method used to programmatically generate navigation configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.navigation": {
        "providerName": <SERVICE_NAME>
        }
        Parameters
        - - -
        [in]providerNameThe navigation provider name
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider-members.html deleted file mode 100644 index 8283feeed..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.network.NetworkInfoProvider Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html deleted file mode 100644 index 26add7d15..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.network.NetworkInfoProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.network.NetworkInfoProvider Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  NetworkStatus
         
        - - - - - - - -

        -Public Member Functions

        NetworkStatus getNetworkStatus ()
         
        int getWifiSignalStrength ()
         
        void networkStatusChanged (NetworkStatus status, int wifiSignalStrength)
         
        -

        Detailed Description

        -

        NetworkInfoProvider should be extended to report network connectivity events to the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ getNetworkStatus()

        - -
        -
        - - - - - - - -
        NetworkStatus com.amazon.aace.network.NetworkInfoProvider.getNetworkStatus ()
        -
        -

        Returns the current network connectivity status on the platform

        -
        Returns
        The connectivity status of the current network
        - -
        -
        - -

        ◆ getWifiSignalStrength()

        - -
        -
        - - - - - - - -
        int com.amazon.aace.network.NetworkInfoProvider.getWifiSignalStrength ()
        -
        -

        Returns the current signal strength (RSSI) of the WiFi connection on the platform

        -
        Returns
        The RSSI of the WiFi connection
        - -
        -
        - -

        ◆ networkStatusChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.network.NetworkInfoProvider.networkStatusChanged (NetworkStatus status,
        int wifiSignalStrength 
        )
        -
        -

        Notifies the Engine of a WiFi network status change on the platform

        -
        Parameters
        - - - -
        statusThe connection status of the WiFi network
        wifiSignalStrengthThe RSSI of the WiFi connection
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller-members.html deleted file mode 100644 index 2e5ed166d..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller-members.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.phonecontrol.PhoneCallController Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.phonecontrol.PhoneCallController, including all inherited members.

        - - - - - - - - - - - - - - - - - -
        answer(String payload)com.amazon.aace.phonecontrol.PhoneCallController
        callerIdReceived(String callId, String callerId)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        callFailed(String callId, CallError code)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        callFailed(String callId, CallError code, String message)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        callStateChanged(CallState state, String callId)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        callStateChanged(CallState state, String callId, String callerId)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        connectionStateChanged(ConnectionState state)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        createCallId()com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        deviceConfigurationUpdated(HashMap< CallingDeviceConfigurationProperty, Boolean > configurationMap)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        dial(String payload)com.amazon.aace.phonecontrol.PhoneCallController
        redial(String payload)com.amazon.aace.phonecontrol.PhoneCallController
        sendDTMF(String payload)com.amazon.aace.phonecontrol.PhoneCallController
        sendDTMFFailed(String callId, DTMFError code)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        sendDTMFFailed(String callId, DTMFError code, String message)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        sendDTMFSucceeded(String callId)com.amazon.aace.phonecontrol.PhoneCallControllerprotected
        stop(String payload)com.amazon.aace.phonecontrol.PhoneCallController
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html deleted file mode 100644 index e821eb1e4..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html +++ /dev/null @@ -1,754 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.phonecontrol.PhoneCallController Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.phonecontrol.PhoneCallController Class Referenceabstract
        -
        -
        - - - - - - - - - - - - -

        -Classes

        enum  CallError
         
        enum  CallingDeviceConfigurationProperty
         
        enum  CallState
         
        enum  ConnectionState
         
        enum  DTMFError
         
        - - - - - - - - - - - -

        -Public Member Functions

        boolean dial (String payload)
         
        boolean redial (String payload)
         
        void answer (String payload)
         
        void stop (String payload)
         
        void sendDTMF (String payload)
         
        - - - - - - - - - - - - - - - - - - - - - - - -

        -Protected Member Functions

        final void connectionStateChanged (ConnectionState state)
         
        final void callStateChanged (CallState state, String callId)
         
        final void callStateChanged (CallState state, String callId, String callerId)
         
        final void callFailed (String callId, CallError code)
         
        final void callFailed (String callId, CallError code, String message)
         
        final void callerIdReceived (String callId, String callerId)
         
        final void sendDTMFSucceeded (String callId)
         
        final void sendDTMFFailed (String callId, DTMFError code)
         
        final void sendDTMFFailed (String callId, DTMFError code, String message)
         
        final void deviceConfigurationUpdated (HashMap< CallingDeviceConfigurationProperty, Boolean > configurationMap)
         
        final String createCallId ()
         
        -

        Detailed Description

        -

        PhoneCallController should be extended to allow a user to use Alexa to interact with a calling device such as a connected mobile phone. It provides interfaces for controlling inbound and outbound calls and for notifying the Engine of the state of a call session and the state of platform connection to a calling device.

        -

        The platform implementation is responsible for managing the lifecycle and user experience of a call session and connection to the calling device.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ dial()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.phonecontrol.PhoneCallController.dial (String payload)
        -
        -

        Notifies the platform implementation to initiate an outgoing phone call to the destination address

        -
        Parameters
        - - -
        payloadDetails of the dial request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}",
        "callee": {
        "details": "{{STRING}}",
        "defaultContactAddress": {
        "protocol": "{{STRING}}",
        "format": "{{STRING}}",
        "value": "{{STRING}}"
        },
        "alternativeContactAddresses": [{
        "protocol": "{{STRING}}",
        "format": "{{STRING}}",
        "value": {{STRING}}
        }]
        },
        }
        }
          -
        • callId (required): A unique identifier for the call
        • -
        • callee (required): The destination of the outgoing call
        • -
        • callee.details (optional): Descriptive information about the callee
        • -
        • callee.defaultContactAddress (required): The default address to use for calling the callee
        • -
        • callee.alternativeContactAddresses (optional): An array of alternate addresses for the callee
        • -
        • address.protocol (required): The protocol for this address of the callee. One of PSTN, SIP, H.323
        • -
        • address.format (optional): The format for this address of the callee. One of E.164, E.163, E.123, MICROSOFT, DIN5008, RAW
        • -
        • address.value (required): The address of the callee.
        • -
        -
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call
        - -
        -
        - -

        ◆ redial()

        - -
        -
        - - - - - - - - -
        boolean com.amazon.aace.phonecontrol.PhoneCallController.redial (String payload)
        -
        -

        Notifies the platform implementation to redial the last called phone number.

        -

        After returning true, if no stored number is available to be redialed, PhoneCallController::callFailed with CallError::NO_NUMBER_FOR_REDIAL should be called.

        -
        Parameters
        - - -
        payloadDetails of the redial request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}"
        }
          -
        • callId (required): A unique identifier for the call
        • -
        -
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call
        - -
        -
        - -

        ◆ answer()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.phonecontrol.PhoneCallController.answer (String payload)
        -
        -

        Notifies the platform implementation to answer an inbound call

        -
        Parameters
        - - -
        payloadDetails of the answer request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}",
        }
          -
        • callId (required): The unique identifier for the call to answer
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ stop()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.phonecontrol.PhoneCallController.stop (String payload)
        -
        -

        Notifies the platform implementation to end an ongoing call or stop inbound or outbound call setup

        -
        Parameters
        - - -
        payloadDetails of the stop request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}"
        }
          -
        • callId (required): The unique identifier for the call to be stopped
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ sendDTMF()

        - -
        -
        - - - - - - - - -
        void com.amazon.aace.phonecontrol.PhoneCallController.sendDTMF (String payload)
        -
        -

        Notifies the platform implementation to send a DTMF signal to the calling device

        -
        Parameters
        - - -
        payloadDetails of the DTMF request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}",
        "signal": "{{STRING}}"
        }
          -
        • callId (required): The unique identifier for the call
        • -
        • signal (required): The DTMF string to be sent to the calling device associated with the callId
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ connectionStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.connectionStateChanged (ConnectionState state)
        -
        -protected
        -
        -

        Notifies the Engine of a change in connection to a calling device

        -
        Parameters
        - - -
        stateThe state of connection to a calling device
        -
        -
        - -
        -
        - -

        ◆ callStateChanged() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.callStateChanged (CallState state,
        String callId 
        )
        -
        -protected
        -
        -

        Notifies the Engine of a change in the state of an ongoing call

        -
        Parameters
        - - - -
        stateThe state of the call
        callIdThe unique identifier associated with the call
        -
        -
        - -
        -
        - -

        ◆ callStateChanged() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.callStateChanged (CallState state,
        String callId,
        String callerId 
        )
        -
        -protected
        -
        -

        Notifies the Engine of a change in the state of an ongoing call

        -
        Parameters
        - - - - -
        stateThe state of the call
        callIdThe unique identifier associated with the call
        callerIdThe identifier for a contact. May be included for CallState::CALL_RECEIVED
        -
        -
        - -
        -
        - -

        ◆ callFailed() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.callFailed (String callId,
        CallError code 
        )
        -
        -protected
        -
        -

        Notifies the Engine of an error related to a call

        -
        Parameters
        - - - -
        callIdThe unique identifier for the call associated with the error
        codeThe error type
        -
        -
        - -
        -
        - -

        ◆ callFailed() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.callFailed (String callId,
        CallError code,
        String message 
        )
        -
        -protected
        -
        -

        Notifies the Engine of an error related to a call

        -
        Parameters
        - - - - -
        callIdThe unique identifier for the call associated with the error
        codeThe error type
        messageA description of the error
        -
        -
        - -
        -
        - -

        ◆ callerIdReceived()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.callerIdReceived (String callId,
        String callerId 
        )
        -
        -protected
        -
        -

        Notifies the Engine that a caller id was received for an inbound call

        -
        Parameters
        - - - -
        callIdThe unique identifier for the call associated with the callId
        callerIdThe caller's identifier or phone number
        -
        -
        - -
        -
        - -

        ◆ sendDTMFSucceeded()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.sendDTMFSucceeded (String callId)
        -
        -protected
        -
        -

        Notifies the Engine that sending the DTMF signal succeeded.

        -
        Parameters
        - - -
        callIdThe unique identifier for the associated call
        -
        -
        -
        See also
        PhoneCallController::sendDTMF
        - -
        -
        - -

        ◆ sendDTMFFailed() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.sendDTMFFailed (String callId,
        DTMFError code 
        )
        -
        -protected
        -
        -

        Notifies the Engine that the DTMF signal could not be delivered to the remote party

        -
        Parameters
        - - - -
        callIdThe unique identifier for the associated call
        codeThe error type
        -
        -
        -
        See also
        PhoneCallController::sendDTMF
        - -
        -
        - -

        ◆ sendDTMFFailed() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.sendDTMFFailed (String callId,
        DTMFError code,
        String message 
        )
        -
        -protected
        -
        -

        Notifies the Engine that the DTMF signal could not be delivered to the remote party

        -
        Parameters
        - - - - -
        callIdThe unique identifier for the associated call
        codeThe error type
        messageA description of the error
        -
        -
        -
        See also
        PhoneCallController::sendDTMF
        - -
        -
        - -

        ◆ deviceConfigurationUpdated()

        - -
        -
        - - - - - -
        - - - - - - - - -
        final void com.amazon.aace.phonecontrol.PhoneCallController.deviceConfigurationUpdated (HashMap< CallingDeviceConfigurationProperty, Boolean > configurationMap)
        -
        -protected
        -
        -

        Notifies the Engine of the calling feature configuration of the connected calling device. The configuration data may change if, for example, the connection mechanism to the calling device changes. The provided configuration will override the default or previous configuration.

        -

        See PhoneCallController::CallingDeviceConfigurationProperty for a description of each configurable feature

        -
        Parameters
        - - -
        configurationMapA map of configuration properties to the boolean state of the properties
        -
        -
        - -
        -
        - -

        ◆ createCallId()

        - -
        -
        - - - - - -
        - - - - - - - -
        final String com.amazon.aace.phonecontrol.PhoneCallController.createCallId ()
        -
        -protected
        -
        -

        Generates a unique identifier for a call

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager-members.html deleted file mode 100644 index 6ce4a0bb7..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.propertyManager.PropertyManager Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.propertyManager.PropertyManager, including all inherited members.

        - - - - - -
        getProperty(String name)com.amazon.aace.propertyManager.PropertyManager
        propertyChanged(String name, String newValue)com.amazon.aace.propertyManager.PropertyManager
        propertyStateChanged(String name, String value, PropertyState state)com.amazon.aace.propertyManager.PropertyManager
        setProperty(String name, String value)com.amazon.aace.propertyManager.PropertyManager
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html deleted file mode 100644 index 19fdce7f3..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.propertyManager.PropertyManager Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.propertyManager.PropertyManager Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        enum  PropertyState
         
        - - - - - - - - - -

        -Public Member Functions

        final boolean setProperty (String name, String value)
         
        void propertyStateChanged (String name, String value, PropertyState state)
         
        final String getProperty (String name)
         
        void propertyChanged (String name, String newValue)
         
        -

        Detailed Description

        -

        PropertyManager should be extended to set and retrieve Engine property settings and be notified of property changes.

        -
        See also
        com.amazon.aace.alexa.AlexaProperties.java
        -
        -com.amazon.aace.alexa.CoreProperties.java
        -
        -com.amazon.aace.alexa.NetworkProperties.java
        -
        -com.amazon.aace.alexa.VehicleProperties.java
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ setProperty()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        final boolean com.amazon.aace.propertyManager.PropertyManager.setProperty (String name,
        String value 
        )
        -
        -

        Sets a property value in the Engine. setProperty() is an asynchronous operation and the Engine will call propertyStateChanged() with the status when it is completed.

        -
        Parameters
        - - - -
        nameThe name used by the Engine to identify the property. The property name must be one of the property constants recognized by the Engine, e.g. the properties in com.amazon.aace.alexa.AlexaProperties.java
        valueThe property setting
        -
        -
        -
        Returns
        true if the property value was updated or set to the current setting, else false if an error occurred.
        - -
        -
        - -

        ◆ propertyStateChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.propertyManager.PropertyManager.propertyStateChanged (String name,
        String value,
        PropertyState state 
        )
        -
        -

        Notifies the platform implementation of the status of a property change after a call to setProperty().

        -
        Parameters
        - - - - -
        nameThe name used by the Engine to identify the property.
        valueThe property value.
        stateThe state of the property change.
        -
        -
        - -
        -
        - -

        ◆ getProperty()

        - -
        -
        - - - - - - - - -
        final String com.amazon.aace.propertyManager.PropertyManager.getProperty (String name)
        -
        -

        Retrieves the setting for the property identified by name from the Engine

        -
        Parameters
        - - -
        nameThe name used by the Engine to identify the property. The property name must be one of the property constants recognized by the Engine, e.g. the properties in com.amazon.aace.alexa.AlexaProperties.java
        -
        -
        -
        Returns
        The property value as a string, or an empty string if the property value was not found
        - -
        -
        - -

        ◆ propertyChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.propertyManager.PropertyManager.propertyChanged (String name,
        String newValue 
        )
        -
        -

        Notifies the platform implementation of a property setting change in the Engine.

        Note
        This will not be called if the property setting change was initiated by PropertyManager.setProperty()
        -
        Parameters
        - - - -
        nameThe name used by the Engine to identify the property.
        newValueThe new value of the property
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration-members.html deleted file mode 100644 index 7421b55b3..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.storage.config.StorageConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.storage.config.StorageConfiguration, including all inherited members.

        - - -
        createLocalStorageConfig(final String localStoragePath)com.amazon.aace.storage.config.StorageConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html deleted file mode 100644 index 04552a864..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.storage.config.StorageConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.storage.config.StorageConfiguration Class Reference
        -
        -
        - - - - -

        -Static Public Member Functions

        static EngineConfiguration createLocalStorageConfig (final String localStoragePath)
         
        -

        Detailed Description

        -

        The StorageConfiguration class is a factory interface for creating Storage service configuration objects.

        -

        Member Function Documentation

        - -

        ◆ createLocalStorageConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.storage.config.StorageConfiguration.createLocalStorageConfig (final String localStoragePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate storage configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.storage": {
        "localStoragePath": "<LOCAL_STORAGE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        [in]localStoragePathThe file path to the local storage data file
        -
        -
        -

        The database will be created on initialization if it does not already exist.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech-members.html deleted file mode 100644 index 7434c49fa..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.textToSpeech.TextToSpeech Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.textToSpeech.TextToSpeech, including all inherited members.

        - - - - - - -
        capabilitiesReceived(String requestId, String capabilities)com.amazon.aace.textToSpeech.TextToSpeech
        getCapabilities(String requestId, String provider)com.amazon.aace.textToSpeech.TextToSpeechprotected
        prepareSpeech(String speechId, String text, String provider, String options)com.amazon.aace.textToSpeech.TextToSpeechprotected
        prepareSpeechCompleted(String speechId, AudioStream preparedAudio, String metadata)com.amazon.aace.textToSpeech.TextToSpeech
        prepareSpeechFailed(String speechId, String reason)com.amazon.aace.textToSpeech.TextToSpeech
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html deleted file mode 100644 index 3035eb79b..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html +++ /dev/null @@ -1,332 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.textToSpeech.TextToSpeech Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.textToSpeech.TextToSpeech Class Referenceabstract
        -
        -
        - - - - - - - - -

        -Public Member Functions

        void prepareSpeechCompleted (String speechId, AudioStream preparedAudio, String metadata)
         
        void prepareSpeechFailed (String speechId, String reason)
         
        void capabilitiesReceived (String requestId, String capabilities)
         
        - - - - - -

        -Protected Member Functions

        final boolean prepareSpeech (String speechId, String text, String provider, String options)
         
        final boolean getCapabilities (String requestId, String provider)
         
        -

        Detailed Description

        -

        The TextToSpeech platform interface should be extended to allow the platform to synthesize Alexa and non-Alexa speech using a text or a SSML document.

        -

        The platform implementation is responsible for making requests for speech synthesis and requesting capabilities of any TextToSpeech provider. The platform should also handle callbacks for each prepareSpeech() and getCapabilities() requests.

        -
        Note
        The TextToSpeech platform is not responsible for the playback of the synthesized speech.
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ prepareSpeechCompleted()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.textToSpeech.TextToSpeech.prepareSpeechCompleted (String speechId,
        AudioStream preparedAudio,
        String metadata 
        )
        -
        -

        Notifies the platform implementation that the prepareSpeech() operation of speech asset with speechId was successful.

        -
        Parameters
        - - - - -
        speechIdThe unique identifier of the speech asset.
        preparedAudioThe audio asset.
        metadataThe metadata of the speech asset.
        -
        -
        -

        Refer to the Text to Speech provider module documentation for complete details of the metadata schema.

        - -
        -
        - -

        ◆ prepareSpeechFailed()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.textToSpeech.TextToSpeech.prepareSpeechFailed (String speechId,
        String reason 
        )
        -
        -

        Notifies the platform implementation that the prepareSpeech() operation for the speech asset with speechId failed.

        -
        Parameters
        - - - -
        speechIdThe unique identifier of the speech asset.
        reasonThe reason for the failure.
        -
        -
        -

        Refer to the Text to Speech provider module documentation for complete details of the error responses.

        - -
        -
        - -

        ◆ capabilitiesReceived()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void com.amazon.aace.textToSpeech.TextToSpeech.capabilitiesReceived (String requestId,
        String capabilities 
        )
        -
        -

        Notifies the platform implementation of a Text to Speech provider's capabilities. The requestId corresponds to the ID from the original getCapabilities() request.

        -
        Parameters
        - - - -
        capabilitiesThe capabilities corresponding to a Text to Speech provider.
        requestIdThe unique identifier for the original getCapabilities() request.
        -
        -
        -

        Refer to the Text to Speech provider module documentation for complete details of the capabilities payload.

        - -
        -
        - -

        ◆ prepareSpeech()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        final boolean com.amazon.aace.textToSpeech.TextToSpeech.prepareSpeech (String speechId,
        String text,
        String provider,
        String options 
        )
        -
        -protected
        -
        -

        Notifies the Engine to prepare a speech asset with speechId and text. This is an asynchronous call. The platform is notified about the result of this operation through the prepareSpeechCompleted() or prepareSpeechFailed() callback.

        -
        Parameters
        - - - - - -
        speechIdThe unique identifier of the speech asset.
        textThe text in plain or SSML format.
        providerThe Text To Speech provider to be used to generate the speech asset. This parameter should be "text-to-speech-provider" since there is only one provider in Auto SDK.
        optionsAdditional options for the speech synthesis request. Default value is empty string which generates speech in Alexa's voice. This parameter need not be specified if the speech synthesis is expected to be in Alexa's voice
        -
        -
        -

        Sample options payload :

        )
        {
        "requestPayload" : {
        // Payload defined by the Text To Speech provider
        }
        }

        Refer to the Text to Speech provider module documentation for complete details of the requestPayload schema.

        Returns
        true if the request was successful, else false if an error occurred.
        - -
        -
        - -

        ◆ getCapabilities()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        final boolean com.amazon.aace.textToSpeech.TextToSpeech.getCapabilities (String requestId,
        String provider 
        )
        -
        -protected
        -
        -

        Retrieves the capabilities of the provider.

        -

        This is an asynchronous call. The result of the operation is provided by the capabilitiesReceived() callback.

        Parameters
        - - - -
        providerThe unique identifier of the provider. This parameter should be "text-to-speech-provider" since there is only one provider in Auto SDK.
        requestIdThe unique identifier for this request.
        -
        -
        -
        Returns
        true if the request was successful, else false if an error occurred.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html deleted file mode 100644 index 238e9a29c..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.vehicle.config.VehicleConfiguration Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.vehicle.config.VehicleConfiguration, including all inherited members.

        - - - -
        createOperatingCountryConfig(final String operatingCountry)com.amazon.aace.vehicle.config.VehicleConfigurationstatic
        createVehicleInfoConfig(final VehicleProperty[] propertyList)com.amazon.aace.vehicle.config.VehicleConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html deleted file mode 100644 index d13cbc6d8..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.vehicle.config.VehicleConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.vehicle.config.VehicleConfiguration Class Reference
        -
        -
        - - - - -

        -Classes

        enum  VehiclePropertyType
         
        - - - - - -

        -Static Public Member Functions

        static EngineConfiguration createVehicleInfoConfig (final VehicleProperty[] propertyList)
         
        static EngineConfiguration createOperatingCountryConfig (final String operatingCountry)
         
        -

        Detailed Description

        -

        The VehicleConfiguration class is a factory interface for creating "aace.vehicle" configuration objects.

        -

        Member Function Documentation

        - -

        ◆ createVehicleInfoConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.vehicle.config.VehicleConfiguration.createVehicleInfoConfig (final VehicleProperty [] propertyList)
        -
        -static
        -
        -

        Factory method used to programmatically generate "aace.vehicle" vehicle info configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.vehicle":
        {
        "info": {
        "make": "<MAKE>",
        "model": "<MODEL>",
        "year": "<YEAR>",
        "trim": "<TRIM>",
        "geography": "<GEOGRAPHY>",
        "version": "<SOFTWARE_VERSION>",
        "os": "<OPERATING_SYSTEM>",
        "arch": "<HARDWARE_ARCH>",
        "language": "<LANGUAGE>",
        "microphone": "<MICROPHONE>",
        "vehicleIdentifier": "<VEHICLE_IDENTIFIER>",
        "engineType": "<ENGINE_TYPE>",
        "rseEmbeddedFireTvs": "<RSE_EMBEDDED_FIRETVS>"
        }
        }
        }
        Parameters
        - - -
        propertyListA list of VehicleProperty type and value pairs
        -
        -
        - -
        -
        - -

        ◆ createOperatingCountryConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static EngineConfiguration com.amazon.aace.vehicle.config.VehicleConfiguration.createOperatingCountryConfig (final String operatingCountry)
        -
        -static
        -
        -

        Factory method used to programmatically generate vehicle operating country configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.vehicle": {
        "operatingCountry": "<COUNTRY>"
        }
        }
        Parameters
        - - -
        operatingCountryA 2-letter ISO country code
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test-members.html deleted file mode 100644 index 648ad763d..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.maccandroid.ExampleUnitTest Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.maccandroid.ExampleUnitTest, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test.html deleted file mode 100644 index 5e53b9545..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.maccandroid.ExampleUnitTest Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.maccandroid.ExampleUnitTest Class Reference
        -
        -
        -

        Detailed Description

        -

        Example local unit test, which will execute on the development machine (host).

        -
        See also
        Testing documentation
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client-members.html deleted file mode 100644 index c676aa911..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.maccandroid.MACCAndroidClient Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html deleted file mode 100644 index e5fa63031..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.maccandroid.MACCAndroidClient Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.maccandroid.MACCAndroidClient Class Reference
        -
        -
        - - - - - - - - - - -

        -Public Member Functions

        void initAndRunDiscovery ()
         
        void onAuthorizedPlayers (List< AuthorizedPlayer > players)
         
        void handleDirective (Directive directive)
         
        ExternalMediaPlayerState getState (String playerId)
         
        -

        Detailed Description

        -

        MACCAndroidClient implementation that can be instantiated to provide a client to connect to MACC compatible apps, and provides callbacks to assist with the initialization process and reporting of events and states

        -

        Member Function Documentation

        - -

        ◆ initAndRunDiscovery()

        - -
        -
        - - - - - - - -
        void com.amazon.maccandroid.MACCAndroidClient.initAndRunDiscovery ()
        -
        -

        runs a single instance of the discovery scan, usually good to run at startup

        - -
        -
        - -

        ◆ onAuthorizedPlayers()

        - -
        -
        - - - - - - - - -
        void com.amazon.maccandroid.MACCAndroidClient.onAuthorizedPlayers (List< AuthorizedPlayer > players)
        -
        -

        Call that is made to give a list of players that were authorized from the cloud

        Parameters
        - - -
        playerslist of authorized players
        -
        -
        - -
        -
        - -

        ◆ handleDirective()

        - -
        -
        - - - - - - - - -
        void com.amazon.maccandroid.MACCAndroidClient.handleDirective (Directive directive)
        -
        -

        handles a directive coming from AVS

        Parameters
        - - -
        directivedirective coming from AVS
        -
        -
        - -
        -
        - -

        ◆ getState()

        - -
        -
        - - - - - - - - -
        ExternalMediaPlayerState com.amazon.maccandroid.MACCAndroidClient.getState (String playerId)
        -
        -

        Gets the current state of a specific player. This state is ExternalMediaPlayerState

        Parameters
        - - -
        playerId
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info-members.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info-members.html deleted file mode 100644 index 4f7dbda48..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.maccandroid.model.PlayerPlaybackInfo Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.maccandroid.model.PlayerPlaybackInfo, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info.html b/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info.html deleted file mode 100644 index 2a8d02282..000000000 --- a/docs/docs/doxygen-docs/android/classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.maccandroid.model.PlayerPlaybackInfo Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.maccandroid.model.PlayerPlaybackInfo Class Reference
        -
        -
        -

        Detailed Description

        -

        Class representing the playback state (PlaybackStateCompat, MediaMetadataCompat, etc) of a player.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/classes.html b/docs/docs/doxygen-docs/android/classes.html deleted file mode 100644 index b4d793655..000000000 --- a/docs/docs/doxygen-docs/android/classes.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Index - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        -
        Class Index
        -
        -
        -
        a | c | d | e | f | g | i | l | m | n | p | r | s | t | v
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          a  
        -
        AASB (com.amazon.aace.aasb)   
        CarControlConfiguration.Action (com.amazon.aace.carControl)   
        APL.ActivityEvent (com.amazon.aace.apl)   
        AddressBook (com.amazon.aace.addressbook)   
        AddressBookConfiguration (com.amazon.aace.addressbook.config)   
        AddressBook.AddressBookType (com.amazon.aace.addressbook)   
        Alerts (com.amazon.aace.alexa)   
        Alerts.AlertState (com.amazon.aace.alexa)   
        AlexaClient (com.amazon.aace.alexa)   
        AlexaConfiguration (com.amazon.aace.alexa.config)   
        AlexaConnectivity (com.amazon.aace.connectivity)   
        AlexaSpeaker (com.amazon.aace.alexa)   
        APL (com.amazon.aace.apl)   
        APLConfiguration (com.amazon.aace.apl.config)   
        AudioInputProvider (com.amazon.aace.audio)   
        AudioInputProvider.AudioInputType (com.amazon.aace.audio)   
        AudioOutput (com.amazon.aace.audio)   
        AudioOutputProvider (com.amazon.aace.audio)   
        AudioOutputProvider.AudioOutputType (com.amazon.aace.audio)   
        AudioPlayer (com.amazon.aace.alexa)   
        AuthProvider.AuthError (com.amazon.aace.alexa)   
        AlexaClient.AuthError (com.amazon.aace.alexa)   
        Authorization (com.amazon.aace.authorization)   
        Authorization.AuthorizationState (com.amazon.aace.authorization)   
        AuthProvider (com.amazon.aace.alexa)   
        AuthProvider.AuthState (com.amazon.aace.alexa)   
        AlexaClient.AuthState (com.amazon.aace.alexa)   
          c  
        -
        PhoneCallController.CallError (com.amazon.aace.phonecontrol)   
        PhoneCallController.CallingDeviceConfigurationProperty (com.amazon.aace.phonecontrol)   
        PhoneCallController.CallState (com.amazon.aace.phonecontrol)   
        CarControl (com.amazon.aace.carControl)   
        CarControlConfiguration (com.amazon.aace.carControl)   
        CBL (com.amazon.aace.cbl)   
        CBLConfiguration (com.amazon.aace.cbl.config)   
        CBL.CBLState (com.amazon.aace.cbl)   
        CBL.CBLStateChangedReason (com.amazon.aace.cbl)   
        AlexaClient.ConnectionChangedReason (com.amazon.aace.alexa)   
        Messaging.ConnectionState (com.amazon.aace.messaging)   
        GATTServer.ConnectionState (com.amazon.aace.bluetooth)   
        PhoneCallController.ConnectionState (com.amazon.aace.phonecontrol)   
        AlexaClient.ConnectionStatus (com.amazon.aace.alexa)   
        LocalMediaSource.ContentSelector (com.amazon.aace.alexa)   
        CustomDomain (com.amazon.aace.customDomain)   
          d  
        -
        DeviceSetup (com.amazon.aace.alexa)   
        DeviceUsage (com.amazon.aace.deviceUsage)   
        AlexaClient.DialogState (com.amazon.aace.alexa)   
        DoNotDisturb (com.amazon.aace.alexa)   
        PhoneCallController.DTMFError (com.amazon.aace.phonecontrol)   
          e  
        -
        AudioFormat.Encoding (com.amazon.aace.audio)   
        AudioStream.Encoding (com.amazon.aace.audio)   
        Engine (com.amazon.aace.core)   
        EngineConfiguration (com.amazon.aace.core.config)   
        EqualizerController.EqualizerBand (com.amazon.aace.alexa)   
        EqualizerController (com.amazon.aace.alexa)   
        Messaging.ErrorCode (com.amazon.aace.messaging)   
        ExampleUnitTest (com.amazon.maccandroid)   
        ExternalMediaAdapter (com.amazon.aace.alexa)   
          f  
        -
        ExternalMediaAdapter.Favorites (com.amazon.aace.alexa)   
        LocalMediaSource.Favorites (com.amazon.aace.alexa)   
        AudioOutput.FocusAction (com.amazon.aace.audio)   
        TemplateRuntime.FocusState (com.amazon.aace.alexa)   
          g  
        -
        GlobalPreset (com.amazon.aace.alexa)   
          i  
        -
        Notifications.IndicatorState (com.amazon.aace.alexa)   
        SpeechRecognizer.Initiator (com.amazon.aace.alexa)   
        MediaPlaybackRequestor.InvocationReason (com.amazon.aace.alexa)   
          l  
        -
        Logger.Level (com.amazon.aace.logger)   
        LocalMediaSource (com.amazon.aace.alexa)   
        Location (com.amazon.aace.location)   
        LocationProvider (com.amazon.aace.location)   
        LocationProvider.LocationServiceAccess (com.amazon.aace.location)   
        Logger (com.amazon.aace.logger)   
        LoggerConfiguration (com.amazon.aace.logger.config)   
          m  
        -
        MACCAndroidClient (com.amazon.maccandroid)   
        AudioOutput.MediaError (com.amazon.aace.audio)   
        MediaPlaybackRequestor (com.amazon.aace.alexa)   
        MediaPlaybackRequestor.MediaPlaybackRequestStatus (com.amazon.aace.alexa)   
        AudioOutput.MediaState (com.amazon.aace.audio)   
        LocalMediaSource.MediaType (com.amazon.aace.alexa)   
        ExternalMediaAdapter.MediaType (com.amazon.aace.alexa)   
        Messaging (com.amazon.aace.messaging)   
        AASBStream.Mode (com.amazon.aace.aasb)   
        MessageStream.Mode (com.amazon.aace.core)   
        AudioOutput.MutedState (com.amazon.aace.audio)   
          n  
        -
        Navigation (com.amazon.aace.navigation)   
        ExternalMediaAdapter.Navigation (com.amazon.aace.alexa)   
        NavigationConfiguration (com.amazon.aace.navigation.config)   
        NetworkInfoProvider (com.amazon.aace.network)   
        NetworkInfoProvider.NetworkStatus (com.amazon.aace.network)   
        Notifications (com.amazon.aace.alexa)   
          p  
        -
        Messaging.PermissionState (com.amazon.aace.messaging)   
        PhoneCallController (com.amazon.aace.phonecontrol)   
        PlatformInterface (com.amazon.aace.core)   
        PlaybackController.PlaybackButton (com.amazon.aace.alexa)   
        PlaybackController (com.amazon.aace.alexa)   
        PlaybackController.PlaybackToggle (com.amazon.aace.alexa)   
        ExternalMediaAdapter.PlayControlType (com.amazon.aace.alexa)   
        LocalMediaSource.PlayControlType (com.amazon.aace.alexa)   
        TemplateRuntime.PlayerActivity (com.amazon.aace.alexa)   
        AudioPlayer.PlayerActivity (com.amazon.aace.alexa)   
        PlayerPlaybackInfo (com.amazon.maccandroid.model)   
        PropertyManager (com.amazon.aace.propertyManager)   
        PropertyManager.PropertyState (com.amazon.aace.propertyManager)   
          r  
        -
        CustomDomain.ResultType (com.amazon.aace.customDomain)   
          s  
        -
        LocalMediaSource.Source (com.amazon.aace.alexa)   
        AlexaSpeaker.SpeakerType (com.amazon.aace.alexa)   
        SpeechRecognizer (com.amazon.aace.alexa)   
        SpeechSynthesizer (com.amazon.aace.alexa)   
        DeviceSetup.StatusCode (com.amazon.aace.alexa)   
        AlexaConnectivity.StatusCode (com.amazon.aace.connectivity)   
        StorageConfiguration (com.amazon.aace.storage.config)   
        LocalMediaSource.SupportedPlaybackOperation (com.amazon.aace.alexa)   
        ExternalMediaAdapter.SupportedPlaybackOperation (com.amazon.aace.alexa)   
          t  
        -
        TemplateRuntime (com.amazon.aace.alexa)   
        TextToSpeech (com.amazon.aace.textToSpeech)   
          v  
        -
        VehicleConfiguration (com.amazon.aace.vehicle.config)   
        VehicleConfiguration.VehiclePropertyType (com.amazon.aace.vehicle.config)   
        -
        a | c | d | e | f | g | i | l | m | n | p | r | s | t | v
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/closed.png b/docs/docs/doxygen-docs/android/closed.png deleted file mode 100644 index 98cc2c909..000000000 Binary files a/docs/docs/doxygen-docs/android/closed.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/deprecated.html b/docs/docs/doxygen-docs/android/deprecated.html deleted file mode 100644 index dc4e00815..000000000 --- a/docs/docs/doxygen-docs/android/deprecated.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - -Alexa Auto SDK: Deprecated List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - -
        -
        -
        -
        Deprecated List
        -
        -
        -
        -
        Class com.amazon.aace.addressbook.AddressBook
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.Alerts
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.AlexaClient
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.AlexaSpeaker
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.AudioPlayer
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.AuthProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member com.amazon.aace.alexa.AuthProvider.authFailure (String token)
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.alexa.AuthProvider.authStateChange (AuthState authState, AuthError authError)
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.alexa.AuthProvider.getAuthState ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.alexa.AuthProvider.getAuthToken ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.alexa.config.AlexaConfiguration.createSettingsConfig (final String databaseFilePath, final String locale)
        -
        Use AlexaConfiguration.createDeviceSettingsConfig().
        -
        Member com.amazon.aace.alexa.config.AlexaConfiguration.createSettingsConfig (String databaseFilePath)
        -
        Use AlexaConfiguration.createDeviceSettingsConfig().
        -
        Class com.amazon.aace.alexa.DeviceSetup
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.DoNotDisturb
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.EqualizerController
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.ExternalMediaAdapter
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.GlobalPreset
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member com.amazon.aace.alexa.GlobalPreset.setGlobalPreset (int preset)
        -
        Use LocalMediaSource class with DEFAULT source with LocalMediaSource::ContentSelector::PRESET instead Called after receiving a global preset play directive
        -
        Class com.amazon.aace.alexa.LocalMediaSource
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member com.amazon.aace.alexa.LocalMediaSource.play (ContentSelector selector, String payload)
        -
        Use play(ContentSelector selector, String payload, String sessionId) instead Called when the user first calls play for the local media via voice control. ( Currently this is not used in LocalMediaSource)
        -
        Member com.amazon.aace.alexa.LocalMediaSource.playerError (String errorName, long code, String description, boolean fatal)
        -
        This method will be removed very soon. Use playerError(String errorName, long code, String description, boolean fatal, String sessionId) instead Should be called on a local media source player error.
        -
        Member com.amazon.aace.alexa.LocalMediaSource.playerEvent (String eventName)
        -
        This method will be removed very soon. Use playerEvent(String eventName, String sessionId) instead Should be called on a local media source player event. This will sync the context with AVS.
        -
        Member com.amazon.aace.alexa.LocalMediaSource.setFocus (boolean focusAcquire)
        -
        Use the playerEvent(String eventName, String sessionId) instead with "playbackSessionStarted" and "playbackSessionEnded" events Should be called on local media source player events. This will switch the media focus to that context.
        -
        Member com.amazon.aace.alexa.LocalMediaSource.setFocus ()
        -
        Use the playerEvent(String eventName, String sessionId) instead with "playbackSessionStarted" and "playbackSessionEnded" events Overload of above for backward compatibility. Always acquires focus.
        -
        Class com.amazon.aace.alexa.Notifications
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.PlaybackController
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.SpeechRecognizer
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.SpeechSynthesizer
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.alexa.TemplateRuntime
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.apl.APL
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.audio.AudioInputProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.audio.AudioOutputProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.authorization.Authorization
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.carControl.CarControl
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member com.amazon.aace.carControl.CarControlConfiguration.addDefaultAssetsPath (String path)
        -
        -
        Class com.amazon.aace.cbl.CBL
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member com.amazon.aace.cbl.CBL.cancel ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.cbl.CBL.cblStateChanged (CBLState state, CBLStateChangedReason reason, String url, String code)
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.cbl.CBL.clearRefreshToken ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.cbl.CBL.getRefreshToken ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.cbl.CBL.reset ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.cbl.CBL.setRefreshToken (String refreshToken)
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.cbl.CBL.setUserProfile (String name, String email)
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.cbl.CBL.start ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member com.amazon.aace.cbl.config.CBLConfiguration.createCBLUserProfileConfig (final boolean enableUserProfile)
        -
        This method is deprecated, use createCBLConfig instead. Factory method used to programmatically generate cbl configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:
        -
        Class com.amazon.aace.connectivity.AlexaConnectivity
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.location.LocationProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.logger.Logger
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.messaging.Messaging
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.navigation.Navigation
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.network.NetworkInfoProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.phonecontrol.PhoneCallController
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.propertyManager.PropertyManager
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class com.amazon.aace.textToSpeech.TextToSpeech
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/doc.png b/docs/docs/doxygen-docs/android/doc.png deleted file mode 100644 index 17edabff9..000000000 Binary files a/docs/docs/doxygen-docs/android/doc.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/doxygen.css b/docs/docs/doxygen-docs/android/doxygen.css deleted file mode 100644 index 4f1ab9195..000000000 --- a/docs/docs/doxygen-docs/android/doxygen.css +++ /dev/null @@ -1,1596 +0,0 @@ -/* The standard CSS for doxygen 1.8.13 */ - -body, table, div, p, dl { - font: 400 14px/22px Roboto,sans-serif; -} - -p.reference, p.definition { - font: 400 14px/22px Roboto,sans-serif; -} - -/* @group Heading Levels */ - -h1.groupheader { - font-size: 150%; -} - -.title { - font: 400 14px/28px Roboto,sans-serif; - font-size: 150%; - font-weight: bold; - margin: 10px 2px; -} - -h2.groupheader { - border-bottom: 1px solid #879ECB; - color: #354C7B; - font-size: 150%; - font-weight: normal; - margin-top: 1.75em; - padding-top: 8px; - padding-bottom: 4px; - width: 100%; -} - -h3.groupheader { - font-size: 100%; -} - -h1, h2, h3, h4, h5, h6 { - -webkit-transition: text-shadow 0.5s linear; - -moz-transition: text-shadow 0.5s linear; - -ms-transition: text-shadow 0.5s linear; - -o-transition: text-shadow 0.5s linear; - transition: text-shadow 0.5s linear; - margin-right: 15px; -} - -h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { - text-shadow: 0 0 15px cyan; -} - -dt { - font-weight: bold; -} - -div.multicol { - -moz-column-gap: 1em; - -webkit-column-gap: 1em; - -moz-column-count: 3; - -webkit-column-count: 3; -} - -p.startli, p.startdd { - margin-top: 2px; -} - -p.starttd { - margin-top: 0px; -} - -p.endli { - margin-bottom: 0px; -} - -p.enddd { - margin-bottom: 4px; -} - -p.endtd { - margin-bottom: 2px; -} - -/* @end */ - -caption { - font-weight: bold; -} - -span.legend { - font-size: 70%; - text-align: center; -} - -h3.version { - font-size: 90%; - text-align: center; -} - -div.qindex, div.navtab{ - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; -} - -div.qindex, div.navpath { - width: 100%; - line-height: 140%; -} - -div.navtab { - margin-right: 15px; -} - -/* @group Link Styling */ - -a { - color: #3D578C; - font-weight: normal; - text-decoration: none; -} - -.contents a:visited { - color: #4665A2; -} - -a:hover { - text-decoration: underline; -} - -a.qindex { - font-weight: bold; -} - -a.qindexHL { - font-weight: bold; - background-color: #9CAFD4; - color: #ffffff; - border: 1px double #869DCA; -} - -.contents a.qindexHL:visited { - color: #ffffff; -} - -a.el { - font-weight: bold; -} - -a.elRef { -} - -a.code, a.code:visited, a.line, a.line:visited { - color: #4665A2; -} - -a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { - color: #4665A2; -} - -/* @end */ - -dl.el { - margin-left: -1cm; -} - -pre.fragment { - border: 1px solid #C4CFE5; - background-color: #FBFCFD; - padding: 4px 6px; - margin: 4px 8px 4px 2px; - overflow: auto; - word-wrap: break-word; - font-size: 9pt; - line-height: 125%; - font-family: monospace, fixed; - font-size: 105%; -} - -div.fragment { - padding: 0px; - margin: 4px 8px 4px 2px; - background-color: #FBFCFD; - border: 1px solid #C4CFE5; -} - -div.line { - font-family: monospace, fixed; - font-size: 13px; - min-height: 13px; - line-height: 1.0; - text-wrap: unrestricted; - white-space: -moz-pre-wrap; /* Moz */ - white-space: -pre-wrap; /* Opera 4-6 */ - white-space: -o-pre-wrap; /* Opera 7 */ - white-space: pre-wrap; /* CSS3 */ - word-wrap: break-word; /* IE 5.5+ */ - text-indent: -53px; - padding-left: 53px; - padding-bottom: 0px; - margin: 0px; - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -div.line:after { - content:"\000A"; - white-space: pre; -} - -div.line.glow { - background-color: cyan; - box-shadow: 0 0 10px cyan; -} - - -span.lineno { - padding-right: 4px; - text-align: right; - border-right: 2px solid #0F0; - background-color: #E8E8E8; - white-space: pre; -} -span.lineno a { - background-color: #D8D8D8; -} - -span.lineno a:hover { - background-color: #C8C8C8; -} - -.lineno { - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -div.ah, span.ah { - background-color: black; - font-weight: bold; - color: #ffffff; - margin-bottom: 3px; - margin-top: 3px; - padding: 0.2em; - border: solid thin #333; - border-radius: 0.5em; - -webkit-border-radius: .5em; - -moz-border-radius: .5em; - box-shadow: 2px 2px 3px #999; - -webkit-box-shadow: 2px 2px 3px #999; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); - background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); -} - -div.classindex ul { - list-style: none; - padding-left: 0; -} - -div.classindex span.ai { - display: inline-block; -} - -div.groupHeader { - margin-left: 16px; - margin-top: 12px; - font-weight: bold; -} - -div.groupText { - margin-left: 16px; - font-style: italic; -} - -body { - background-color: white; - color: black; - margin: 0; -} - -div.contents { - margin-top: 10px; - margin-left: 12px; - margin-right: 8px; -} - -td.indexkey { - background-color: #EBEFF6; - font-weight: bold; - border: 1px solid #C4CFE5; - margin: 2px 0px 2px 0; - padding: 2px 10px; - white-space: nowrap; - vertical-align: top; -} - -td.indexvalue { - background-color: #EBEFF6; - border: 1px solid #C4CFE5; - padding: 2px 10px; - margin: 2px 0px; -} - -tr.memlist { - background-color: #EEF1F7; -} - -p.formulaDsp { - text-align: center; -} - -img.formulaDsp { - -} - -img.formulaInl { - vertical-align: middle; -} - -div.center { - text-align: center; - margin-top: 0px; - margin-bottom: 0px; - padding: 0px; -} - -div.center img { - border: 0px; -} - -address.footer { - text-align: right; - padding-right: 12px; -} - -img.footer { - border: 0px; - vertical-align: middle; -} - -/* @group Code Colorization */ - -span.keyword { - color: #008000 -} - -span.keywordtype { - color: #604020 -} - -span.keywordflow { - color: #e08000 -} - -span.comment { - color: #800000 -} - -span.preprocessor { - color: #806020 -} - -span.stringliteral { - color: #002080 -} - -span.charliteral { - color: #008080 -} - -span.vhdldigit { - color: #ff00ff -} - -span.vhdlchar { - color: #000000 -} - -span.vhdlkeyword { - color: #700070 -} - -span.vhdllogic { - color: #ff0000 -} - -blockquote { - background-color: #F7F8FB; - border-left: 2px solid #9CAFD4; - margin: 0 24px 0 4px; - padding: 0 12px 0 16px; -} - -/* @end */ - -/* -.search { - color: #003399; - font-weight: bold; -} - -form.search { - margin-bottom: 0px; - margin-top: 0px; -} - -input.search { - font-size: 75%; - color: #000080; - font-weight: normal; - background-color: #e8eef2; -} -*/ - -td.tiny { - font-size: 75%; -} - -.dirtab { - padding: 4px; - border-collapse: collapse; - border: 1px solid #A3B4D7; -} - -th.dirtab { - background: #EBEFF6; - font-weight: bold; -} - -hr { - height: 0px; - border: none; - border-top: 1px solid #4A6AAA; -} - -hr.footer { - height: 1px; -} - -/* @group Member Descriptions */ - -table.memberdecls { - border-spacing: 0px; - padding: 0px; -} - -.memberdecls td, .fieldtable tr { - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -.memberdecls td.glow, .fieldtable tr.glow { - background-color: cyan; - box-shadow: 0 0 15px cyan; -} - -.mdescLeft, .mdescRight, -.memItemLeft, .memItemRight, -.memTemplItemLeft, .memTemplItemRight, .memTemplParams { - background-color: #F9FAFC; - border: none; - margin: 4px; - padding: 1px 0 0 8px; -} - -.mdescLeft, .mdescRight { - padding: 0px 8px 4px 8px; - color: #555; -} - -.memSeparator { - border-bottom: 1px solid #DEE4F0; - line-height: 1px; - margin: 0px; - padding: 0px; -} - -.memItemLeft, .memTemplItemLeft { - white-space: nowrap; -} - -.memItemRight { - width: 100%; -} - -.memTemplParams { - color: #4665A2; - white-space: nowrap; - font-size: 80%; -} - -/* @end */ - -/* @group Member Details */ - -/* Styles for detailed member documentation */ - -.memtitle { - padding: 8px; - border-top: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - margin-bottom: -1px; - background-image: url('nav_f.png'); - background-repeat: repeat-x; - background-color: #E2E8F2; - line-height: 1.25; - font-weight: 300; - float:left; -} - -.permalink -{ - font-size: 65%; - display: inline-block; - vertical-align: middle; -} - -.memtemplate { - font-size: 80%; - color: #4665A2; - font-weight: normal; - margin-left: 9px; -} - -.memnav { - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; - margin: 2px; - margin-right: 15px; - padding: 2px; -} - -.mempage { - width: 100%; -} - -.memitem { - padding: 0; - margin-bottom: 10px; - margin-right: 5px; - -webkit-transition: box-shadow 0.5s linear; - -moz-transition: box-shadow 0.5s linear; - -ms-transition: box-shadow 0.5s linear; - -o-transition: box-shadow 0.5s linear; - transition: box-shadow 0.5s linear; - display: table !important; - width: 100%; -} - -.memitem.glow { - box-shadow: 0 0 15px cyan; -} - -.memname { - font-weight: 400; - margin-left: 6px; -} - -.memname td { - vertical-align: bottom; -} - -.memproto, dl.reflist dt { - border-top: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 0px 6px 0px; - color: #253555; - font-weight: bold; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - background-color: #DFE5F1; - /* opera specific markup */ - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - border-top-right-radius: 4px; - /* firefox specific markup */ - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - -moz-border-radius-topright: 4px; - /* webkit specific markup */ - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - -webkit-border-top-right-radius: 4px; - -} - -.overload { - font-family: "courier new",courier,monospace; - font-size: 65%; -} - -.memdoc, dl.reflist dd { - border-bottom: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 10px 2px 10px; - background-color: #FBFCFD; - border-top-width: 0; - background-image:url('nav_g.png'); - background-repeat:repeat-x; - background-color: #FFFFFF; - /* opera specific markup */ - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - /* firefox specific markup */ - -moz-border-radius-bottomleft: 4px; - -moz-border-radius-bottomright: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - /* webkit specific markup */ - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -dl.reflist dt { - padding: 5px; -} - -dl.reflist dd { - margin: 0px 0px 10px 0px; - padding: 5px; -} - -.paramkey { - text-align: right; -} - -.paramtype { - white-space: nowrap; -} - -.paramname { - color: #602020; - white-space: nowrap; -} -.paramname em { - font-style: normal; -} -.paramname code { - line-height: 14px; -} - -.params, .retval, .exception, .tparams { - margin-left: 0px; - padding-left: 0px; -} - -.params .paramname, .retval .paramname { - font-weight: bold; - vertical-align: top; -} - -.params .paramtype { - font-style: italic; - vertical-align: top; -} - -.params .paramdir { - font-family: "courier new",courier,monospace; - vertical-align: top; -} - -table.mlabels { - border-spacing: 0px; -} - -td.mlabels-left { - width: 100%; - padding: 0px; -} - -td.mlabels-right { - vertical-align: bottom; - padding: 0px; - white-space: nowrap; -} - -span.mlabels { - margin-left: 8px; -} - -span.mlabel { - background-color: #728DC1; - border-top:1px solid #5373B4; - border-left:1px solid #5373B4; - border-right:1px solid #C4CFE5; - border-bottom:1px solid #C4CFE5; - text-shadow: none; - color: white; - margin-right: 4px; - padding: 2px 3px; - border-radius: 3px; - font-size: 7pt; - white-space: nowrap; - vertical-align: middle; -} - - - -/* @end */ - -/* these are for tree view inside a (index) page */ - -div.directory { - margin: 10px 0px; - border-top: 1px solid #9CAFD4; - border-bottom: 1px solid #9CAFD4; - width: 100%; -} - -.directory table { - border-collapse:collapse; -} - -.directory td { - margin: 0px; - padding: 0px; - vertical-align: top; -} - -.directory td.entry { - white-space: nowrap; - padding-right: 6px; - padding-top: 3px; -} - -.directory td.entry a { - outline:none; -} - -.directory td.entry a img { - border: none; -} - -.directory td.desc { - width: 100%; - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - border-left: 1px solid rgba(0,0,0,0.05); -} - -.directory tr.even { - padding-left: 6px; - background-color: #F7F8FB; -} - -.directory img { - vertical-align: -30%; -} - -.directory .levels { - white-space: nowrap; - width: 100%; - text-align: right; - font-size: 9pt; -} - -.directory .levels span { - cursor: pointer; - padding-left: 2px; - padding-right: 2px; - color: #3D578C; -} - -.arrow { - color: #9CAFD4; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: pointer; - font-size: 80%; - display: inline-block; - width: 16px; - height: 22px; -} - -.icon { - font-family: Arial, Helvetica; - font-weight: bold; - font-size: 12px; - height: 14px; - width: 16px; - display: inline-block; - background-color: #728DC1; - color: white; - text-align: center; - border-radius: 4px; - margin-left: 2px; - margin-right: 2px; -} - -.icona { - width: 24px; - height: 22px; - display: inline-block; -} - -.iconfopen { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderopen.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.iconfclosed { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderclosed.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.icondoc { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('doc.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -table.directory { - font: 400 14px Roboto,sans-serif; -} - -/* @end */ - -div.dynheader { - margin-top: 8px; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -address { - font-style: normal; - color: #2A3D61; -} - -table.doxtable caption { - caption-side: top; -} - -table.doxtable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.doxtable td, table.doxtable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.doxtable th { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -table.fieldtable { - /*width: 100%;*/ - margin-bottom: 10px; - border: 1px solid #A8B8D9; - border-spacing: 0px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); - box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); -} - -.fieldtable td, .fieldtable th { - padding: 3px 7px 2px; -} - -.fieldtable td.fieldtype, .fieldtable td.fieldname { - white-space: nowrap; - border-right: 1px solid #A8B8D9; - border-bottom: 1px solid #A8B8D9; - vertical-align: top; -} - -.fieldtable td.fieldname { - padding-top: 3px; -} - -.fieldtable td.fielddoc { - border-bottom: 1px solid #A8B8D9; - /*width: 100%;*/ -} - -.fieldtable td.fielddoc p:first-child { - margin-top: 0px; -} - -.fieldtable td.fielddoc p:last-child { - margin-bottom: 2px; -} - -.fieldtable tr:last-child td { - border-bottom: none; -} - -.fieldtable th { - background-image:url('nav_f.png'); - background-repeat:repeat-x; - background-color: #E2E8F2; - font-size: 90%; - color: #253555; - padding-bottom: 4px; - padding-top: 5px; - text-align:left; - font-weight: 400; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom: 1px solid #A8B8D9; -} - - -.tabsearch { - top: 0px; - left: 10px; - height: 36px; - background-image: url('tab_b.png'); - z-index: 101; - overflow: hidden; - font-size: 13px; -} - -.navpath ul -{ - font-size: 11px; - background-image:url('tab_b.png'); - background-repeat:repeat-x; - background-position: 0 -5px; - height:30px; - line-height:30px; - color:#8AA0CC; - border:solid 1px #C2CDE4; - overflow:hidden; - margin:0px; - padding:0px; -} - -.navpath li -{ - list-style-type:none; - float:left; - padding-left:10px; - padding-right:15px; - background-image:url('bc_s.png'); - background-repeat:no-repeat; - background-position:right; - color:#364D7C; -} - -.navpath li.navelem a -{ - height:32px; - display:block; - text-decoration: none; - outline: none; - color: #283A5D; - font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - text-decoration: none; -} - -.navpath li.navelem a:hover -{ - color:#6884BD; -} - -.navpath li.footer -{ - list-style-type:none; - float:right; - padding-left:10px; - padding-right:15px; - background-image:none; - background-repeat:no-repeat; - background-position:right; - color:#364D7C; - font-size: 8pt; -} - - -div.summary -{ - float: right; - font-size: 8pt; - padding-right: 5px; - width: 50%; - text-align: right; -} - -div.summary a -{ - white-space: nowrap; -} - -table.classindex -{ - margin: 10px; - white-space: nowrap; - margin-left: 3%; - margin-right: 3%; - width: 94%; - border: 0; - border-spacing: 0; - padding: 0; -} - -div.ingroups -{ - font-size: 8pt; - width: 50%; - text-align: left; -} - -div.ingroups a -{ - white-space: nowrap; -} - -div.header -{ - background-image:url('nav_h.png'); - background-repeat:repeat-x; - background-color: #F9FAFC; - margin: 0px; - border-bottom: 1px solid #C4CFE5; -} - -div.headertitle -{ - padding: 5px 5px 5px 10px; -} - -dl -{ - padding: 0 0 0 10px; -} - -/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ -dl.section -{ - margin-left: 0px; - padding-left: 0px; -} - -dl.note -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #D0C000; -} - -dl.warning, dl.attention -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #FF0000; -} - -dl.pre, dl.post, dl.invariant -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00D000; -} - -dl.deprecated -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #505050; -} - -dl.todo -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00C0E0; -} - -dl.test -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #3030E0; -} - -dl.bug -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #C08050; -} - -dl.section dd { - margin-bottom: 6px; -} - - -#projectlogo -{ - text-align: center; - vertical-align: bottom; - border-collapse: separate; -} - -#projectlogo img -{ - border: 0px none; -} - -#projectalign -{ - vertical-align: middle; -} - -#projectname -{ - font: 300% Tahoma, Arial,sans-serif; - margin: 0px; - padding: 2px 0px; -} - -#projectbrief -{ - font: 120% Tahoma, Arial,sans-serif; - margin: 0px; - padding: 0px; -} - -#projectnumber -{ - font: 50% Tahoma, Arial,sans-serif; - margin: 0px; - padding: 0px; -} - -#titlearea -{ - padding: 0px; - margin: 0px; - width: 100%; - border-bottom: 1px solid #5373B4; -} - -.image -{ - text-align: center; -} - -.dotgraph -{ - text-align: center; -} - -.mscgraph -{ - text-align: center; -} - -.plantumlgraph -{ - text-align: center; -} - -.diagraph -{ - text-align: center; -} - -.caption -{ - font-weight: bold; -} - -div.zoom -{ - border: 1px solid #90A5CE; -} - -dl.citelist { - margin-bottom:50px; -} - -dl.citelist dt { - color:#334975; - float:left; - font-weight:bold; - margin-right:10px; - padding:5px; -} - -dl.citelist dd { - margin:2px 0; - padding:5px 0; -} - -div.toc { - padding: 14px 25px; - background-color: #F4F6FA; - border: 1px solid #D8DFEE; - border-radius: 7px 7px 7px 7px; - float: right; - height: auto; - margin: 0 8px 10px 10px; - width: 200px; -} - -div.toc li { - background: url("bdwn.png") no-repeat scroll 0 5px transparent; - font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; - margin-top: 5px; - padding-left: 10px; - padding-top: 2px; -} - -div.toc h3 { - font: bold 12px/1.2 Arial,FreeSans,sans-serif; - color: #4665A2; - border-bottom: 0 none; - margin: 0; -} - -div.toc ul { - list-style: none outside none; - border: medium none; - padding: 0px; -} - -div.toc li.level1 { - margin-left: 0px; -} - -div.toc li.level2 { - margin-left: 15px; -} - -div.toc li.level3 { - margin-left: 30px; -} - -div.toc li.level4 { - margin-left: 45px; -} - -.inherit_header { - font-weight: bold; - color: gray; - cursor: pointer; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.inherit_header td { - padding: 6px 0px 2px 5px; -} - -.inherit { - display: none; -} - -tr.heading h2 { - margin-top: 12px; - margin-bottom: 4px; -} - -/* tooltip related style info */ - -.ttc { - position: absolute; - display: none; -} - -#powerTip { - cursor: default; - white-space: nowrap; - background-color: white; - border: 1px solid gray; - border-radius: 4px 4px 4px 4px; - box-shadow: 1px 1px 7px gray; - display: none; - font-size: smaller; - max-width: 80%; - opacity: 0.9; - padding: 1ex 1em 1em; - position: absolute; - z-index: 2147483647; -} - -#powerTip div.ttdoc { - color: grey; - font-style: italic; -} - -#powerTip div.ttname a { - font-weight: bold; -} - -#powerTip div.ttname { - font-weight: bold; -} - -#powerTip div.ttdeci { - color: #006318; -} - -#powerTip div { - margin: 0px; - padding: 0px; - font: 12px/16px Roboto,sans-serif; -} - -#powerTip:before, #powerTip:after { - content: ""; - position: absolute; - margin: 0px; -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.s:after, #powerTip.s:before, -#powerTip.w:after, #powerTip.w:before, -#powerTip.e:after, #powerTip.e:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.nw:after, #powerTip.nw:before, -#powerTip.sw:after, #powerTip.sw:before { - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; -} - -#powerTip.n:after, #powerTip.s:after, -#powerTip.w:after, #powerTip.e:after, -#powerTip.nw:after, #powerTip.ne:after, -#powerTip.sw:after, #powerTip.se:after { - border-color: rgba(255, 255, 255, 0); -} - -#powerTip.n:before, #powerTip.s:before, -#powerTip.w:before, #powerTip.e:before, -#powerTip.nw:before, #powerTip.ne:before, -#powerTip.sw:before, #powerTip.se:before { - border-color: rgba(128, 128, 128, 0); -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.nw:after, #powerTip.nw:before { - top: 100%; -} - -#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { - border-top-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} -#powerTip.n:before { - border-top-color: #808080; - border-width: 11px; - margin: 0px -11px; -} -#powerTip.n:after, #powerTip.n:before { - left: 50%; -} - -#powerTip.nw:after, #powerTip.nw:before { - right: 14px; -} - -#powerTip.ne:after, #powerTip.ne:before { - left: 14px; -} - -#powerTip.s:after, #powerTip.s:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.sw:after, #powerTip.sw:before { - bottom: 100%; -} - -#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { - border-bottom-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} - -#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { - border-bottom-color: #808080; - border-width: 11px; - margin: 0px -11px; -} - -#powerTip.s:after, #powerTip.s:before { - left: 50%; -} - -#powerTip.sw:after, #powerTip.sw:before { - right: 14px; -} - -#powerTip.se:after, #powerTip.se:before { - left: 14px; -} - -#powerTip.e:after, #powerTip.e:before { - left: 100%; -} -#powerTip.e:after { - border-left-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.e:before { - border-left-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -#powerTip.w:after, #powerTip.w:before { - right: 100%; -} -#powerTip.w:after { - border-right-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.w:before { - border-right-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -@media print -{ - #top { display: none; } - #side-nav { display: none; } - #nav-path { display: none; } - body { overflow:visible; } - h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } - .summary { display: none; } - .memitem { page-break-inside: avoid; } - #doc-content - { - margin-left:0 !important; - height:auto !important; - width:auto !important; - overflow:inherit; - display:inline; - } -} - -/* @group Markdown */ - -/* -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTableHead tr { -} - -table.markdownTableBodyLeft td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -th.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft { - text-align: left -} - -th.markdownTableHeadRight { - text-align: right -} - -th.markdownTableHeadCenter { - text-align: center -} -*/ - -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTable tr { -} - -th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft, td.markdownTableBodyLeft { - text-align: left -} - -th.markdownTableHeadRight, td.markdownTableBodyRight { - text-align: right -} - -th.markdownTableHeadCenter, td.markdownTableBodyCenter { - text-align: center -} - - -/* @end */ diff --git a/docs/docs/doxygen-docs/android/doxygen.png b/docs/docs/doxygen-docs/android/doxygen.png deleted file mode 100644 index 3ff17d807..000000000 Binary files a/docs/docs/doxygen-docs/android/doxygen.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/dynsections.js b/docs/docs/doxygen-docs/android/dynsections.js deleted file mode 100644 index 85e183690..000000000 --- a/docs/docs/doxygen-docs/android/dynsections.js +++ /dev/null @@ -1,97 +0,0 @@ -function toggleVisibility(linkObj) -{ - var base = $(linkObj).attr('id'); - var summary = $('#'+base+'-summary'); - var content = $('#'+base+'-content'); - var trigger = $('#'+base+'-trigger'); - var src=$(trigger).attr('src'); - if (content.is(':visible')===true) { - content.hide(); - summary.show(); - $(linkObj).addClass('closed').removeClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); - } else { - content.show(); - summary.hide(); - $(linkObj).removeClass('closed').addClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); - } - return false; -} - -function updateStripes() -{ - $('table.directory tr'). - removeClass('even').filter(':visible:even').addClass('even'); -} - -function toggleLevel(level) -{ - $('table.directory tr').each(function() { - var l = this.id.split('_').length-1; - var i = $('#img'+this.id.substring(3)); - var a = $('#arr'+this.id.substring(3)); - if (l - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.aasb.AASBStream.Mode Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.aasb.AASBStream.Mode, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode.html deleted file mode 100644 index 748caf5cf..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.aasb.AASBStream.Mode Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.aasb.AASBStream.Mode Enum Reference
        -
        -
        - -

        An enumeration representing the stream operation mode. - More...

        -

        Detailed Description

        -

        An enumeration representing the stream operation mode.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type-members.html deleted file mode 100644 index 236f889f1..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.addressbook.AddressBook.AddressBookType Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html deleted file mode 100644 index bd4558479..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.addressbook.AddressBook.AddressBookType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.addressbook.AddressBook.AddressBookType Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         CONTACT =("CONTACT")
         
         NAVIGATION =("NAVIGATION")
         
        -

        Detailed Description

        -

        Describes the address book type.

        See also
        aace::addressBook::AddressBook::AddressBookType
        -

        Member Data Documentation

        - -

        ◆ CONTACT

        - -
        -
        - - - - -
        com.amazon.aace.addressbook.AddressBook.AddressBookType.CONTACT =("CONTACT")
        -
        -

        Contacts

        - -
        -
        - -

        ◆ NAVIGATION

        - -
        -
        - - - - -
        com.amazon.aace.addressbook.AddressBook.AddressBookType.NAVIGATION =("NAVIGATION")
        -
        -

        Navigation

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state-members.html deleted file mode 100644 index 1715f4715..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state-members.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.Alerts.AlertState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html deleted file mode 100644 index e45d9f7ba..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html +++ /dev/null @@ -1,279 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.Alerts.AlertState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.Alerts.AlertState Enum Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

         READY
         
         STARTED
         
         STOPPED
         
         SNOOZED
         
         COMPLETED
         
         PAST_DUE
         
         FOCUS_ENTERED_FOREGROUND
         
         FOCUS_ENTERED_BACKGROUND
         
         ERROR
         
         DELETED
         
         SCHEDULED_FOR_LATER
         
        -

        Detailed Description

        -

        Specifies the state of an alert

        -

        Member Data Documentation

        - -

        ◆ READY

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.READY
        -
        -

        The alert is ready to activate and is waiting for channel focus.

        - -
        -
        - -

        ◆ STARTED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.STARTED
        -
        -

        The alert is activated, and rendering is perceivable by the user.

        - -
        -
        - -

        ◆ STOPPED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.STOPPED
        -
        -

        The alert has stopped due to user or system intervention.

        - -
        -
        - -

        ◆ SNOOZED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.SNOOZED
        -
        -

        The alert is active but has been snoozed.

        - -
        -
        - -

        ◆ COMPLETED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.COMPLETED
        -
        -

        The alert has completed on its own, without user interaction.

        - -
        -
        - -

        ◆ PAST_DUE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.PAST_DUE
        -
        -

        The alert has expired and will not be rendered.

        - -
        -
        - -

        ◆ FOCUS_ENTERED_FOREGROUND

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.FOCUS_ENTERED_FOREGROUND
        -
        -

        The alert has entered the foreground.

        - -
        -
        - -

        ◆ FOCUS_ENTERED_BACKGROUND

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.FOCUS_ENTERED_BACKGROUND
        -
        -

        The alert has entered the background.

        - -
        -
        - -

        ◆ ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.ERROR
        -
        -

        The alert has encountered an error.

        - -
        -
        - -

        ◆ DELETED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.DELETED
        -
        -

        The alert has been deleted.

        - -
        -
        - -

        ◆ SCHEDULED_FOR_LATER

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Alerts.AlertState.SCHEDULED_FOR_LATER
        -
        -

        The alert has been scheduled to trigger at a future time.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error-members.html deleted file mode 100644 index d8dc1547b..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error-members.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AlexaClient.AuthError Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html deleted file mode 100644 index b97b6ba48..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AlexaClient.AuthError Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AlexaClient.AuthError Enum Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

         NO_ERROR
         
         UNKNOWN_ERROR
         
         AUTHORIZATION_FAILED
         
         UNAUTHORIZED_CLIENT
         
         SERVER_ERROR
         
         INVALID_REQUEST
         
         INVALID_VALUE
         
         AUTHORIZATION_EXPIRED
         
         UNSUPPORTED_GRANT_TYPE
         
         INVALID_CODE_PAIR
         
         AUTHORIZATION_PENDING
         
         SLOW_DOWN
         
         INTERNAL_ERROR
         
         INVALID_CBL_CLIENT_ID
         
        -

        Detailed Description

        -

        Describes an error during an attempt to authorize with AVS

        -

        Member Data Documentation

        - -

        ◆ NO_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.NO_ERROR
        -
        -

        No error encountered

        - -
        -
        - -

        ◆ UNKNOWN_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.UNKNOWN_ERROR
        -
        -

        An error was encountered, but no error description can be determined.

        - -
        -
        - -

        ◆ AUTHORIZATION_FAILED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.AUTHORIZATION_FAILED
        -
        -

        The client authorization failed.

        - -
        -
        - -

        ◆ UNAUTHORIZED_CLIENT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.UNAUTHORIZED_CLIENT
        -
        -

        The client is not authorized to use authorization codes.

        - -
        -
        - -

        ◆ SERVER_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.SERVER_ERROR
        -
        -

        The server encountered a runtime error.

        - -
        -
        - -

        ◆ INVALID_REQUEST

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_REQUEST
        -
        -

        The request is missing a required parameter, has an invalid value, or is otherwise malformed.

        - -
        -
        - -

        ◆ INVALID_VALUE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_VALUE
        -
        -

        One of the values in the request was invalid.

        - -
        -
        - -

        ◆ AUTHORIZATION_EXPIRED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.AUTHORIZATION_EXPIRED
        -
        -

        The authorization code is invalid, expired, revoked, or was issued to a different client.

        - -
        -
        - -

        ◆ UNSUPPORTED_GRANT_TYPE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.UNSUPPORTED_GRANT_TYPE
        -
        -

        The client specified the wrong token type.

        - -
        -
        - -

        ◆ INVALID_CODE_PAIR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_CODE_PAIR
        -
        -

        Invalid code pair provided in Code-based linking token request.

        - -
        -
        - -

        ◆ AUTHORIZATION_PENDING

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.AUTHORIZATION_PENDING
        -
        -

        Waiting for user to authorize the specified code pair.

        - -
        -
        - -

        ◆ SLOW_DOWN

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.SLOW_DOWN
        -
        -

        Client should slow down in the rate of requests polling for an access token.

        - -
        -
        - -

        ◆ INTERNAL_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.INTERNAL_ERROR
        -
        -

        Internal error in client code.

        - -
        -
        - -

        ◆ INVALID_CBL_CLIENT_ID

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_CBL_CLIENT_ID
        -
        -

        Client ID not valid for use with code based linking.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state-members.html deleted file mode 100644 index b4a76ef2f..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AlexaClient.AuthState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html deleted file mode 100644 index 36e0ee531..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AlexaClient.AuthState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AlexaClient.AuthState Enum Reference
        -
        -
        - - - - - - - - - - -

        -Public Attributes

         UNINITIALIZED
         
         REFRESHED
         
         EXPIRED
         
         UNRECOVERABLE_ERROR
         
        -

        Detailed Description

        -

        Describes the state of client authorization with AVS

        -

        Member Data Documentation

        - -

        ◆ UNINITIALIZED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthState.UNINITIALIZED
        -
        -

        Authorization has not yet been acquired.

        - -
        -
        - -

        ◆ REFRESHED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthState.REFRESHED
        -
        -

        Authorization has been refreshed.

        - -
        -
        - -

        ◆ EXPIRED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthState.EXPIRED
        -
        -

        Authorization has expired.

        - -
        -
        - -

        ◆ UNRECOVERABLE_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.AuthState.UNRECOVERABLE_ERROR
        -
        -

        Authorization has failed in a manner that cannot be corrected by retrying.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason-members.html deleted file mode 100644 index f209edb09..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason-members.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html deleted file mode 100644 index 0c4d37e8f..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason Enum Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

         NONE
         
         SUCCESS
         
         UNRECOVERABLE_ERROR
         
         ACL_CLIENT_REQUEST
         
         ACL_DISABLED
         
         DNS_TIMEDOUT
         
         CONNECTION_TIMEDOUT
         
         CONNECTION_THROTTLED
         
         INVALID_AUTH
         
         PING_TIMEDOUT
         
         WRITE_TIMEDOUT
         
         READ_TIMEDOUT
         
         FAILURE_PROTOCOL_ERROR
         
         INTERNAL_ERROR
         
         SERVER_INTERNAL_ERROR
         
         SERVER_SIDE_DISCONNECT
         
         SERVER_ENDPOINT_CHANGED
         
        -

        Detailed Description

        -

        Describes the reason for a change in AVS connection status

        -

        Member Data Documentation

        - -

        ◆ NONE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.NONE
        -
        -

        No reason specified.

        - -
        -
        - -

        ◆ SUCCESS

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.SUCCESS
        -
        -

        The connection status changed due to a successful operation.

        - -
        -
        - -

        ◆ UNRECOVERABLE_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.UNRECOVERABLE_ERROR
        -
        -

        The connection status changed due to an error from which there is no recovery.

        - -
        -
        - -

        ◆ ACL_CLIENT_REQUEST

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.ACL_CLIENT_REQUEST
        -
        -

        The connection status changed due to a client request.

        - -
        -
        - -

        ◆ ACL_DISABLED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.ACL_DISABLED
        -
        -

        The connection attempt failed because connection was disabled.

        - -
        -
        - -

        ◆ DNS_TIMEDOUT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.DNS_TIMEDOUT
        -
        -

        The connection attempt failed due to a DNS resolution timeout.

        - -
        -
        - -

        ◆ CONNECTION_TIMEDOUT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.CONNECTION_TIMEDOUT
        -
        -

        The connection attempt failed due to a connection timeout.

        - -
        -
        - -

        ◆ CONNECTION_THROTTLED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.CONNECTION_THROTTLED
        -
        -

        The connection attempt failed due to excessive load on the server.

        - -
        -
        - -

        ◆ INVALID_AUTH

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.INVALID_AUTH
        -
        -

        The provided access credentials were invalid.

        - -
        -
        - -

        ◆ PING_TIMEDOUT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.PING_TIMEDOUT
        -
        -

        There was a timeout sending a ping request.

        - -
        -
        - -

        ◆ WRITE_TIMEDOUT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.WRITE_TIMEDOUT
        -
        -

        There was a timeout writing to AVS.

        - -
        -
        - -

        ◆ READ_TIMEDOUT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.READ_TIMEDOUT
        -
        -

        There was a timeout reading from AVS.

        - -
        -
        - -

        ◆ FAILURE_PROTOCOL_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.FAILURE_PROTOCOL_ERROR
        -
        -

        There was an underlying protocol error.

        - -
        -
        - -

        ◆ INTERNAL_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.INTERNAL_ERROR
        -
        -

        There was an internal error.

        - -
        -
        - -

        ◆ SERVER_INTERNAL_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.SERVER_INTERNAL_ERROR
        -
        -

        There was an internal error on the server.

        - -
        -
        - -

        ◆ SERVER_SIDE_DISCONNECT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.SERVER_SIDE_DISCONNECT
        -
        -

        The server asked the client to reconnect.

        - -
        -
        - -

        ◆ SERVER_ENDPOINT_CHANGED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.SERVER_ENDPOINT_CHANGED
        -
        -

        The server endpoint has changed.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status-members.html deleted file mode 100644 index 67ebcdb5c..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AlexaClient.ConnectionStatus Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html deleted file mode 100644 index 02a103e9d..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AlexaClient.ConnectionStatus Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AlexaClient.ConnectionStatus Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         DISCONNECTED
         
         PENDING
         
         CONNECTED
         
        -

        Detailed Description

        -

        Describes the status of an AVS connection

        -

        Member Data Documentation

        - -

        ◆ DISCONNECTED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionStatus.DISCONNECTED
        -
        -

        Not connected to AVS

        - -
        -
        - -

        ◆ PENDING

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionStatus.PENDING
        -
        -

        Attempting to establish a connection to AVS

        - -
        -
        - -

        ◆ CONNECTED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.ConnectionStatus.CONNECTED
        -
        -

        Connected to AVS

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state-members.html deleted file mode 100644 index 2d7cdb828..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AlexaClient.DialogState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html deleted file mode 100644 index d79720331..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AlexaClient.DialogState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AlexaClient.DialogState Enum Reference
        -
        -
        - - - - - - - - - - - - -

        -Public Attributes

         IDLE
         
         LISTENING
         
         EXPECTING
         
         THINKING
         
         SPEAKING
         
        -

        Detailed Description

        -

        Describes the state of Alexa dialog interaction

        -

        Member Data Documentation

        - -

        ◆ IDLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.DialogState.IDLE
        -
        -

        Alexa is idle and ready for an interaction.

        - -
        -
        - -

        ◆ LISTENING

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.DialogState.LISTENING
        -
        -

        Alexa is currently listening.

        - -
        -
        - -

        ◆ EXPECTING

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.DialogState.EXPECTING
        -
        -

        Alexa is currently expecting a response from the user.

        - -
        -
        - -

        ◆ THINKING

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.DialogState.THINKING
        -
        -

        A user request has completed, and no more user input is being accepted. Alexa is waiting for a response from AVS.

        - -
        -
        - -

        ◆ SPEAKING

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaClient.DialogState.SPEAKING
        -
        -

        Alexa is responding to a request with speech.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type-members.html deleted file mode 100644 index 3624b1b16..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AlexaSpeaker.SpeakerType Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html deleted file mode 100644 index 418657a51..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AlexaSpeaker.SpeakerType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AlexaSpeaker.SpeakerType Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         ALEXA_VOLUME
         
         ALERTS_VOLUME
         
        -

        Detailed Description

        -

        Describes the state of Alexa dialog interaction

        -

        Member Data Documentation

        - -

        ◆ ALEXA_VOLUME

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaSpeaker.SpeakerType.ALEXA_VOLUME
        -
        -

        The Speaker type that is controlled locally by the platform

        - -
        -
        - -

        ◆ ALERTS_VOLUME

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AlexaSpeaker.SpeakerType.ALERTS_VOLUME
        -
        -

        The Speaker type that is controlled locally by the platform

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity-members.html deleted file mode 100644 index afcec499d..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AudioPlayer.PlayerActivity Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html deleted file mode 100644 index e1ad5919b..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AudioPlayer.PlayerActivity Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AudioPlayer.PlayerActivity Enum Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Public Attributes

         IDLE
         
         PLAYING
         
         STOPPED
         
         PAUSED
         
         BUFFER_UNDERRUN
         
         FINISHED
         
        -

        Detailed Description

        -

        Specifies the state of audio playback activity

        -

        Member Data Documentation

        - -

        ◆ IDLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AudioPlayer.PlayerActivity.IDLE
        -
        -

        Audio playback has not yet begun.

        - -
        -
        - -

        ◆ PLAYING

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AudioPlayer.PlayerActivity.PLAYING
        -
        -

        Audio is currently playing.

        - -
        -
        - -

        ◆ STOPPED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AudioPlayer.PlayerActivity.STOPPED
        -
        -

        Audio playback is stopped, either from a stop directive or playback error.

        - -
        -
        - -

        ◆ PAUSED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AudioPlayer.PlayerActivity.PAUSED
        -
        -

        Audio playback is paused.

        - -
        -
        - -

        ◆ BUFFER_UNDERRUN

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AudioPlayer.PlayerActivity.BUFFER_UNDERRUN
        -
        -

        Audio playback is stalled because a buffer underrun has occurred.

        - -
        -
        - -

        ◆ FINISHED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AudioPlayer.PlayerActivity.FINISHED
        -
        -

        Audio playback is finished.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error-members.html deleted file mode 100644 index 7f89b57f0..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error-members.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AuthProvider.AuthError Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html deleted file mode 100644 index 1191dd844..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AuthProvider.AuthError Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AuthProvider.AuthError Enum Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

         NO_ERROR
         
         UNKNOWN_ERROR
         
         AUTHORIZATION_FAILED
         
         UNAUTHORIZED_CLIENT
         
         SERVER_ERROR
         
         INVALID_REQUEST
         
         INVALID_VALUE
         
         AUTHORIZATION_EXPIRED
         
         UNSUPPORTED_GRANT_TYPE
         
         INVALID_CODE_PAIR
         
         AUTHORIZATION_PENDING
         
         SLOW_DOWN
         
         INTERNAL_ERROR
         
         INVALID_CBL_CLIENT_ID
         
        -

        Detailed Description

        -

        Describes an error during an attempt to authorize with AVS

        -

        Member Data Documentation

        - -

        ◆ NO_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.NO_ERROR
        -
        -

        No error encountered

        - -
        -
        - -

        ◆ UNKNOWN_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.UNKNOWN_ERROR
        -
        -

        An error was encountered, but no error description can be determined.

        - -
        -
        - -

        ◆ AUTHORIZATION_FAILED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.AUTHORIZATION_FAILED
        -
        -

        The client authorization failed.

        - -
        -
        - -

        ◆ UNAUTHORIZED_CLIENT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.UNAUTHORIZED_CLIENT
        -
        -

        The client is not authorized to use authorization codes.

        - -
        -
        - -

        ◆ SERVER_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.SERVER_ERROR
        -
        -

        The server encountered a runtime error.

        - -
        -
        - -

        ◆ INVALID_REQUEST

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_REQUEST
        -
        -

        The request is missing a required parameter, has an invalid value, or is otherwise malformed.

        - -
        -
        - -

        ◆ INVALID_VALUE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_VALUE
        -
        -

        One of the values in the request was invalid.

        - -
        -
        - -

        ◆ AUTHORIZATION_EXPIRED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.AUTHORIZATION_EXPIRED
        -
        -

        The authorization code is invalid, expired, revoked, or was issued to a different client.

        - -
        -
        - -

        ◆ UNSUPPORTED_GRANT_TYPE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.UNSUPPORTED_GRANT_TYPE
        -
        -

        The client specified the wrong token type.

        - -
        -
        - -

        ◆ INVALID_CODE_PAIR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_CODE_PAIR
        -
        -

        Invalid code pair provided in Code-based linking token request.

        - -
        -
        - -

        ◆ AUTHORIZATION_PENDING

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.AUTHORIZATION_PENDING
        -
        -

        Waiting for user to authorize the specified code pair.

        - -
        -
        - -

        ◆ SLOW_DOWN

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.SLOW_DOWN
        -
        -

        Client should slow down in the rate of requests polling for an access token.

        - -
        -
        - -

        ◆ INTERNAL_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.INTERNAL_ERROR
        -
        -

        Internal error in client code.

        - -
        -
        - -

        ◆ INVALID_CBL_CLIENT_ID

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_CBL_CLIENT_ID
        -
        -

        Client ID not valid for use with code based linking.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state-members.html deleted file mode 100644 index 606d40b06..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.AuthProvider.AuthState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html deleted file mode 100644 index 1aa86cdb4..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.AuthProvider.AuthState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.AuthProvider.AuthState Enum Reference
        -
        -
        - - - - - - - - - - -

        -Public Attributes

         UNINITIALIZED
         
         REFRESHED
         
         EXPIRED
         
         UNRECOVERABLE_ERROR
         
        -

        Detailed Description

        -

        Describes the state of client authorization with AVS

        -

        Member Data Documentation

        - -

        ◆ UNINITIALIZED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthState.UNINITIALIZED
        -
        -

        Authorization has not yet been acquired.

        - -
        -
        - -

        ◆ REFRESHED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthState.REFRESHED
        -
        -

        Authorization has been refreshed.

        - -
        -
        - -

        ◆ EXPIRED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthState.EXPIRED
        -
        -

        Authorization has expired.

        - -
        -
        - -

        ◆ UNRECOVERABLE_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.AuthProvider.AuthState.UNRECOVERABLE_ERROR
        -
        -

        Authorization has failed in a manner that cannot be corrected by retrying.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code-members.html deleted file mode 100644 index 6738c0b3f..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.DeviceSetup.StatusCode Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html deleted file mode 100644 index 44b48fb35..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.DeviceSetup.StatusCode Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.DeviceSetup.StatusCode Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         SUCCESS
         
         FAIL
         
        -

        Detailed Description

        -

        StatusCode indicates the status of the setupCompletedResponse event call.

        -

        Member Data Documentation

        - -

        ◆ SUCCESS

        - -
        -
        - - - - -
        com.amazon.aace.alexa.DeviceSetup.StatusCode.SUCCESS
        -
        -

        Event setupCompleted() is sent to AVS successfully

        - -
        -
        - -

        ◆ FAIL

        - -
        -
        - - - - -
        com.amazon.aace.alexa.DeviceSetup.StatusCode.FAIL
        -
        -

        SDK failed to send the event setupCompleted.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band-members.html deleted file mode 100644 index 3b7fc7433..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.EqualizerController.EqualizerBand Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html deleted file mode 100644 index b33b54313..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.EqualizerController.EqualizerBand Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.EqualizerController.EqualizerBand Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         BASS
         
         MIDRANGE
         
         TREBLE
         
        -

        Detailed Description

        -

        Describes the equalizer bands supported by Alexa. The platform implementation may support a subset of these.

        -

        Member Data Documentation

        - -

        ◆ BASS

        - -
        -
        - - - - -
        com.amazon.aace.alexa.EqualizerController.EqualizerBand.BASS
        -
        -

        Bass equalizer band

        - -
        -
        - -

        ◆ MIDRANGE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.EqualizerController.EqualizerBand.MIDRANGE
        -
        -

        Midrange equalizer band

        - -
        -
        - -

        ◆ TREBLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.EqualizerController.EqualizerBand.TREBLE
        -
        -

        Treble equalizer band

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites-members.html deleted file mode 100644 index d07d6ce43..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.Favorites Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html deleted file mode 100644 index 01b760565..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.ExternalMediaAdapter.Favorites Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.Favorites Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         FAVORITED =("FAVORITED")
         
         UNFAVORITED =("UNFAVORITED")
         
         NOT_RATED =("NOT_RATED")
         
        -

        Detailed Description

        -

        Favorites song status

        -

        Member Data Documentation

        - -

        ◆ FAVORITED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.Favorites.FAVORITED =("FAVORITED")
        -
        -

        song is favorited

        - -
        -
        - -

        ◆ UNFAVORITED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.Favorites.UNFAVORITED =("UNFAVORITED")
        -
        -

        song is unfavorited

        - -
        -
        - -

        ◆ NOT_RATED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.Favorites.NOT_RATED =("NOT_RATED")
        -
        -

        song is not rated

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type-members.html deleted file mode 100644 index 1c737e172..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.MediaType Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html deleted file mode 100644 index 6eb03d93e..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.ExternalMediaAdapter.MediaType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.MediaType Enum Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Public Attributes

         TRACK =("TRACK")
         
         PODCAST =("PODCAST")
         
         STATION =("STATION")
         
         AD =("AD")
         
         SAMPLE =("SAMPLE")
         
         OTHER =("OTHER")
         
        -

        Detailed Description

        -

        Type of the current media source

        -

        Member Data Documentation

        - -

        ◆ TRACK

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.TRACK =("TRACK")
        -
        -

        A single song source

        - -
        -
        - -

        ◆ PODCAST

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.PODCAST =("PODCAST")
        -
        -

        A podcast source

        - -
        -
        - -

        ◆ STATION

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.STATION =("STATION")
        -
        -

        A station source

        - -
        -
        - -

        ◆ AD

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.AD =("AD")
        -
        -

        An advertisement source

        - -
        -
        - -

        ◆ SAMPLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.SAMPLE =("SAMPLE")
        -
        -

        A sample source

        - -
        -
        - -

        ◆ OTHER

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.OTHER =("OTHER")
        -
        -

        A miscellaneous source

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation-members.html deleted file mode 100644 index 6b6f46ce7..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.Navigation Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html deleted file mode 100644 index 81dd561fd..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.ExternalMediaAdapter.Navigation Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.Navigation Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         DEFAULT =("DEFAULT")
         
         NONE =("NONE")
         
         FOREGROUND =("FOREGROUND")
         
        -

        Detailed Description

        -

        Type of navigation when external media player app is first invoked via AVS

        -

        Member Data Documentation

        - -

        ◆ DEFAULT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.Navigation.DEFAULT =("DEFAULT")
        -
        -

        Source dependant behavior

        - -
        -
        - -

        ◆ NONE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.Navigation.NONE =("NONE")
        -
        -

        No navigation should occur

        - -
        -
        - -

        ◆ FOREGROUND

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.Navigation.FOREGROUND =("FOREGROUND")
        -
        -

        External app should take foreground

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type-members.html deleted file mode 100644 index 399790f11..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type-members.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html deleted file mode 100644 index dd393138b..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html +++ /dev/null @@ -1,347 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType Enum Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

         RESUME =("RESUME")
         
         PAUSE =("PAUSE")
         
         STOP =("STOP")
         
         NEXT =("NEXT")
         
         PREVIOUS =("PREVIOUS")
         
         START_OVER =("START_OVER")
         
         FAST_FORWARD =("FAST_FORWARD")
         
         REWIND =("REWIND")
         
         ENABLE_REPEAT_ONE =("ENABLE_REPEAT_ONE")
         
         ENABLE_REPEAT =("ENABLE_REPEAT")
         
         DISABLE_REPEAT =("DISABLE_REPEAT")
         
         ENABLE_SHUFFLE =("ENABLE_SHUFFLE")
         
         DISABLE_SHUFFLE =("DISABLE_SHUFFLE")
         
         FAVORITE =("FAVORITE")
         
         UNFAVORITE =("UNFAVORITE")
         
        -

        Detailed Description

        -

        Describes the playback control type

        -

        Member Data Documentation

        - -

        ◆ RESUME

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.RESUME =("RESUME")
        -
        -

        resume playback

        - -
        -
        - -

        ◆ PAUSE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.PAUSE =("PAUSE")
        -
        -

        pause playback

        - -
        -
        - -

        ◆ STOP

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.STOP =("STOP")
        -
        -

        stop the player

        - -
        -
        - -

        ◆ NEXT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.NEXT =("NEXT")
        -
        -

        next song

        - -
        -
        - -

        ◆ PREVIOUS

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.PREVIOUS =("PREVIOUS")
        -
        -

        previous playback

        - -
        -
        - -

        ◆ START_OVER

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.START_OVER =("START_OVER")
        -
        -

        start playback over

        - -
        -
        - -

        ◆ FAST_FORWARD

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.FAST_FORWARD =("FAST_FORWARD")
        -
        -

        fast forward external media described time

        - -
        -
        - -

        ◆ REWIND

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.REWIND =("REWIND")
        -
        -

        rewind external media described time

        - -
        -
        - -

        ◆ ENABLE_REPEAT_ONE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.ENABLE_REPEAT_ONE =("ENABLE_REPEAT_ONE")
        -
        -

        enable repeat current song

        - -
        -
        - -

        ◆ ENABLE_REPEAT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.ENABLE_REPEAT =("ENABLE_REPEAT")
        -
        -

        enable playlist looping

        - -
        -
        - -

        ◆ DISABLE_REPEAT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.DISABLE_REPEAT =("DISABLE_REPEAT")
        -
        -

        disable playlist looping

        - -
        -
        - -

        ◆ ENABLE_SHUFFLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.ENABLE_SHUFFLE =("ENABLE_SHUFFLE")
        -
        -

        enable playlist shuffling

        - -
        -
        - -

        ◆ DISABLE_SHUFFLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.DISABLE_SHUFFLE =("DISABLE_SHUFFLE")
        -
        -

        disable playlist shuffling

        - -
        -
        - -

        ◆ FAVORITE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.FAVORITE =("FAVORITE")
        -
        -

        favorite song

        - -
        -
        - -

        ◆ UNFAVORITE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.UNFAVORITE =("UNFAVORITE")
        -
        -

        unfavorite song

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation-members.html deleted file mode 100644 index b88acc8ec..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.SupportedPlaybackOperation Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.ExternalMediaAdapter.SupportedPlaybackOperation, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation.html deleted file mode 100644 index 20c3fbaaf..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.ExternalMediaAdapter.SupportedPlaybackOperation Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.ExternalMediaAdapter.SupportedPlaybackOperation Enum Reference
        -
        -
        -

        Detailed Description

        -

        Supported playback control types reportable by the external media player app

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector-members.html deleted file mode 100644 index dd4cab242..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.LocalMediaSource.ContentSelector Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html deleted file mode 100644 index 55feb889e..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.LocalMediaSource.ContentSelector Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.LocalMediaSource.ContentSelector Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         PRESET =("PRESET")
         
         CHANNEL =("CHANNEL")
         
         FREQUENCY =("FREQUENCY")
         
        -

        Detailed Description

        -

        The play content selection type

        -

        Member Data Documentation

        - -

        ◆ PRESET

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.ContentSelector.PRESET =("PRESET")
        -
        -

        preset selection

        - -
        -
        - -

        ◆ CHANNEL

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.ContentSelector.CHANNEL =("CHANNEL")
        -
        -

        channel selection

        - -
        -
        - -

        ◆ FREQUENCY

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.ContentSelector.FREQUENCY =("FREQUENCY")
        -
        -

        frequency selection

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites-members.html deleted file mode 100644 index 9c8bab3a2..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.LocalMediaSource.Favorites Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html deleted file mode 100644 index 3ceb759a4..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.LocalMediaSource.Favorites Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.LocalMediaSource.Favorites Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         FAVORITED =("FAVORITED")
         
         UNFAVORITED =("UNFAVORITED")
         
         NOT_RATED =("NOT_RATED")
         
        -

        Detailed Description

        -

        Favorites song status

        -

        Member Data Documentation

        - -

        ◆ FAVORITED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Favorites.FAVORITED =("FAVORITED")
        -
        -

        song is favorited

        - -
        -
        - -

        ◆ UNFAVORITED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Favorites.UNFAVORITED =("UNFAVORITED")
        -
        -

        song is unfavorited

        - -
        -
        - -

        ◆ NOT_RATED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Favorites.NOT_RATED =("NOT_RATED")
        -
        -

        song is not rated

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type-members.html deleted file mode 100644 index 3e2094b5e..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.LocalMediaSource.MediaType Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html deleted file mode 100644 index 4e84871b8..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.LocalMediaSource.MediaType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.LocalMediaSource.MediaType Enum Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Public Attributes

         TRACK =("TRACK")
         
         PODCAST =("PODCAST")
         
         STATION =("STATION")
         
         AD =("AD")
         
         SAMPLE =("SAMPLE")
         
         OTHER =("OTHER")
         
        -

        Detailed Description

        -

        Type of the current media source

        -

        Member Data Documentation

        - -

        ◆ TRACK

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.MediaType.TRACK =("TRACK")
        -
        -

        A single song source

        - -
        -
        - -

        ◆ PODCAST

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.MediaType.PODCAST =("PODCAST")
        -
        -

        A podcast source

        - -
        -
        - -

        ◆ STATION

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.MediaType.STATION =("STATION")
        -
        -

        A station source

        - -
        -
        - -

        ◆ AD

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.MediaType.AD =("AD")
        -
        -

        An advertisement source

        - -
        -
        - -

        ◆ SAMPLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.MediaType.SAMPLE =("SAMPLE")
        -
        -

        A sample source

        - -
        -
        - -

        ◆ OTHER

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.MediaType.OTHER =("OTHER")
        -
        -

        A miscellaneous source

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type-members.html deleted file mode 100644 index a31e3853c..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type-members.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html deleted file mode 100644 index 1e854b1f1..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html +++ /dev/null @@ -1,347 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.LocalMediaSource.PlayControlType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType Enum Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

         RESUME =("RESUME")
         
         PAUSE =("PAUSE")
         
         STOP =("STOP")
         
         NEXT =("NEXT")
         
         PREVIOUS =("PREVIOUS")
         
         START_OVER =("START_OVER")
         
         FAST_FORWARD =("FAST_FORWARD")
         
         REWIND =("REWIND")
         
         ENABLE_REPEAT_ONE =("ENABLE_REPEAT_ONE")
         
         ENABLE_REPEAT =("ENABLE_REPEAT")
         
         DISABLE_REPEAT =("DISABLE_REPEAT")
         
         ENABLE_SHUFFLE =("ENABLE_SHUFFLE")
         
         DISABLE_SHUFFLE =("DISABLE_SHUFFLE")
         
         FAVORITE =("FAVORITE")
         
         UNFAVORITE =("UNFAVORITE")
         
        -

        Detailed Description

        -

        Describes the playback control type

        -

        Member Data Documentation

        - -

        ◆ RESUME

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.RESUME =("RESUME")
        -
        -

        resume playback

        - -
        -
        - -

        ◆ PAUSE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.PAUSE =("PAUSE")
        -
        -

        pause playback

        - -
        -
        - -

        ◆ STOP

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.STOP =("STOP")
        -
        -

        stop the player

        - -
        -
        - -

        ◆ NEXT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.NEXT =("NEXT")
        -
        -

        next song

        - -
        -
        - -

        ◆ PREVIOUS

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.PREVIOUS =("PREVIOUS")
        -
        -

        previous playback

        - -
        -
        - -

        ◆ START_OVER

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.START_OVER =("START_OVER")
        -
        -

        start playback over

        - -
        -
        - -

        ◆ FAST_FORWARD

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.FAST_FORWARD =("FAST_FORWARD")
        -
        -

        fast forward external media described time

        - -
        -
        - -

        ◆ REWIND

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.REWIND =("REWIND")
        -
        -

        rewind external media described time

        - -
        -
        - -

        ◆ ENABLE_REPEAT_ONE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.ENABLE_REPEAT_ONE =("ENABLE_REPEAT_ONE")
        -
        -

        enable repeat current song

        - -
        -
        - -

        ◆ ENABLE_REPEAT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.ENABLE_REPEAT =("ENABLE_REPEAT")
        -
        -

        enable playlist looping

        - -
        -
        - -

        ◆ DISABLE_REPEAT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.DISABLE_REPEAT =("DISABLE_REPEAT")
        -
        -

        disable playlist looping

        - -
        -
        - -

        ◆ ENABLE_SHUFFLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.ENABLE_SHUFFLE =("ENABLE_SHUFFLE")
        -
        -

        enable playlist shuffling

        - -
        -
        - -

        ◆ DISABLE_SHUFFLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.DISABLE_SHUFFLE =("DISABLE_SHUFFLE")
        -
        -

        disable playlist shuffling

        - -
        -
        - -

        ◆ FAVORITE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.FAVORITE =("FAVORITE")
        -
        -

        favorite song

        - -
        -
        - -

        ◆ UNFAVORITE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.PlayControlType.UNFAVORITE =("UNFAVORITE")
        -
        -

        unfavorite song

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source-members.html deleted file mode 100644 index 386a59d23..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source-members.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.LocalMediaSource.Source Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html deleted file mode 100644 index 606c664e4..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.LocalMediaSource.Source Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.LocalMediaSource.Source Enum Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

         BLUETOOTH =("BLUETOOTH")
         
         USB =("USB")
         
         FM_RADIO =("FM_RADIO")
         
         AM_RADIO =("AM_RADIO")
         
         SATELLITE_RADIO =("SATELLITE_RADIO")
         
         LINE_IN =("LINE_IN")
         
         COMPACT_DISC =("COMPACT_DISC")
         
         SIRIUS_XM =("SIRIUS_XM")
         
         DAB =("DAB")
         
         DEFAULT =("DEFAULT")
         
        -

        Detailed Description

        -

        The Local Media Source type

        -

        Member Data Documentation

        - -

        ◆ BLUETOOTH

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.BLUETOOTH =("BLUETOOTH")
        -
        -

        bluetooth source

        - -
        -
        - -

        ◆ USB

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.USB =("USB")
        -
        -

        USB source

        - -
        -
        - -

        ◆ FM_RADIO

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.FM_RADIO =("FM_RADIO")
        -
        -

        FM radio source

        - -
        -
        - -

        ◆ AM_RADIO

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.AM_RADIO =("AM_RADIO")
        -
        -

        AM radio source

        - -
        -
        - -

        ◆ SATELLITE_RADIO

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.SATELLITE_RADIO =("SATELLITE_RADIO")
        -
        -

        satellite radio source

        - -
        -
        - -

        ◆ LINE_IN

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.LINE_IN =("LINE_IN")
        -
        -

        audio line source

        - -
        -
        - -

        ◆ COMPACT_DISC

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.COMPACT_DISC =("COMPACT_DISC")
        -
        -

        CD player source

        - -
        -
        - -

        ◆ SIRIUS_XM

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.SIRIUS_XM =("SIRIUS_XM")
        -
        -

        Sirius XM player source

        - -
        -
        - -

        ◆ DAB

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.DAB =("DAB")
        -
        -

        DAB player source

        - -
        -
        - -

        ◆ DEFAULT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.LocalMediaSource.Source.DEFAULT =("DEFAULT")
        -
        -

        DEFAULT, unnamed media source

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation-members.html deleted file mode 100644 index 9fd7c9537..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.LocalMediaSource.SupportedPlaybackOperation Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.alexa.LocalMediaSource.SupportedPlaybackOperation, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation.html deleted file mode 100644 index 8ed59819f..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.LocalMediaSource.SupportedPlaybackOperation Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.LocalMediaSource.SupportedPlaybackOperation Enum Reference
        -
        -
        -

        Detailed Description

        -

        Supported playback control types reportable by the external media app

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason-members.html deleted file mode 100644 index 42d0cc9ac..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.MediaPlaybackRequestor.InvocationReason Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html deleted file mode 100644 index 711701486..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.MediaPlaybackRequestor.InvocationReason Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.MediaPlaybackRequestor.InvocationReason Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         AUTOMOTIVE_STARTUP
         
         EXPLICIT_USER_ACTION =("EXPLICIT_USER_ACTION")
         
        -

        Detailed Description

        -

        This enumeration represents the reason for calling the requestMediaPlayback API

        -

        Member Data Documentation

        - -

        ◆ AUTOMOTIVE_STARTUP

        - -
        -
        - - - - -
        com.amazon.aace.alexa.MediaPlaybackRequestor.InvocationReason.AUTOMOTIVE_STARTUP
        -
        -

        Initiating the media resume by the system

        - -
        -
        - -

        ◆ EXPLICIT_USER_ACTION

        - -
        -
        - - - - -
        com.amazon.aace.alexa.MediaPlaybackRequestor.InvocationReason.EXPLICIT_USER_ACTION =("EXPLICIT_USER_ACTION")
        -
        -

        Initiating the media resume by the driver through physical button. This reason is not accepted yet.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status-members.html deleted file mode 100644 index 3d1d2b553..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html deleted file mode 100644 index 35f0f7d3b..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus Enum Reference
        -
        -
        - - - - - - - - - - -

        -Public Attributes

         SUCCESS
         
         FAILED_CAN_RETRY
         
         FAILED_TIMEOUT
         
         ERROR
         
        -

        Detailed Description

        -

        MediaPlaybackRequestStatus indicates the status of the requestMediaPlayback event call.

        -

        Member Data Documentation

        - -

        ◆ SUCCESS

        - -
        -
        - - - - -
        com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus.SUCCESS
        -
        -

        Event call is successful

        - -
        -
        - -

        ◆ FAILED_CAN_RETRY

        - -
        -
        - - - - -
        com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus.FAILED_CAN_RETRY
        -
        -

        Event call is failed because Alexa is not connected, please retry.

        - -
        -
        - -

        ◆ FAILED_TIMEOUT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus.FAILED_TIMEOUT
        -
        -

        Event call is failed because of the threshold timeout.

        - -
        -
        - -

        ◆ ERROR

        - -
        -
        - - - - -
        com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus.ERROR
        -
        -

        Event call is failed because of an error.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state-members.html deleted file mode 100644 index de85e6251..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.Notifications.IndicatorState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html deleted file mode 100644 index 6bc103ada..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.Notifications.IndicatorState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.Notifications.IndicatorState Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         OFF
         
         ON
         
         UNKNOWN
         
        -

        Detailed Description

        -

        Specifies whether a notification indicator should be rendered on the platform

        -

        Member Data Documentation

        - -

        ◆ OFF

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Notifications.IndicatorState.OFF
        -
        -

        The notification indicator should be turned off

        - -
        -
        - -

        ◆ ON

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Notifications.IndicatorState.ON
        -
        -

        The notification indicator should be turned on

        - -
        -
        - -

        ◆ UNKNOWN

        - -
        -
        - - - - -
        com.amazon.aace.alexa.Notifications.IndicatorState.UNKNOWN
        -
        -

        The notification indicator state is unknown.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button-members.html deleted file mode 100644 index 6c0130d40..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.PlaybackController.PlaybackButton Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html deleted file mode 100644 index 39ce6bf0f..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.PlaybackController.PlaybackButton Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.PlaybackController.PlaybackButton Enum Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Public Attributes

         PLAY
         
         PAUSE
         
         NEXT
         
         PREVIOUS
         
         SKIP_FORWARD
         
         SKIP_BACKWARD
         
        -

        Detailed Description

        -

        Describes the playback controller button types

        -

        Member Data Documentation

        - -

        ◆ PLAY

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackButton.PLAY
        -
        -

        'Play' button.

        - -
        -
        - -

        ◆ PAUSE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackButton.PAUSE
        -
        -

        'Pause' button.

        - -
        -
        - -

        ◆ NEXT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackButton.NEXT
        -
        -

        'Next' button.

        - -
        -
        - -

        ◆ PREVIOUS

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackButton.PREVIOUS
        -
        -

        'Previous' button.

        - -
        -
        - -

        ◆ SKIP_FORWARD

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackButton.SKIP_FORWARD
        -
        -

        'Skip Forward' button.

        - -
        -
        - -

        ◆ SKIP_BACKWARD

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackButton.SKIP_BACKWARD
        -
        -

        'Skip Backward' button.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle-members.html deleted file mode 100644 index 1f063458f..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.PlaybackController.PlaybackToggle Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html deleted file mode 100644 index 4247a4133..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.PlaybackController.PlaybackToggle Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.PlaybackController.PlaybackToggle Enum Reference
        -
        -
        - - - - - - - - - - - - -

        -Public Attributes

         SHUFFLE
         
         LOOP
         
         REPEAT
         
         THUMBS_UP
         
         THUMBS_DOWN
         
        -

        Detailed Description

        -

        Describes the playback controller toggle types

        -

        Member Data Documentation

        - -

        ◆ SHUFFLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackToggle.SHUFFLE
        -
        -

        'Shuffle' toggle.

        - -
        -
        - -

        ◆ LOOP

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackToggle.LOOP
        -
        -

        'Loop' toggle.

        - -
        -
        - -

        ◆ REPEAT

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackToggle.REPEAT
        -
        -

        'Repeat' toggle.

        - -
        -
        - -

        ◆ THUMBS_UP

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackToggle.THUMBS_UP
        -
        -

        'Thumbs Up' toggle.

        - -
        -
        - -

        ◆ THUMBS_DOWN

        - -
        -
        - - - - -
        com.amazon.aace.alexa.PlaybackController.PlaybackToggle.THUMBS_DOWN
        -
        -

        'Thumbs Down' toggle.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator-members.html deleted file mode 100644 index 36fb76890..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.SpeechRecognizer.Initiator Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html deleted file mode 100644 index 26d7e9f12..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.SpeechRecognizer.Initiator Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.SpeechRecognizer.Initiator Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         HOLD_TO_TALK =("HOLD_TO_TALK")
         
         TAP_TO_TALK =("TAP_TO_TALK")
         
         WAKEWORD =("WAKEWORD")
         
        -

        Detailed Description

        -

        Describes type of event that initiated the speech request.

        -

        Member Data Documentation

        - -

        ◆ HOLD_TO_TALK

        - -
        -
        - - - - -
        com.amazon.aace.alexa.SpeechRecognizer.Initiator.HOLD_TO_TALK =("HOLD_TO_TALK")
        -
        -

        Hold-to-talk speech initiator type.

        - -
        -
        - -

        ◆ TAP_TO_TALK

        - -
        -
        - - - - -
        com.amazon.aace.alexa.SpeechRecognizer.Initiator.TAP_TO_TALK =("TAP_TO_TALK")
        -
        -

        Tap-to-talk speech initiator type.

        - -
        -
        - -

        ◆ WAKEWORD

        - -
        -
        - - - - -
        com.amazon.aace.alexa.SpeechRecognizer.Initiator.WAKEWORD =("WAKEWORD")
        -
        -

        Wakeword speech initiator type.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state-members.html deleted file mode 100644 index ea37c6956..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.TemplateRuntime.FocusState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html deleted file mode 100644 index 9f6fb2c87..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.TemplateRuntime.FocusState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.TemplateRuntime.FocusState Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         FOREGROUND
         
         BACKGROUND
         
         NONE
         
        -

        Detailed Description

        -

        An enum class used to specify the levels of focus that a Channel can have.

        -

        Member Data Documentation

        - -

        ◆ FOREGROUND

        - -
        -
        - - - - -
        com.amazon.aace.alexa.TemplateRuntime.FocusState.FOREGROUND
        -
        -

        Represents the highest focus a Channel can have.

        - -
        -
        - -

        ◆ BACKGROUND

        - -
        -
        - - - - -
        com.amazon.aace.alexa.TemplateRuntime.FocusState.BACKGROUND
        -
        -

        Represents the intermediate level focus a Channel can have.

        - -
        -
        - -

        ◆ NONE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.TemplateRuntime.FocusState.NONE
        -
        -

        This focus is used to represent when a Channel is not being used.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity-members.html deleted file mode 100644 index 4003f0e01..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.alexa.TemplateRuntime.PlayerActivity Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html deleted file mode 100644 index 027649c56..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.alexa.TemplateRuntime.PlayerActivity Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.alexa.TemplateRuntime.PlayerActivity Enum Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Public Attributes

         IDLE
         
         PLAYING
         
         STOPPED
         
         PAUSED
         
         BUFFER_UNDERRUN
         
         FINISHED
         
        -

        Detailed Description

        -

        An enum class used to specify audio player state for TemplateRuntime.

        -

        Member Data Documentation

        - -

        ◆ IDLE

        - -
        -
        - - - - -
        com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.IDLE
        -
        -

        Audio playback has not yet begun.

        - -
        -
        - -

        ◆ PLAYING

        - -
        -
        - - - - -
        com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.PLAYING
        -
        -

        Audio is currently playing.

        - -
        -
        - -

        ◆ STOPPED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.STOPPED
        -
        -

        Audio playback is stopped, either from a stop directive or playback error.

        - -
        -
        - -

        ◆ PAUSED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.PAUSED
        -
        -

        Audio playback is paused.

        - -
        -
        - -

        ◆ BUFFER_UNDERRUN

        - -
        -
        - - - - -
        com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.BUFFER_UNDERRUN
        -
        -

        Audio playback is stalled because a buffer underrun has occurred.

        - -
        -
        - -

        ◆ FINISHED

        - -
        -
        - - - - -
        com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.FINISHED
        -
        -

        Audio playback is finished.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event-members.html deleted file mode 100644 index 48552639b..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.apl.APL.ActivityEvent Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html deleted file mode 100644 index f69f0355b..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.apl.APL.ActivityEvent Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.apl.APL.ActivityEvent Enum Reference
        -
        -
        - - - - - - - - - - - - -

        -Public Attributes

         ACTIVATED
         
         DEACTIVATED
         
         ONE_TIME
         
         INTERRUPT
         
         UNKNOWN
         
        -

        Detailed Description

        -

        Enumeration of activity events that could be sent from GUI to AlexaPresentation.

        -

        Member Data Documentation

        - -

        ◆ ACTIVATED

        - -
        -
        - - - - -
        com.amazon.aace.apl.APL.ActivityEvent.ACTIVATED
        -
        -

        GUI switched to active state.

        - -
        -
        - -

        ◆ DEACTIVATED

        - -
        -
        - - - - -
        com.amazon.aace.apl.APL.ActivityEvent.DEACTIVATED
        -
        -

        GUI become inactive.

        - -
        -
        - -

        ◆ ONE_TIME

        - -
        -
        - - - - -
        com.amazon.aace.apl.APL.ActivityEvent.ONE_TIME
        -
        -

        GUI processed one-time event (touch/scroll/etc).

        - -
        -
        - -

        ◆ INTERRUPT

        - -
        -
        - - - - -
        com.amazon.aace.apl.APL.ActivityEvent.INTERRUPT
        -
        -

        Interrupt event (touch).

        - -
        -
        - -

        ◆ UNKNOWN

        - -
        -
        - - - - -
        com.amazon.aace.apl.APL.ActivityEvent.UNKNOWN
        -
        -

        Guard option for unknown received state.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding-members.html deleted file mode 100644 index f21912db9..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioFormat.Encoding Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.audio.AudioFormat.Encoding, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding.html deleted file mode 100644 index df568a7c6..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioFormat.Encoding Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioFormat.Encoding Enum Reference
        -
        -
        -

        Detailed Description

        -

        Describes the playback state of the platform media player

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type-members.html deleted file mode 100644 index 233f8b6cd..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioInputProvider.AudioInputType Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.audio.AudioInputProvider.AudioInputType, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type.html deleted file mode 100644 index 1d13d41d0..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioInputProvider.AudioInputType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioInputProvider.AudioInputType Enum Reference
        -
        -
        -

        Detailed Description

        -

        Specifies the audio input type for an input channel

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action-members.html deleted file mode 100644 index ffcc03163..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioOutput.FocusAction Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html deleted file mode 100644 index e4f375b88..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioOutput.FocusAction Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioOutput.FocusAction Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         REPORT_DUCKING_STARTED
         
         REPORT_DUCKING_STOPPED
         
        -

        Detailed Description

        -

        Describes the audio focus actions

        -

        Member Data Documentation

        - -

        ◆ REPORT_DUCKING_STARTED

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.FocusAction.REPORT_DUCKING_STARTED
        -
        -

        This action informs Alexa engine that ducking is initiated by platform interface. Highly recommended to provide information so that engine would not override the action

        - -
        -
        - -

        ◆ REPORT_DUCKING_STOPPED

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.FocusAction.REPORT_DUCKING_STOPPED
        -
        -

        This action informs Alexa engine that ducking is stopped by platform interface. Highly recommended to provide information so that engine can duck if required

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error-members.html deleted file mode 100644 index 5234196ee..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioOutput.MediaError Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html deleted file mode 100644 index 67c3d3085..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioOutput.MediaError Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioOutput.MediaError Enum Reference
        -
        -
        - - - - - - - - - - - - -

        -Public Attributes

         MEDIA_ERROR_UNKNOWN
         
         MEDIA_ERROR_INVALID_REQUEST
         
         MEDIA_ERROR_SERVICE_UNAVAILABLE
         
         MEDIA_ERROR_INTERNAL_SERVER_ERROR
         
         MEDIA_ERROR_INTERNAL_DEVICE_ERROR
         
        -

        Detailed Description

        -

        Describes an error during a media playback operation

        -

        Member Data Documentation

        - -

        ◆ MEDIA_ERROR_UNKNOWN

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.MediaError.MEDIA_ERROR_UNKNOWN
        -
        -

        An unknown error occurred.

        - -
        -
        - -

        ◆ MEDIA_ERROR_INVALID_REQUEST

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.MediaError.MEDIA_ERROR_INVALID_REQUEST
        -
        -

        The server recognized the request as malformed (e.g. bad request, unauthorized, forbidden, not found, etc).

        - -
        -
        - -

        ◆ MEDIA_ERROR_SERVICE_UNAVAILABLE

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.MediaError.MEDIA_ERROR_SERVICE_UNAVAILABLE
        -
        -

        The client was unable to reach the service.

        - -
        -
        - -

        ◆ MEDIA_ERROR_INTERNAL_SERVER_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.MediaError.MEDIA_ERROR_INTERNAL_SERVER_ERROR
        -
        -

        The server accepted the request but was unable to process it as expected.

        - -
        -
        - -

        ◆ MEDIA_ERROR_INTERNAL_DEVICE_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.MediaError.MEDIA_ERROR_INTERNAL_DEVICE_ERROR
        -
        -

        There was an internal error on the client.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state-members.html deleted file mode 100644 index b5b67d236..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioOutput.MediaState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html deleted file mode 100644 index dc5aa64af..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioOutput.MediaState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioOutput.MediaState Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         STOPPED
         
         PLAYING
         
         BUFFERING
         
        -

        Detailed Description

        -

        Describes the playback state of the platform media player

        -

        Member Data Documentation

        - -

        ◆ STOPPED

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.MediaState.STOPPED
        -
        -

        The media player is not currently playing. It may have paused, stopped, or finished.

        - -
        -
        - -

        ◆ PLAYING

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.MediaState.PLAYING
        -
        -

        The media player is currently playing.

        - -
        -
        - -

        ◆ BUFFERING

        - -
        -
        - - - - -
        com.amazon.aace.audio.AudioOutput.MediaState.BUFFERING
        -
        -

        The media player is currently buffering data.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state-members.html deleted file mode 100644 index b9e194632..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioOutput.MutedState Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.audio.AudioOutput.MutedState, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state.html deleted file mode 100644 index c79104bb4..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioOutput.MutedState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioOutput.MutedState Enum Reference
        -
        -
        -

        Detailed Description

        -

        Describes the muted state of the audio output channel

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type-members.html deleted file mode 100644 index 210a94e4f..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioOutputProvider.AudioOutputType Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.audio.AudioOutputProvider.AudioOutputType, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type.html deleted file mode 100644 index 37ed8c2a9..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioOutputProvider.AudioOutputType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioOutputProvider.AudioOutputType Enum Reference
        -
        -
        -

        Detailed Description

        -

        Specifies the audio input type for an input channel

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding-members.html deleted file mode 100644 index efb47d170..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.audio.AudioStream.Encoding Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.audio.AudioStream.Encoding, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding.html deleted file mode 100644 index afdf16611..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.audio.AudioStream.Encoding Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.audio.AudioStream.Encoding Enum Reference
        -
        -
        -

        Detailed Description

        -

        Describes the playback state of the platform media player

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state-members.html deleted file mode 100644 index abd92bfc1..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.authorization.Authorization.AuthorizationState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html deleted file mode 100644 index bfb6656e4..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.authorization.Authorization.AuthorizationState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.authorization.Authorization.AuthorizationState Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         UNAUTHORIZED
         
         AUTHORIZING
         
         AUTHORIZED
         
        -

        Detailed Description

        -

        Describes the authorization states.

        -

        Member Data Documentation

        - -

        ◆ UNAUTHORIZED

        - -
        -
        - - - - -
        com.amazon.aace.authorization.Authorization.AuthorizationState.UNAUTHORIZED
        -
        -

        Device is unauthorized

        - -
        -
        - -

        ◆ AUTHORIZING

        - -
        -
        - - - - -
        com.amazon.aace.authorization.Authorization.AuthorizationState.AUTHORIZING
        -
        -

        Device authorization in-progress

        - -
        -
        - -

        ◆ AUTHORIZED

        - -
        -
        - - - - -
        com.amazon.aace.authorization.Authorization.AuthorizationState.AUTHORIZED
        -
        -

        Device is authorized

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state-members.html deleted file mode 100644 index 651e11b50..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.bluetooth.GATTServer.ConnectionState Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.bluetooth.GATTServer.ConnectionState, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state.html deleted file mode 100644 index 0449bd4cf..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.bluetooth.GATTServer.ConnectionState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.bluetooth.GATTServer.ConnectionState Enum Reference
        -
        -
        -

        Detailed Description

        -

        Describes the state of connection to a calling device

        -
        See also
        PhoneCallController::connectionStateChanged
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state-members.html deleted file mode 100644 index 4afa1c704..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.cbl.CBL.CBLState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html deleted file mode 100644 index cb3790b1d..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.cbl.CBL.CBLState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.cbl.CBL.CBLState Enum Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Public Attributes

         STARTING
         
         REQUESTING_CODE_PAIR
         
         CODE_PAIR_RECEIVED
         
         REFRESHING_TOKEN
         
         REQUESTING_TOKEN
         
         STOPPING
         
        -

        Detailed Description

        -

        Specifies the state of the authorization flow

        -

        Member Data Documentation

        - -

        ◆ STARTING

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLState.STARTING
        -
        -

        CBL process is starting

        - -
        -
        - -

        ◆ REQUESTING_CODE_PAIR

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLState.REQUESTING_CODE_PAIR
        -
        -

        Initiating the process to request a code pair

        - -
        -
        - -

        ◆ CODE_PAIR_RECEIVED

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLState.CODE_PAIR_RECEIVED
        -
        -

        Code pair is received and is waiting on user to authenticate

        - -
        -
        - -

        ◆ REFRESHING_TOKEN

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLState.REFRESHING_TOKEN
        -
        -

        Refreshing token state has begun

        - -
        -
        - -

        ◆ REQUESTING_TOKEN

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLState.REQUESTING_TOKEN
        -
        -

        Requesting for authorization token

        - -
        -
        - -

        ◆ STOPPING

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLState.STOPPING
        -
        -

        CBL process is ending

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason-members.html deleted file mode 100644 index 5abbf65d6..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.cbl.CBL.CBLStateChangedReason Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html deleted file mode 100644 index 57d11f86d..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.cbl.CBL.CBLStateChangedReason Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.cbl.CBL.CBLStateChangedReason Enum Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Public Attributes

         SUCCESS
         
         ERROR
         
         TIMEOUT
         
         CODE_PAIR_EXPIRED
         
         AUTHORIZATION_EXPIRED
         
         NONE
         
        -

        Detailed Description

        -

        Specifies the reason for a state change

        -

        Member Data Documentation

        - -

        ◆ SUCCESS

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLStateChangedReason.SUCCESS
        -
        -

        THe CBL state changed successfully

        - -
        -
        - -

        ◆ ERROR

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLStateChangedReason.ERROR
        -
        -

        Error occurred in the CBL process

        - -
        -
        - -

        ◆ TIMEOUT

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLStateChangedReason.TIMEOUT
        -
        -

        Request timed out

        - -
        -
        - -

        ◆ CODE_PAIR_EXPIRED

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLStateChangedReason.CODE_PAIR_EXPIRED
        -
        -

        Code pair has expired and use will need to initiate the authentication process again

        - -
        -
        - -

        ◆ AUTHORIZATION_EXPIRED

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLStateChangedReason.AUTHORIZATION_EXPIRED
        -
        -

        Authorization token is invalid, expired, revoked, or was issued to a different client

        - -
        -
        - -

        ◆ NONE

        - -
        -
        - - - - -
        com.amazon.aace.cbl.CBL.CBLStateChangedReason.NONE
        -
        -

        No reason specified

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code-members.html deleted file mode 100644 index 51f03a530..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.connectivity.AlexaConnectivity.StatusCode Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html deleted file mode 100644 index 415b0b8e1..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.connectivity.AlexaConnectivity.StatusCode Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.connectivity.AlexaConnectivity.StatusCode Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         SUCCESS
         
         FAIL
         
        -

        Detailed Description

        -

        Indicates the delivery status of the sendConnectivityEvent() call.

        -

        Member Data Documentation

        - -

        ◆ SUCCESS

        - -
        -
        - - - - -
        com.amazon.aace.connectivity.AlexaConnectivity.StatusCode.SUCCESS
        -
        -

        The sendConnectivityEvent() event was sent to AVS successfully.

        - -
        -
        - -

        ◆ FAIL

        - -
        -
        - - - - -
        com.amazon.aace.connectivity.AlexaConnectivity.StatusCode.FAIL
        -
        -

        The sendConnectivityEvent() event was not sent to AVS successfully.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode-members.html deleted file mode 100644 index 74bb62e90..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.core.MessageStream.Mode Member List
        -
        -
        - -

        This is the complete list of members for com.amazon.aace.core.MessageStream.Mode, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode.html deleted file mode 100644 index 20e3a247e..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.core.MessageStream.Mode Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.core.MessageStream.Mode Enum Reference
        -
        -
        - -

        An enumeration representing the stream operation mode. - More...

        -

        Detailed Description

        -

        An enumeration representing the stream operation mode.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type-members.html deleted file mode 100644 index 948fb37fc..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.customDomain.CustomDomain.ResultType Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html deleted file mode 100644 index 7a988f3f9..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.customDomain.CustomDomain.ResultType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.customDomain.CustomDomain.ResultType Enum Reference
        -
        -
        - - - - - - - - - - -

        -Public Attributes

         UNEXPECTED_INFORMATION_RECEIVED =("UNEXPECTED_INFORMATION_RECEIVED")
         
         UNSUPPORTED_OPERATION =("UNSUPPORTED_OPERATION")
         
         INTERNAL_ERROR =("INTERNAL_ERROR")
         
         SUCCESS =("SUCCESS")
         
        -

        Detailed Description

        -

        Describes the type of custom directive handling result

        -

        Member Data Documentation

        - -

        ◆ UNEXPECTED_INFORMATION_RECEIVED

        - -
        -
        - - - - -
        com.amazon.aace.customDomain.CustomDomain.ResultType.UNEXPECTED_INFORMATION_RECEIVED =("UNEXPECTED_INFORMATION_RECEIVED")
        -
        -

        The directive sent to your client was malformed or the payload does not conform to the directive specification.

        - -
        -
        - -

        ◆ UNSUPPORTED_OPERATION

        - -
        -
        - - - - -
        com.amazon.aace.customDomain.CustomDomain.ResultType.UNSUPPORTED_OPERATION =("UNSUPPORTED_OPERATION")
        -
        -

        The operation specified by the namespace/name in the directive's header are not supported by the client.

        - -
        -
        - -

        ◆ INTERNAL_ERROR

        - -
        -
        - - - - -
        com.amazon.aace.customDomain.CustomDomain.ResultType.INTERNAL_ERROR =("INTERNAL_ERROR")
        -
        -

        An error occurred while the device was handling the directive and the error does not fall into the specified categories.

        - -
        -
        - -

        ◆ SUCCESS

        - -
        -
        - - - - -
        com.amazon.aace.customDomain.CustomDomain.ResultType.SUCCESS =("SUCCESS")
        -
        -

        The directive handling is successful

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access-members.html deleted file mode 100644 index cde468f88..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.location.LocationProvider.LocationServiceAccess Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html deleted file mode 100644 index 003c1a575..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.location.LocationProvider.LocationServiceAccess Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.location.LocationProvider.LocationServiceAccess Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         DISABLED
         
         ENABLED
         
        -

        Detailed Description

        -

        Describes the access to the geolocation service on the device.

        -

        Member Data Documentation

        - -

        ◆ DISABLED

        - -
        -
        - - - - -
        com.amazon.aace.location.LocationProvider.LocationServiceAccess.DISABLED
        -
        -

        The location service on the device is disabled (e.g., GPS is turned off).

        - -
        -
        - -

        ◆ ENABLED

        - -
        -
        - - - - -
        com.amazon.aace.location.LocationProvider.LocationServiceAccess.ENABLED
        -
        -

        The location service on the device is enabled (e.g., GPS is turned on).

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level-members.html deleted file mode 100644 index 1eb1fa6df..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.logger.Logger.Level Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html deleted file mode 100644 index 88e66d803..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.logger.Logger.Level Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.logger.Logger.Level Enum Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Public Attributes

         VERBOSE
         
         INFO
         
         METRIC
         
         WARN
         
         ERROR
         
         CRITICAL
         
        -

        Detailed Description

        -

        Specifies the severity level of a log message

        -

        Member Data Documentation

        - -

        ◆ VERBOSE

        - -
        -
        - - - - -
        com.amazon.aace.logger.Logger.Level.VERBOSE
        -
        -

        Verbose log of an event, enabled only for debug builds

        - -
        -
        - -

        ◆ INFO

        - -
        -
        - - - - -
        com.amazon.aace.logger.Logger.Level.INFO
        -
        -

        Log of a normal event. Used in release builds

        - -
        -
        - -

        ◆ METRIC

        - -
        -
        - - - - -
        com.amazon.aace.logger.Logger.Level.METRIC
        -
        -

        Log of a metric, enabled only for builds with metrics enabled

        - -
        -
        - -

        ◆ WARN

        - -
        -
        - - - - -
        com.amazon.aace.logger.Logger.Level.WARN
        -
        -

        Log of an event that may indicate a problem

        - -
        -
        - -

        ◆ ERROR

        - -
        -
        - - - - -
        com.amazon.aace.logger.Logger.Level.ERROR
        -
        -

        Log of an event that indicates an error

        - -
        -
        - -

        ◆ CRITICAL

        - -
        -
        - - - - -
        com.amazon.aace.logger.Logger.Level.CRITICAL
        -
        -

        Log of an event that indicates an unrecoverable error

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state-members.html deleted file mode 100644 index 9032e4d35..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.messaging.Messaging.ConnectionState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html deleted file mode 100644 index 05c41f2fa..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.messaging.Messaging.ConnectionState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.messaging.Messaging.ConnectionState Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         CONNECTED
         
         DISCONNECTED
         
        -

        Detailed Description

        -

        An enum representing ConnectionState.

        -

        Member Data Documentation

        - -

        ◆ CONNECTED

        - -
        -
        - - - - -
        com.amazon.aace.messaging.Messaging.ConnectionState.CONNECTED
        -
        -

        Messaging endpoint is connected.

        - -
        -
        - -

        ◆ DISCONNECTED

        - -
        -
        - - - - -
        com.amazon.aace.messaging.Messaging.ConnectionState.DISCONNECTED
        -
        -

        Messaging endpoint is disconnected.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code-members.html deleted file mode 100644 index e7c7c1156..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.messaging.Messaging.ErrorCode Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html deleted file mode 100644 index c0f806d01..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.messaging.Messaging.ErrorCode Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.messaging.Messaging.ErrorCode Enum Reference
        -
        -
        - - - - - - - - -

        -Public Attributes

         GENERIC_FAILURE
         
         NO_CONNECTIVITY
         
         NO_PERMISSION
         
        -

        Detailed Description

        -

        An enum representing ErrorCode status error codes.

        -

        Member Data Documentation

        - -

        ◆ GENERIC_FAILURE

        - -
        -
        - - - - -
        com.amazon.aace.messaging.Messaging.ErrorCode.GENERIC_FAILURE
        -
        -

        Generic failure occurred during request processing.

        - -
        -
        - -

        ◆ NO_CONNECTIVITY

        - -
        -
        - - - - -
        com.amazon.aace.messaging.Messaging.ErrorCode.NO_CONNECTIVITY
        -
        -

        No connection was found during request processing.

        - -
        -
        - -

        ◆ NO_PERMISSION

        - -
        -
        - - - - -
        com.amazon.aace.messaging.Messaging.ErrorCode.NO_PERMISSION
        -
        -

        Messaging endpoint does not have needed permissions.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state-members.html deleted file mode 100644 index 9380ae1a2..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.messaging.Messaging.PermissionState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html deleted file mode 100644 index 4f5c87a88..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.messaging.Messaging.PermissionState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.messaging.Messaging.PermissionState Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         ON
         
         OFF
         
        -

        Detailed Description

        -

        An enum representing PermissionState.

        -

        Member Data Documentation

        - -

        ◆ ON

        - -
        -
        - - - - -
        com.amazon.aace.messaging.Messaging.PermissionState.ON
        -
        -

        Permission is granted.

        - -
        -
        - -

        ◆ OFF

        - -
        -
        - - - - -
        com.amazon.aace.messaging.Messaging.PermissionState.OFF
        -
        -

        Permission is not granted.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status-members.html deleted file mode 100644 index 35ab1d66f..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.network.NetworkInfoProvider.NetworkStatus Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html deleted file mode 100644 index 132250692..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html +++ /dev/null @@ -1,177 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.network.NetworkInfoProvider.NetworkStatus Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.network.NetworkInfoProvider.NetworkStatus Enum Reference
        -
        -
        - - - - - - - - - - - - -

        -Public Attributes

         UNKNOWN
         
         DISCONNECTED
         
         DISCONNECTING
         
         CONNECTED
         
         CONNECTING
         
        -

        Detailed Description

        -

        Describes the status of network connectivity

        -

        Member Data Documentation

        - -

        ◆ UNKNOWN

        - -
        -
        - - - - -
        com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.UNKNOWN
        -
        -

        The network is unknown.

        - -
        -
        - -

        ◆ DISCONNECTED

        - -
        -
        - - - - -
        com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.DISCONNECTED
        -
        -

        The network is disconnected.

        - -
        -
        - -

        ◆ DISCONNECTING

        - -
        -
        - - - - -
        com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.DISCONNECTING
        -
        -

        The network is disconnecting.

        - -
        -
        - -

        ◆ CONNECTED

        - -
        -
        - - - - -
        com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.CONNECTED
        -
        -

        The network is connected.

        - -
        -
        - -

        ◆ CONNECTING

        - -
        -
        - - - - -
        com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.CONNECTING
        -
        -

        The network is connecting.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error-members.html deleted file mode 100644 index a54cc4184..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.CallError Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html deleted file mode 100644 index 9da8dddd2..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.phonecontrol.PhoneCallController.CallError Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.CallError Enum Reference
        -
        -
        - - - - - - - - - - - - -

        -Public Attributes

         NO_CARRIER
         
         BUSY
         
         NO_ANSWER
         
         NO_NUMBER_FOR_REDIAL
         
         OTHER
         
        -

        Detailed Description

        -

        Describes an error for a failed call

        -
        See also
        PhoneCallController::callFailed
        -

        Member Data Documentation

        - -

        ◆ NO_CARRIER

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallError.NO_CARRIER
        -
        -

        No carrier is available on the calling device.

        - -
        -
        - -

        ◆ BUSY

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallError.BUSY
        -
        -

        The calling device is busy when setting up an outbound call, such as when a call is already in progress.

        - -
        -
        - -

        ◆ NO_ANSWER

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallError.NO_ANSWER
        -
        -

        The remote party did not answer the call.

        - -
        -
        - -

        ◆ NO_NUMBER_FOR_REDIAL

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallError.NO_NUMBER_FOR_REDIAL
        -
        -

        Redial was requested, but there is no previously dialed number available.

        - -
        -
        - -

        ◆ OTHER

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallError.OTHER
        -
        -

        Generic error

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state-members.html deleted file mode 100644 index 229263224..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.CallState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html deleted file mode 100644 index 90e311124..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.phonecontrol.PhoneCallController.CallState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.CallState Enum Reference
        -
        -
        - - - - - - - - - - - - - - -

        -Public Attributes

         IDLE
         
         DIALING
         
         OUTBOUND_RINGING
         
         ACTIVE
         
         CALL_RECEIVED
         
         INBOUND_RINGING
         
        -

        Detailed Description

        -

        Describes the state of a call

        -
        See also
        PhoneCallController::callStateChanged
        -

        Member Data Documentation

        - -

        ◆ IDLE

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallState.IDLE
        -
        -

        The call is not in an active state. The following are possible transitions to IDLE state:

          -
        • While in DIALING or OUTBOUND_RINGING, the user requested to hang up or cancel the outbound call
        • -
        • While in ACTIVE state, the user hangs up the active call.
        • -
        • While in CALL_RECEIVED or INBOUND_RINGING state, the user requested to ignore or reject the inbound call.
        • -
        - -
        -
        - -

        ◆ DIALING

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallState.DIALING
        -
        -

        The outbound call is initiated by the user. Call setup is in progress.

        - -
        -
        - -

        ◆ OUTBOUND_RINGING

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallState.OUTBOUND_RINGING
        -
        -

        The outbound call has been set up, and the remote party is alerted.

        - -
        -
        - -

        ◆ ACTIVE

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallState.ACTIVE
        -
        -

        The call is active, and media is being transmitted between the caller and remote party. The following are possible transitions to ACTIVE state:

          -
        • While in DIALING or OUTBOUND_RINGING, outbound call setup is successfully completed.
        • -
        • While in INBOUND_RINGING, the user accepted the call, and setup is completed.
        • -
        • When transitioning from DISCONNECTED to CONNECTED, and the calling device is already in an active call.
        • -
        - -
        -
        - -

        ◆ CALL_RECEIVED

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallState.CALL_RECEIVED
        -
        -

        An alert for the inbound call has been received.

        - -
        -
        - -

        ◆ INBOUND_RINGING

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallState.INBOUND_RINGING
        -
        -

        The inbound call is ringing.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property-members.html deleted file mode 100644 index 7e6de66fe..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.CallingDeviceConfigurationProperty Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html deleted file mode 100644 index 8988c2cd6..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.phonecontrol.PhoneCallController.CallingDeviceConfigurationProperty Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.CallingDeviceConfigurationProperty Enum Reference
        -
        -
        - - - - -

        -Public Attributes

         DTMF_SUPPORTED
         
        -

        Detailed Description

        -

        Describes a configuration property of a connected calling device. Configure properties with PhoneCallController::deviceConfigurationUpdated

        -

        Member Data Documentation

        - -

        ◆ DTMF_SUPPORTED

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.CallingDeviceConfigurationProperty.DTMF_SUPPORTED
        -
        -

        Whether the device supports DTMF signaling. Set true to indicate support for DTMF. Set false when DTMF signaling is not implemented or the current calling device configuration does not support DTMF. Default setting: false

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state-members.html deleted file mode 100644 index be49a9c07..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html deleted file mode 100644 index 936430c54..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         CONNECTED
         
         DISCONNECTED
         
        -

        Detailed Description

        -

        Describes the state of connection to a calling device

        -
        See also
        PhoneCallController::connectionStateChanged
        -

        Member Data Documentation

        - -

        ◆ CONNECTED

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState.CONNECTED
        -
        -

        A calling device is connected.

        - -
        -
        - -

        ◆ DISCONNECTED

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState.DISCONNECTED
        -
        -

        No calling device is connected.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error-members.html deleted file mode 100644 index ca67e9cc1..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.DTMFError Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html deleted file mode 100644 index c14b465cc..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.phonecontrol.PhoneCallController.DTMFError Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.phonecontrol.PhoneCallController.DTMFError Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         CALL_NOT_IN_PROGRESS
         
         DTMF_FAILED
         
        -

        Detailed Description

        -

        Describes an error preventing a DTMF signal from being delivered

        -
        See also
        PhoneCallController::sendDTMFFailed
        -

        Member Data Documentation

        - -

        ◆ CALL_NOT_IN_PROGRESS

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.DTMFError.CALL_NOT_IN_PROGRESS
        -
        -

        There is no active call through which a DTMF signal can be sent.

        - -
        -
        - -

        ◆ DTMF_FAILED

        - -
        -
        - - - - -
        com.amazon.aace.phonecontrol.PhoneCallController.DTMFError.DTMF_FAILED
        -
        -

        Generic DTMF error

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state-members.html deleted file mode 100644 index 8899701c5..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.propertyManager.PropertyManager.PropertyState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html deleted file mode 100644 index 345c7c951..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.propertyManager.PropertyManager.PropertyState Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.propertyManager.PropertyManager.PropertyState Enum Reference
        -
        -
        - - - - - - -

        -Public Attributes

         SUCCEEDED
         
         FAILED
         
        -

        Detailed Description

        -

        Describes the state of a property change.

        -

        Member Data Documentation

        - -

        ◆ SUCCEEDED

        - -
        -
        - - - - -
        com.amazon.aace.propertyManager.PropertyManager.PropertyState.SUCCEEDED
        -
        -

        The property change was successful.

        - -
        -
        - -

        ◆ FAILED

        - -
        -
        - - - - -
        com.amazon.aace.propertyManager.PropertyManager.PropertyState.FAILED
        -
        -

        The property change failed.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type-members.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type-members.html deleted file mode 100644 index 546297d18..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type-members.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html b/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html deleted file mode 100644 index a81192932..000000000 --- a/docs/docs/doxygen-docs/android/enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - - -Alexa Auto SDK: com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType Enum Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType Enum Reference
        -
        -
        - - - - -

        -Public Member Functions

         VehiclePropertyType (String name, String key)
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

         MAKE
         
         MODEL
         
         YEAR
         
         TRIM
         
         GEOGRAPHY
         
         VERSION
         
         OPERATING_SYSTEM
         
         HARDWARE_ARCH
         
         LANGUAGE
         
         MICROPHONE
         
         VEHICLE_IDENTIFIER
         
         ENGINE_TYPE
         
         RSE_EMBEDDED_FIRETVS
         
        -

        Detailed Description

        -

        Specifies the vehicle properties required in configuration

        -

        Constructor & Destructor Documentation

        - -

        ◆ VehiclePropertyType()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.VehiclePropertyType (String name,
        String key 
        )
        -
        -

        Type used to identify a vehicle property type and value pair

        - -
        -
        -

        Member Data Documentation

        - -

        ◆ MAKE

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.MAKE
        -
        -

        The make of the vehicle.

        Note
        This property is required.
        - -
        -
        - -

        ◆ MODEL

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.MODEL
        -
        -

        The model of the vehicle.

        Note
        This property is required.
        - -
        -
        - -

        ◆ YEAR

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.YEAR
        -
        -

        The model year of the vehicle. A value of this property type must be an integer in the range 1900-2100. Example value: "2019"

        Note
        This property is required.
        - -
        -
        - -

        ◆ TRIM

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.TRIM
        -
        -

        The trim level of the vehicle, identifying the vehicle's level of equipment or special features. Example values: "Standard", "Sport", "Limited"

        - -
        -
        - -

        ◆ GEOGRAPHY

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.GEOGRAPHY
        -
        -

        The current location (country/region/state/etc.) of the vehicle. Example values: "US", "US-North", "WA"

        - -
        -
        - -

        ◆ VERSION

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.VERSION
        -
        -

        The client software version. Example value: "2.2.1X"

        - -
        -
        - -

        ◆ OPERATING_SYSTEM

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.OPERATING_SYSTEM
        -
        -

        The operating system used by the vehicle's infotainment system. Example value: "AndroidOreo_8.1"

        - -
        -
        - -

        ◆ HARDWARE_ARCH

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.HARDWARE_ARCH
        -
        -

        The hardware architecture used by the vehicle. Example value: "x86_64"

        - -
        -
        - -

        ◆ LANGUAGE

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.LANGUAGE
        -
        -

        The language or locale selected for Alexa by the vehicle owner. Example values: "en-US", "fr-CA"

        - -
        -
        - -

        ◆ MICROPHONE

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.MICROPHONE
        -
        -

        The type and arrangement of microphone used by the vehicle. Example value: "7 mic array, centrally mounted"

        - -
        -
        - -

        ◆ VEHICLE_IDENTIFIER

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.VEHICLE_IDENTIFIER
        -
        -

        The automaker's identifier for the vehicle.

        - -
        -
        - -

        ◆ ENGINE_TYPE

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.ENGINE_TYPE
        -
        -

        The engine type of the vehicle. Example values: "GAS", "ELECTRIC", "HYBRID"

        - -
        -
        - -

        ◆ RSE_EMBEDDED_FIRETVS

        - -
        -
        - - - - -
        com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.RSE_EMBEDDED_FIRETVS
        -
        -

        The number of RSE embedded FireTVs installed in the vehicle. Example values: "1"

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/folderclosed.png b/docs/docs/doxygen-docs/android/folderclosed.png deleted file mode 100644 index bb8ab35ed..000000000 Binary files a/docs/docs/doxygen-docs/android/folderclosed.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/folderopen.png b/docs/docs/doxygen-docs/android/folderopen.png deleted file mode 100644 index d6c7f676a..000000000 Binary files a/docs/docs/doxygen-docs/android/folderopen.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/functions.html b/docs/docs/doxygen-docs/android/functions.html deleted file mode 100644 index f71b67214..000000000 --- a/docs/docs/doxygen-docs/android/functions.html +++ /dev/null @@ -1,1578 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Members - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        Here is a list of all documented class members with links to the class documentation for each member:
        - -

        - a -

        - - -

        - b -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - f -

        - - -

        - g -

        - - -

        - h -

        - - -

        - i -

        - - -

        - l -

        - - -

        - m -

        - - -

        - n -

        - - -

        - o -

        - - -

        - p -

        - - -

        - r -

        - - -

        - s -

        - - -

        - t -

        - - -

        - u -

        - - -

        - v -

        - - -

        - w -

        - - -

        - y -

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/functions_func.html b/docs/docs/doxygen-docs/android/functions_func.html deleted file mode 100644 index d5f4d3d47..000000000 --- a/docs/docs/doxygen-docs/android/functions_func.html +++ /dev/null @@ -1,912 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Members - Functions - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -  - -

        - a -

        - - -

        - b -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - g -

        - - -

        - h -

        - - -

        - i -

        - - -

        - l -

        - - -

        - m -

        - - -

        - n -

        - - -

        - o -

        - - -

        - p -

        - - -

        - r -

        - - -

        - s -

        - - -

        - t -

        - - -

        - u -

        - - -

        - v -

        - - -

        - w -

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/functions_vars.html b/docs/docs/doxygen-docs/android/functions_vars.html deleted file mode 100644 index c183ce153..000000000 --- a/docs/docs/doxygen-docs/android/functions_vars.html +++ /dev/null @@ -1,814 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Members - Variables - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -  - -

        - a -

        - - -

        - b -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - f -

        - - -

        - g -

        - - -

        - h -

        - - -

        - i -

        - - -

        - l -

        - - -

        - m -

        - - -

        - n -

        - - -

        - o -

        - - -

        - p -

        - - -

        - r -

        - - -

        - s -

        - - -

        - t -

        - - -

        - u -

        - - -

        - v -

        - - -

        - w -

        - - -

        - y -

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/hierarchy.html b/docs/docs/doxygen-docs/android/hierarchy.html deleted file mode 100644 index d5647a536..000000000 --- a/docs/docs/doxygen-docs/android/hierarchy.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Hierarchy - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        -
        Class Hierarchy
        -
        -
        -
        This inheritance list is sorted roughly, but not completely, alphabetically:
        -
        [detail level 12]
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
         Ccom.amazon.aace.carControl.CarControlConfiguration.Action
         Ccom.amazon.aace.apl.APL.ActivityEvent
         Ccom.amazon.aace.addressbook.config.AddressBookConfiguration
         Ccom.amazon.aace.addressbook.AddressBook.AddressBookType
         Ccom.amazon.aace.alexa.Alerts.AlertState
         Ccom.amazon.aace.alexa.config.AlexaConfiguration
         Ccom.amazon.aace.apl.config.APLConfiguration
         Ccom.amazon.aace.audio.AudioInputProvider.AudioInputType
         Ccom.amazon.aace.audio.AudioOutput
         Ccom.amazon.aace.audio.AudioOutputProvider.AudioOutputType
         Ccom.amazon.aace.alexa.AuthProvider.AuthError
         Ccom.amazon.aace.alexa.AlexaClient.AuthError
         Ccom.amazon.aace.authorization.Authorization.AuthorizationState
         Ccom.amazon.aace.alexa.AuthProvider.AuthState
         Ccom.amazon.aace.alexa.AlexaClient.AuthState
         Ccom.amazon.aace.phonecontrol.PhoneCallController.CallError
         Ccom.amazon.aace.phonecontrol.PhoneCallController.CallingDeviceConfigurationProperty
         Ccom.amazon.aace.phonecontrol.PhoneCallController.CallState
         Ccom.amazon.aace.cbl.config.CBLConfiguration
         Ccom.amazon.aace.cbl.CBL.CBLState
         Ccom.amazon.aace.cbl.CBL.CBLStateChangedReason
         Ccom.amazon.aace.alexa.AlexaClient.ConnectionChangedReason
         Ccom.amazon.aace.messaging.Messaging.ConnectionState
         Ccom.amazon.aace.bluetooth.GATTServer.ConnectionState
         Ccom.amazon.aace.phonecontrol.PhoneCallController.ConnectionState
         Ccom.amazon.aace.alexa.AlexaClient.ConnectionStatus
         Ccom.amazon.aace.alexa.LocalMediaSource.ContentSelector
         Ccom.amazon.aace.alexa.AlexaClient.DialogState
         Ccom.amazon.aace.phonecontrol.PhoneCallController.DTMFError
         Ccom.amazon.aace.audio.AudioFormat.Encoding
         Ccom.amazon.aace.audio.AudioStream.Encoding
         Ccom.amazon.aace.core.Engine
         Ccom.amazon.aace.core.config.EngineConfiguration
         Ccom.amazon.aace.alexa.EqualizerController.EqualizerBand
         Ccom.amazon.aace.messaging.Messaging.ErrorCode
         Ccom.amazon.maccandroid.ExampleUnitTest
         Ccom.amazon.aace.alexa.ExternalMediaAdapter.Favorites
         Ccom.amazon.aace.alexa.LocalMediaSource.Favorites
         Ccom.amazon.aace.audio.AudioOutput.FocusAction
         Ccom.amazon.aace.alexa.TemplateRuntime.FocusState
         Ccom.amazon.aace.alexa.Notifications.IndicatorState
         Ccom.amazon.aace.alexa.SpeechRecognizer.Initiator
         Ccom.amazon.aace.alexa.MediaPlaybackRequestor.InvocationReason
         Ccom.amazon.aace.logger.Logger.Level
         Ccom.amazon.aace.location.Location
         Ccom.amazon.aace.location.LocationProvider.LocationServiceAccess
         Ccom.amazon.aace.logger.config.LoggerConfiguration
         Ccom.amazon.maccandroid.MACCAndroidClient
         Ccom.amazon.aace.audio.AudioOutput.MediaError
         Ccom.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus
         Ccom.amazon.aace.audio.AudioOutput.MediaState
         Ccom.amazon.aace.alexa.LocalMediaSource.MediaType
         Ccom.amazon.aace.alexa.ExternalMediaAdapter.MediaType
         Ccom.amazon.aace.aasb.AASBStream.ModeAn enumeration representing the stream operation mode
         Ccom.amazon.aace.core.MessageStream.ModeAn enumeration representing the stream operation mode
         Ccom.amazon.aace.audio.AudioOutput.MutedState
         Ccom.amazon.aace.alexa.ExternalMediaAdapter.Navigation
         Ccom.amazon.aace.navigation.config.NavigationConfiguration
         Ccom.amazon.aace.network.NetworkInfoProvider.NetworkStatus
         Ccom.amazon.aace.messaging.Messaging.PermissionState
         Ccom.amazon.aace.core.PlatformInterface
         Ccom.amazon.aace.alexa.PlaybackController.PlaybackButton
         Ccom.amazon.aace.alexa.PlaybackController.PlaybackToggle
         Ccom.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType
         Ccom.amazon.aace.alexa.LocalMediaSource.PlayControlType
         Ccom.amazon.aace.alexa.TemplateRuntime.PlayerActivity
         Ccom.amazon.aace.alexa.AudioPlayer.PlayerActivity
         Ccom.amazon.maccandroid.model.PlayerPlaybackInfo
         Ccom.amazon.aace.propertyManager.PropertyManager.PropertyState
         Ccom.amazon.aace.customDomain.CustomDomain.ResultType
         Ccom.amazon.aace.alexa.LocalMediaSource.Source
         Ccom.amazon.aace.alexa.AlexaSpeaker.SpeakerType
         Ccom.amazon.aace.alexa.DeviceSetup.StatusCode
         Ccom.amazon.aace.connectivity.AlexaConnectivity.StatusCode
         Ccom.amazon.aace.storage.config.StorageConfiguration
         Ccom.amazon.aace.alexa.LocalMediaSource.SupportedPlaybackOperation
         Ccom.amazon.aace.alexa.ExternalMediaAdapter.SupportedPlaybackOperation
         Ccom.amazon.aace.vehicle.config.VehicleConfiguration
         Ccom.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/index.html b/docs/docs/doxygen-docs/android/index.html deleted file mode 100644 index 5064a09c5..000000000 --- a/docs/docs/doxygen-docs/android/index.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - -Alexa Auto SDK: Alexa Auto SDK for Android - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        -
        Alexa Auto SDK for Android
        -
        -
        -

        Introduction

        -

        For the Android platform, the Alexa Auto SDK is wrapped by a JNI layer which mirrors the native C++ API. This layer is built into the Android library project of each Auto SDK module. You can view it by opening ${AAC_SDK_HOME}/modules/<module name>/android in Android Studio.

        -

        This document refers to the Java API classes.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/jquery.js b/docs/docs/doxygen-docs/android/jquery.js deleted file mode 100644 index f5343eda9..000000000 --- a/docs/docs/doxygen-docs/android/jquery.js +++ /dev/null @@ -1,87 +0,0 @@ -/*! - * jQuery JavaScript Library v1.7.1 - * http://jquery.com/ - * - * Copyright 2011, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Mon Nov 21 21:11:03 2011 -0500 - */ -(function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var b=(function(){var bF=function(b0,b1){return new bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,bM=/\S/,bI=/^\s+/,bE=/\s+$/,bA=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,bN=/^[\],:{}\s]*$/,bW=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,bJ=/(?:^|:|,)(?:\s*\[)+/g,by=/(webkit)[ \/]([\w.]+)/,bR=/(opera)(?:.*version)?[ \/]([\w.]+)/,bQ=/(msie) ([\w.]+)/,bS=/(mozilla)(?:.*? rv:([\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+"").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var b2,b5,b1,b6;if(!b0){return this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return this}if(b0==="body"&&!b4&&av.body){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return this}if(typeof b0==="string"){if(b0.charAt(0)==="<"&&b0.charAt(b0.length-1)===">"&&b0.length>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4 instanceof bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&&b5.parentNode){if(b5.id!==b2[2]){return b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return bF.makeArray(b0,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3==="find"){b2.selector=this.selector+(this.selector?" ":"")+b0}else{if(b3){b2.selector=this.selector+"."+b3+"("+b0+")"}}return b2},each:function(b1,b0){return bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return this},eq:function(b0){b0=+b0;return b0===-1?this.slice(b0):this.slice(b0,b0+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(bK.apply(this,arguments),"slice",bK.call(arguments).join(","))},map:function(b0){return this.pushStack(bF.map(this,function(b2,b1){return b0.call(b2,b1,b2)}))},end:function(){return this.prevObject||this.constructor(null)},push:bz,sort:[].sort,splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var b9,b2,b0,b1,b6,b7,b5=arguments[0]||{},b4=1,b3=arguments.length,b8=false;if(typeof b5==="boolean"){b8=b5;b5=arguments[1]||{};b4=2}if(typeof b5!=="object"&&!bF.isFunction(b5)){b5={}}if(b3===b4){b5=this;--b4}for(;b40){return}bC.fireWith(av,[bF]);if(bF.fn.trigger){bF(av).trigger("ready").off("ready")}}},bindReady:function(){if(bC){return}bC=bF.Callbacks("once memory");if(av.readyState==="complete"){return setTimeout(bF.ready,1)}if(av.addEventListener){av.addEventListener("DOMContentLoaded",e,false);bb.addEventListener("load",bF.ready,false)}else{if(av.attachEvent){av.attachEvent("onreadystatechange",e);bb.attachEvent("onload",bF.ready);var b0=false;try{b0=bb.frameElement==null}catch(b1){}if(av.documentElement.doScroll&&b0){bw()}}}},isFunction:function(b0){return bF.type(b0)==="function"},isArray:Array.isArray||function(b0){return bF.type(b0)==="array"},isWindow:function(b0){return b0&&typeof b0==="object"&&"setInterval" in b0},isNumeric:function(b0){return !isNaN(parseFloat(b0))&&isFinite(b0)},type:function(b0){return b0==null?String(b0):bx[bL.call(b0)]||"object"},isPlainObject:function(b2){if(!b2||bF.type(b2)!=="object"||b2.nodeType||bF.isWindow(b2)){return false}try{if(b2.constructor&&!bG.call(b2,"constructor")&&!bG.call(b2.constructor.prototype,"isPrototypeOf")){return false}}catch(b1){return false}var b0;for(b0 in b2){}return b0===L||bG.call(b2,b0)},isEmptyObject:function(b1){for(var b0 in b1){return false}return true},error:function(b0){throw new Error(b0)},parseJSON:function(b0){if(typeof b0!=="string"||!b0){return null}b0=bF.trim(b0);if(bb.JSON&&bb.JSON.parse){return bb.JSON.parse(b0)}if(bN.test(b0.replace(bW,"@").replace(bP,"]").replace(bJ,""))){return(new Function("return "+b0))()}bF.error("Invalid JSON: "+b0)},parseXML:function(b2){var b0,b1;try{if(bb.DOMParser){b1=new DOMParser();b0=b1.parseFromString(b2,"text/xml")}else{b0=new ActiveXObject("Microsoft.XMLDOM");b0.async="false";b0.loadXML(b2)}}catch(b3){b0=L}if(!b0||!b0.documentElement||b0.getElementsByTagName("parsererror").length){bF.error("Invalid XML: "+b2)}return b0},noop:function(){},globalEval:function(b0){if(b0&&bM.test(b0)){(bb.execScript||function(b1){bb["eval"].call(bb,b1)})(b0)}},camelCase:function(b0){return b0.replace(bZ,"ms-").replace(bB,bT)},nodeName:function(b1,b0){return b1.nodeName&&b1.nodeName.toUpperCase()===b0.toUpperCase()},each:function(b3,b6,b2){var b1,b4=0,b5=b3.length,b0=b5===L||bF.isFunction(b3);if(b2){if(b0){for(b1 in b3){if(b6.apply(b3[b1],b2)===false){break}}}else{for(;b40&&b0[0]&&b0[b1-1])||b1===0||bF.isArray(b0));if(b3){for(;b21?aJ.call(arguments,0):bG;if(!(--bw)){bC.resolveWith(bC,bx)}}}function bz(bF){return function(bG){bB[bF]=arguments.length>1?aJ.call(arguments,0):bG;bC.notifyWith(bE,bB)}}if(e>1){for(;bv
        a";bI=bv.getElementsByTagName("*");bF=bv.getElementsByTagName("a")[0];if(!bI||!bI.length||!bF){return{}}bG=av.createElement("select");bx=bG.appendChild(av.createElement("option"));bE=bv.getElementsByTagName("input")[0];bJ={leadingWhitespace:(bv.firstChild.nodeType===3),tbody:!bv.getElementsByTagName("tbody").length,htmlSerialize:!!bv.getElementsByTagName("link").length,style:/top/.test(bF.getAttribute("style")),hrefNormalized:(bF.getAttribute("href")==="/a"),opacity:/^0.55/.test(bF.style.opacity),cssFloat:!!bF.style.cssFloat,checkOn:(bE.value==="on"),optSelected:bx.selected,getSetAttribute:bv.className!=="t",enctype:!!av.createElement("form").enctype,html5Clone:av.createElement("nav").cloneNode(true).outerHTML!=="<:nav>",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true};bE.checked=true;bJ.noCloneChecked=bE.cloneNode(true).checked;bG.disabled=true;bJ.optDisabled=!bx.disabled;try{delete bv.test}catch(bC){bJ.deleteExpando=false}if(!bv.addEventListener&&bv.attachEvent&&bv.fireEvent){bv.attachEvent("onclick",function(){bJ.noCloneEvent=false});bv.cloneNode(true).fireEvent("onclick")}bE=av.createElement("input");bE.value="t";bE.setAttribute("type","radio");bJ.radioValue=bE.value==="t";bE.setAttribute("checked","checked");bv.appendChild(bE);bD=av.createDocumentFragment();bD.appendChild(bv.lastChild);bJ.checkClone=bD.cloneNode(true).cloneNode(true).lastChild.checked;bJ.appendChecked=bE.checked;bD.removeChild(bE);bD.appendChild(bv);bv.innerHTML="";if(bb.getComputedStyle){bA=av.createElement("div");bA.style.width="0";bA.style.marginRight="0";bv.style.width="2px";bv.appendChild(bA);bJ.reliableMarginRight=(parseInt((bb.getComputedStyle(bA,null)||{marginRight:0}).marginRight,10)||0)===0}if(bv.attachEvent){for(by in {submit:1,change:1,focusin:1}){bB="on"+by;bw=(bB in bv);if(!bw){bv.setAttribute(bB,"return;");bw=(typeof bv[bB]==="function")}bJ[by+"Bubbles"]=bw}}bD.removeChild(bv);bD=bG=bx=bA=bv=bE=null;b(function(){var bM,bU,bV,bT,bN,bO,bL,bS,bR,e,bP,bQ=av.getElementsByTagName("body")[0];if(!bQ){return}bL=1;bS="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;";bR="visibility:hidden;border:0;";e="style='"+bS+"border:5px solid #000;padding:0;'";bP="
        ";bM=av.createElement("div");bM.style.cssText=bR+"width:0;height:0;position:static;top:0;margin-top:"+bL+"px";bQ.insertBefore(bM,bQ.firstChild);bv=av.createElement("div");bM.appendChild(bv);bv.innerHTML="
        t
        ";bz=bv.getElementsByTagName("td");bw=(bz[0].offsetHeight===0);bz[0].style.display="";bz[1].style.display="none";bJ.reliableHiddenOffsets=bw&&(bz[0].offsetHeight===0);bv.innerHTML="";bv.style.width=bv.style.paddingLeft="1px";b.boxModel=bJ.boxModel=bv.offsetWidth===2;if(typeof bv.style.zoom!=="undefined"){bv.style.display="inline";bv.style.zoom=1;bJ.inlineBlockNeedsLayout=(bv.offsetWidth===2);bv.style.display="";bv.innerHTML="
        ";bJ.shrinkWrapBlocks=(bv.offsetWidth!==2)}bv.style.cssText=bS+bR;bv.innerHTML=bP;bU=bv.firstChild;bV=bU.firstChild;bN=bU.nextSibling.firstChild.firstChild;bO={doesNotAddBorder:(bV.offsetTop!==5),doesAddBorderForTableAndCells:(bN.offsetTop===5)};bV.style.position="fixed";bV.style.top="20px";bO.fixedPosition=(bV.offsetTop===20||bV.offsetTop===15);bV.style.position=bV.style.top="";bU.style.overflow="hidden";bU.style.position="relative";bO.subtractsBorderForOverflowNotVisible=(bV.offsetTop===-5);bO.doesNotIncludeMarginInBodyOffset=(bQ.offsetTop!==bL);bQ.removeChild(bM);bv=bM=null;b.extend(bJ,bO)});return bJ})();var aS=/^(?:\{.*\}|\[.*\])$/,aA=/([A-Z])/g;b.extend({cache:{},uuid:0,expando:"jQuery"+(b.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},hasData:function(e){e=e.nodeType?b.cache[e[b.expando]]:e[b.expando];return !!e&&!S(e)},data:function(bx,bv,bz,by){if(!b.acceptData(bx)){return}var bG,bA,bD,bE=b.expando,bC=typeof bv==="string",bF=bx.nodeType,e=bF?b.cache:bx,bw=bF?bx[bE]:bx[bE]&&bE,bB=bv==="events";if((!bw||!e[bw]||(!bB&&!by&&!e[bw].data))&&bC&&bz===L){return}if(!bw){if(bF){bx[bE]=bw=++b.uuid}else{bw=bE}}if(!e[bw]){e[bw]={};if(!bF){e[bw].toJSON=b.noop}}if(typeof bv==="object"||typeof bv==="function"){if(by){e[bw]=b.extend(e[bw],bv)}else{e[bw].data=b.extend(e[bw].data,bv)}}bG=bA=e[bw];if(!by){if(!bA.data){bA.data={}}bA=bA.data}if(bz!==L){bA[b.camelCase(bv)]=bz}if(bB&&!bA[bv]){return bG.events}if(bC){bD=bA[bv];if(bD==null){bD=bA[b.camelCase(bv)]}}else{bD=bA}return bD},removeData:function(bx,bv,by){if(!b.acceptData(bx)){return}var bB,bA,bz,bC=b.expando,bD=bx.nodeType,e=bD?b.cache:bx,bw=bD?bx[bC]:bC;if(!e[bw]){return}if(bv){bB=by?e[bw]:e[bw].data;if(bB){if(!b.isArray(bv)){if(bv in bB){bv=[bv]}else{bv=b.camelCase(bv);if(bv in bB){bv=[bv]}else{bv=bv.split(" ")}}}for(bA=0,bz=bv.length;bA-1){return true}}return false},val:function(bx){var e,bv,by,bw=this[0];if(!arguments.length){if(bw){e=b.valHooks[bw.nodeName.toLowerCase()]||b.valHooks[bw.type];if(e&&"get" in e&&(bv=e.get(bw,"value"))!==L){return bv}bv=bw.value;return typeof bv==="string"?bv.replace(aU,""):bv==null?"":bv}return}by=b.isFunction(bx);return this.each(function(bA){var bz=b(this),bB;if(this.nodeType!==1){return}if(by){bB=bx.call(this,bA,bz.val())}else{bB=bx}if(bB==null){bB=""}else{if(typeof bB==="number"){bB+=""}else{if(b.isArray(bB)){bB=b.map(bB,function(bC){return bC==null?"":bC+""})}}}e=b.valHooks[this.nodeName.toLowerCase()]||b.valHooks[this.type];if(!e||!("set" in e)||e.set(this,bB,"value")===L){this.value=bB}})}});b.extend({valHooks:{option:{get:function(e){var bv=e.attributes.value;return !bv||bv.specified?e.value:e.text}},select:{get:function(e){var bA,bv,bz,bx,by=e.selectedIndex,bB=[],bC=e.options,bw=e.type==="select-one";if(by<0){return null}bv=bw?by:0;bz=bw?by+1:bC.length;for(;bv=0});if(!e.length){bv.selectedIndex=-1}return e}}},attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(bA,bx,bB,bz){var bw,e,by,bv=bA.nodeType;if(!bA||bv===3||bv===8||bv===2){return}if(bz&&bx in b.attrFn){return b(bA)[bx](bB)}if(typeof bA.getAttribute==="undefined"){return b.prop(bA,bx,bB)}by=bv!==1||!b.isXMLDoc(bA);if(by){bx=bx.toLowerCase();e=b.attrHooks[bx]||(ao.test(bx)?aY:be)}if(bB!==L){if(bB===null){b.removeAttr(bA,bx);return}else{if(e&&"set" in e&&by&&(bw=e.set(bA,bB,bx))!==L){return bw}else{bA.setAttribute(bx,""+bB);return bB}}}else{if(e&&"get" in e&&by&&(bw=e.get(bA,bx))!==null){return bw}else{bw=bA.getAttribute(bx);return bw===null?L:bw}}},removeAttr:function(bx,bz){var by,bA,bv,e,bw=0;if(bz&&bx.nodeType===1){bA=bz.toLowerCase().split(af);e=bA.length;for(;bw=0)}}})});var bd=/^(?:textarea|input|select)$/i,n=/^([^\.]*)?(?:\.(.+))?$/,J=/\bhover(\.\S+)?\b/,aO=/^key/,bf=/^(?:mouse|contextmenu)|click/,T=/^(?:focusinfocus|focusoutblur)$/,U=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,Y=function(e){var bv=U.exec(e);if(bv){bv[1]=(bv[1]||"").toLowerCase();bv[3]=bv[3]&&new RegExp("(?:^|\\s)"+bv[3]+"(?:\\s|$)")}return bv},j=function(bw,e){var bv=bw.attributes||{};return((!e[1]||bw.nodeName.toLowerCase()===e[1])&&(!e[2]||(bv.id||{}).value===e[2])&&(!e[3]||e[3].test((bv["class"]||{}).value)))},bt=function(e){return b.event.special.hover?e:e.replace(J,"mouseenter$1 mouseleave$1")};b.event={add:function(bx,bC,bJ,bA,by){var bD,bB,bK,bI,bH,bF,e,bG,bv,bz,bw,bE;if(bx.nodeType===3||bx.nodeType===8||!bC||!bJ||!(bD=b._data(bx))){return}if(bJ.handler){bv=bJ;bJ=bv.handler}if(!bJ.guid){bJ.guid=b.guid++}bK=bD.events;if(!bK){bD.events=bK={}}bB=bD.handle;if(!bB){bD.handle=bB=function(bL){return typeof b!=="undefined"&&(!bL||b.event.triggered!==bL.type)?b.event.dispatch.apply(bB.elem,arguments):L};bB.elem=bx}bC=b.trim(bt(bC)).split(" ");for(bI=0;bI=0){bG=bG.slice(0,-1);bw=true}if(bG.indexOf(".")>=0){bx=bG.split(".");bG=bx.shift();bx.sort()}if((!bA||b.event.customEvent[bG])&&!b.event.global[bG]){return}bv=typeof bv==="object"?bv[b.expando]?bv:new b.Event(bG,bv):new b.Event(bG);bv.type=bG;bv.isTrigger=true;bv.exclusive=bw;bv.namespace=bx.join(".");bv.namespace_re=bv.namespace?new RegExp("(^|\\.)"+bx.join("\\.(?:.*\\.)?")+"(\\.|$)"):null;by=bG.indexOf(":")<0?"on"+bG:"";if(!bA){e=b.cache;for(bC in e){if(e[bC].events&&e[bC].events[bG]){b.event.trigger(bv,bD,e[bC].handle.elem,true)}}return}bv.result=L;if(!bv.target){bv.target=bA}bD=bD!=null?b.makeArray(bD):[];bD.unshift(bv);bF=b.event.special[bG]||{};if(bF.trigger&&bF.trigger.apply(bA,bD)===false){return}bB=[[bA,bF.bindType||bG]];if(!bJ&&!bF.noBubble&&!b.isWindow(bA)){bI=bF.delegateType||bG;bH=T.test(bI+bG)?bA:bA.parentNode;bz=null;for(;bH;bH=bH.parentNode){bB.push([bH,bI]);bz=bH}if(bz&&bz===bA.ownerDocument){bB.push([bz.defaultView||bz.parentWindow||bb,bI])}}for(bC=0;bCbA){bH.push({elem:this,matches:bz.slice(bA)})}for(bC=0;bC0?this.on(e,null,bx,bw):this.trigger(e)};if(b.attrFn){b.attrFn[e]=true}if(aO.test(e)){b.event.fixHooks[e]=b.event.keyHooks}if(bf.test(e)){b.event.fixHooks[e]=b.event.mouseHooks}}); -/*! - * Sizzle CSS Selector Engine - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * More information: http://sizzlejs.com/ - */ -(function(){var bH=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,bC="sizcache"+(Math.random()+"").replace(".",""),bI=0,bL=Object.prototype.toString,bB=false,bA=true,bK=/\\/g,bO=/\r\n/g,bQ=/\W/;[0,0].sort(function(){bA=false;return 0});var by=function(bV,e,bY,bZ){bY=bY||[];e=e||av;var b1=e;if(e.nodeType!==1&&e.nodeType!==9){return[]}if(!bV||typeof bV!=="string"){return bY}var bS,b3,b6,bR,b2,b5,b4,bX,bU=true,bT=by.isXML(e),bW=[],b0=bV;do{bH.exec("");bS=bH.exec(b0);if(bS){b0=bS[3];bW.push(bS[1]);if(bS[2]){bR=bS[3];break}}}while(bS);if(bW.length>1&&bD.exec(bV)){if(bW.length===2&&bE.relative[bW[0]]){b3=bM(bW[0]+bW[1],e,bZ)}else{b3=bE.relative[bW[0]]?[e]:by(bW.shift(),e);while(bW.length){bV=bW.shift();if(bE.relative[bV]){bV+=bW.shift()}b3=bM(bV,b3,bZ)}}}else{if(!bZ&&bW.length>1&&e.nodeType===9&&!bT&&bE.match.ID.test(bW[0])&&!bE.match.ID.test(bW[bW.length-1])){b2=by.find(bW.shift(),e,bT);e=b2.expr?by.filter(b2.expr,b2.set)[0]:b2.set[0]}if(e){b2=bZ?{expr:bW.pop(),set:bF(bZ)}:by.find(bW.pop(),bW.length===1&&(bW[0]==="~"||bW[0]==="+")&&e.parentNode?e.parentNode:e,bT);b3=b2.expr?by.filter(b2.expr,b2.set):b2.set;if(bW.length>0){b6=bF(b3)}else{bU=false}while(bW.length){b5=bW.pop();b4=b5;if(!bE.relative[b5]){b5=""}else{b4=bW.pop()}if(b4==null){b4=e}bE.relative[b5](b6,b4,bT)}}else{b6=bW=[]}}if(!b6){b6=b3}if(!b6){by.error(b5||bV)}if(bL.call(b6)==="[object Array]"){if(!bU){bY.push.apply(bY,b6)}else{if(e&&e.nodeType===1){for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&(b6[bX]===true||b6[bX].nodeType===1&&by.contains(e,b6[bX]))){bY.push(b3[bX])}}}else{for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&b6[bX].nodeType===1){bY.push(b3[bX])}}}}}else{bF(b6,bY)}if(bR){by(bR,b1,bY,bZ);by.uniqueSort(bY)}return bY};by.uniqueSort=function(bR){if(bJ){bB=bA;bR.sort(bJ);if(bB){for(var e=1;e0};by.find=function(bX,e,bY){var bW,bS,bU,bT,bV,bR;if(!bX){return[]}for(bS=0,bU=bE.order.length;bS":function(bW,bR){var bV,bU=typeof bR==="string",bS=0,e=bW.length;if(bU&&!bQ.test(bR)){bR=bR.toLowerCase();for(;bS=0)){if(!bS){e.push(bV)}}else{if(bS){bR[bU]=false}}}}return false},ID:function(e){return e[1].replace(bK,"")},TAG:function(bR,e){return bR[1].replace(bK,"").toLowerCase()},CHILD:function(e){if(e[1]==="nth"){if(!e[2]){by.error(e[0])}e[2]=e[2].replace(/^\+|\s*/g,"");var bR=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(e[2]==="even"&&"2n"||e[2]==="odd"&&"2n+1"||!/\D/.test(e[2])&&"0n+"+e[2]||e[2]);e[2]=(bR[1]+(bR[2]||1))-0;e[3]=bR[3]-0}else{if(e[2]){by.error(e[0])}}e[0]=bI++;return e},ATTR:function(bU,bR,bS,e,bV,bW){var bT=bU[1]=bU[1].replace(bK,"");if(!bW&&bE.attrMap[bT]){bU[1]=bE.attrMap[bT]}bU[4]=(bU[4]||bU[5]||"").replace(bK,"");if(bU[2]==="~="){bU[4]=" "+bU[4]+" "}return bU},PSEUDO:function(bU,bR,bS,e,bV){if(bU[1]==="not"){if((bH.exec(bU[3])||"").length>1||/^\w/.test(bU[3])){bU[3]=by(bU[3],null,null,bR)}else{var bT=by.filter(bU[3],bR,bS,true^bV);if(!bS){e.push.apply(e,bT)}return false}}else{if(bE.match.POS.test(bU[0])||bE.match.CHILD.test(bU[0])){return true}}return bU},POS:function(e){e.unshift(true);return e}},filters:{enabled:function(e){return e.disabled===false&&e.type!=="hidden"},disabled:function(e){return e.disabled===true},checked:function(e){return e.checked===true},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},parent:function(e){return !!e.firstChild},empty:function(e){return !e.firstChild},has:function(bS,bR,e){return !!by(e[3],bS).length},header:function(e){return(/h\d/i).test(e.nodeName)},text:function(bS){var e=bS.getAttribute("type"),bR=bS.type;return bS.nodeName.toLowerCase()==="input"&&"text"===bR&&(e===bR||e===null)},radio:function(e){return e.nodeName.toLowerCase()==="input"&&"radio"===e.type},checkbox:function(e){return e.nodeName.toLowerCase()==="input"&&"checkbox"===e.type},file:function(e){return e.nodeName.toLowerCase()==="input"&&"file"===e.type},password:function(e){return e.nodeName.toLowerCase()==="input"&&"password"===e.type},submit:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"submit"===bR.type},image:function(e){return e.nodeName.toLowerCase()==="input"&&"image"===e.type},reset:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"reset"===bR.type},button:function(bR){var e=bR.nodeName.toLowerCase();return e==="input"&&"button"===bR.type||e==="button"},input:function(e){return(/input|select|textarea|button/i).test(e.nodeName)},focus:function(e){return e===e.ownerDocument.activeElement}},setFilters:{first:function(bR,e){return e===0},last:function(bS,bR,e,bT){return bR===bT.length-1},even:function(bR,e){return e%2===0},odd:function(bR,e){return e%2===1},lt:function(bS,bR,e){return bRe[3]-0},nth:function(bS,bR,e){return e[3]-0===bR},eq:function(bS,bR,e){return e[3]-0===bR}},filter:{PSEUDO:function(bS,bX,bW,bY){var e=bX[1],bR=bE.filters[e];if(bR){return bR(bS,bW,bX,bY)}else{if(e==="contains"){return(bS.textContent||bS.innerText||bw([bS])||"").indexOf(bX[3])>=0}else{if(e==="not"){var bT=bX[3];for(var bV=0,bU=bT.length;bV=0)}}},ID:function(bR,e){return bR.nodeType===1&&bR.getAttribute("id")===e},TAG:function(bR,e){return(e==="*"&&bR.nodeType===1)||!!bR.nodeName&&bR.nodeName.toLowerCase()===e},CLASS:function(bR,e){return(" "+(bR.className||bR.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(bV,bT){var bS=bT[1],e=by.attr?by.attr(bV,bS):bE.attrHandle[bS]?bE.attrHandle[bS](bV):bV[bS]!=null?bV[bS]:bV.getAttribute(bS),bW=e+"",bU=bT[2],bR=bT[4];return e==null?bU==="!=":!bU&&by.attr?e!=null:bU==="="?bW===bR:bU==="*="?bW.indexOf(bR)>=0:bU==="~="?(" "+bW+" ").indexOf(bR)>=0:!bR?bW&&e!==false:bU==="!="?bW!==bR:bU==="^="?bW.indexOf(bR)===0:bU==="$="?bW.substr(bW.length-bR.length)===bR:bU==="|="?bW===bR||bW.substr(0,bR.length+1)===bR+"-":false},POS:function(bU,bR,bS,bV){var e=bR[2],bT=bE.setFilters[e];if(bT){return bT(bU,bS,bR,bV)}}}};var bD=bE.match.POS,bx=function(bR,e){return"\\"+(e-0+1)};for(var bz in bE.match){bE.match[bz]=new RegExp(bE.match[bz].source+(/(?![^\[]*\])(?![^\(]*\))/.source));bE.leftMatch[bz]=new RegExp(/(^(?:.|\r|\n)*?)/.source+bE.match[bz].source.replace(/\\(\d+)/g,bx))}var bF=function(bR,e){bR=Array.prototype.slice.call(bR,0);if(e){e.push.apply(e,bR);return e}return bR};try{Array.prototype.slice.call(av.documentElement.childNodes,0)[0].nodeType}catch(bP){bF=function(bU,bT){var bS=0,bR=bT||[];if(bL.call(bU)==="[object Array]"){Array.prototype.push.apply(bR,bU)}else{if(typeof bU.length==="number"){for(var e=bU.length;bS";e.insertBefore(bR,e.firstChild);if(av.getElementById(bS)){bE.find.ID=function(bU,bV,bW){if(typeof bV.getElementById!=="undefined"&&!bW){var bT=bV.getElementById(bU[1]);return bT?bT.id===bU[1]||typeof bT.getAttributeNode!=="undefined"&&bT.getAttributeNode("id").nodeValue===bU[1]?[bT]:L:[]}};bE.filter.ID=function(bV,bT){var bU=typeof bV.getAttributeNode!=="undefined"&&bV.getAttributeNode("id");return bV.nodeType===1&&bU&&bU.nodeValue===bT}}e.removeChild(bR);e=bR=null})();(function(){var e=av.createElement("div");e.appendChild(av.createComment(""));if(e.getElementsByTagName("*").length>0){bE.find.TAG=function(bR,bV){var bU=bV.getElementsByTagName(bR[1]);if(bR[1]==="*"){var bT=[];for(var bS=0;bU[bS];bS++){if(bU[bS].nodeType===1){bT.push(bU[bS])}}bU=bT}return bU}}e.innerHTML="";if(e.firstChild&&typeof e.firstChild.getAttribute!=="undefined"&&e.firstChild.getAttribute("href")!=="#"){bE.attrHandle.href=function(bR){return bR.getAttribute("href",2)}}e=null})();if(av.querySelectorAll){(function(){var e=by,bT=av.createElement("div"),bS="__sizzle__";bT.innerHTML="

        ";if(bT.querySelectorAll&&bT.querySelectorAll(".TEST").length===0){return}by=function(b4,bV,bZ,b3){bV=bV||av;if(!b3&&!by.isXML(bV)){var b2=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b4);if(b2&&(bV.nodeType===1||bV.nodeType===9)){if(b2[1]){return bF(bV.getElementsByTagName(b4),bZ)}else{if(b2[2]&&bE.find.CLASS&&bV.getElementsByClassName){return bF(bV.getElementsByClassName(b2[2]),bZ)}}}if(bV.nodeType===9){if(b4==="body"&&bV.body){return bF([bV.body],bZ)}else{if(b2&&b2[3]){var bY=bV.getElementById(b2[3]);if(bY&&bY.parentNode){if(bY.id===b2[3]){return bF([bY],bZ)}}else{return bF([],bZ)}}}try{return bF(bV.querySelectorAll(b4),bZ)}catch(b0){}}else{if(bV.nodeType===1&&bV.nodeName.toLowerCase()!=="object"){var bW=bV,bX=bV.getAttribute("id"),bU=bX||bS,b6=bV.parentNode,b5=/^\s*[+~]/.test(b4);if(!bX){bV.setAttribute("id",bU)}else{bU=bU.replace(/'/g,"\\$&")}if(b5&&b6){bV=bV.parentNode}try{if(!b5||b6){return bF(bV.querySelectorAll("[id='"+bU+"'] "+b4),bZ)}}catch(b1){}finally{if(!bX){bW.removeAttribute("id")}}}}}return e(b4,bV,bZ,b3)};for(var bR in e){by[bR]=e[bR]}bT=null})()}(function(){var e=av.documentElement,bS=e.matchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.msMatchesSelector;if(bS){var bU=!bS.call(av.createElement("div"),"div"),bR=false;try{bS.call(av.documentElement,"[test!='']:sizzle")}catch(bT){bR=true}by.matchesSelector=function(bW,bY){bY=bY.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!by.isXML(bW)){try{if(bR||!bE.match.PSEUDO.test(bY)&&!/!=/.test(bY)){var bV=bS.call(bW,bY);if(bV||!bU||bW.document&&bW.document.nodeType!==11){return bV}}}catch(bX){}}return by(bY,null,null,[bW]).length>0}}})();(function(){var e=av.createElement("div");e.innerHTML="
        ";if(!e.getElementsByClassName||e.getElementsByClassName("e").length===0){return}e.lastChild.className="e";if(e.getElementsByClassName("e").length===1){return}bE.order.splice(1,0,"CLASS");bE.find.CLASS=function(bR,bS,bT){if(typeof bS.getElementsByClassName!=="undefined"&&!bT){return bS.getElementsByClassName(bR[1])}};e=null})();function bv(bR,bW,bV,bZ,bX,bY){for(var bT=0,bS=bZ.length;bT0){bU=e;break}}}e=e[bR]}bZ[bT]=bU}}}if(av.documentElement.contains){by.contains=function(bR,e){return bR!==e&&(bR.contains?bR.contains(e):true)}}else{if(av.documentElement.compareDocumentPosition){by.contains=function(bR,e){return !!(bR.compareDocumentPosition(e)&16)}}else{by.contains=function(){return false}}}by.isXML=function(e){var bR=(e?e.ownerDocument||e:0).documentElement;return bR?bR.nodeName!=="HTML":false};var bM=function(bS,e,bW){var bV,bX=[],bU="",bY=e.nodeType?[e]:e;while((bV=bE.match.PSEUDO.exec(bS))){bU+=bV[0];bS=bS.replace(bE.match.PSEUDO,"")}bS=bE.relative[bS]?bS+"*":bS;for(var bT=0,bR=bY.length;bT0){for(bB=bA;bB=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(by,bx){var bv=[],bw,e,bz=this[0];if(b.isArray(by)){var bB=1;while(bz&&bz.ownerDocument&&bz!==bx){for(bw=0;bw-1:b.find.matchesSelector(bz,by)){bv.push(bz);break}else{bz=bz.parentNode;if(!bz||!bz.ownerDocument||bz===bx||bz.nodeType===11){break}}}}bv=bv.length>1?b.unique(bv):bv;return this.pushStack(bv,"closest",by)},index:function(e){if(!e){return(this[0]&&this[0].parentNode)?this.prevAll().length:-1}if(typeof e==="string"){return b.inArray(this[0],b(e))}return b.inArray(e.jquery?e[0]:e,this)},add:function(e,bv){var bx=typeof e==="string"?b(e,bv):b.makeArray(e&&e.nodeType?[e]:e),bw=b.merge(this.get(),bx);return this.pushStack(C(bx[0])||C(bw[0])?bw:b.unique(bw))},andSelf:function(){return this.add(this.prevObject)}});function C(e){return !e||!e.parentNode||e.parentNode.nodeType===11}b.each({parent:function(bv){var e=bv.parentNode;return e&&e.nodeType!==11?e:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(bv,e,bw){return b.dir(bv,"parentNode",bw)},next:function(e){return b.nth(e,2,"nextSibling")},prev:function(e){return b.nth(e,2,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(bv,e,bw){return b.dir(bv,"nextSibling",bw)},prevUntil:function(bv,e,bw){return b.dir(bv,"previousSibling",bw)},siblings:function(e){return b.sibling(e.parentNode.firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.makeArray(e.childNodes)}},function(e,bv){b.fn[e]=function(by,bw){var bx=b.map(this,bv,by);if(!ab.test(e)){bw=by}if(bw&&typeof bw==="string"){bx=b.filter(bw,bx)}bx=this.length>1&&!ay[e]?b.unique(bx):bx;if((this.length>1||a9.test(bw))&&aq.test(e)){bx=bx.reverse()}return this.pushStack(bx,e,P.call(arguments).join(","))}});b.extend({filter:function(bw,e,bv){if(bv){bw=":not("+bw+")"}return e.length===1?b.find.matchesSelector(e[0],bw)?[e[0]]:[]:b.find.matches(bw,e)},dir:function(bw,bv,by){var e=[],bx=bw[bv];while(bx&&bx.nodeType!==9&&(by===L||bx.nodeType!==1||!b(bx).is(by))){if(bx.nodeType===1){e.push(bx)}bx=bx[bv]}return e},nth:function(by,e,bw,bx){e=e||1;var bv=0;for(;by;by=by[bw]){if(by.nodeType===1&&++bv===e){break}}return by},sibling:function(bw,bv){var e=[];for(;bw;bw=bw.nextSibling){if(bw.nodeType===1&&bw!==bv){e.push(bw)}}return e}});function aG(bx,bw,e){bw=bw||0;if(b.isFunction(bw)){return b.grep(bx,function(bz,by){var bA=!!bw.call(bz,by,bz);return bA===e})}else{if(bw.nodeType){return b.grep(bx,function(bz,by){return(bz===bw)===e})}else{if(typeof bw==="string"){var bv=b.grep(bx,function(by){return by.nodeType===1});if(bp.test(bw)){return b.filter(bw,bv,!e)}else{bw=b.filter(bw,bv)}}}}return b.grep(bx,function(bz,by){return(b.inArray(bz,bw)>=0)===e})}function a(e){var bw=aR.split("|"),bv=e.createDocumentFragment();if(bv.createElement){while(bw.length){bv.createElement(bw.pop())}}return bv}var aR="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",ag=/ jQuery\d+="(?:\d+|null)"/g,ar=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,d=/<([\w:]+)/,w=/",""],legend:[1,"
        ","
        "],thead:[1,"","
        "],tr:[2,"","
        "],td:[3,"","
        "],col:[2,"","
        "],area:[1,"",""],_default:[0,"",""]},ac=a(av);ax.optgroup=ax.option;ax.tbody=ax.tfoot=ax.colgroup=ax.caption=ax.thead;ax.th=ax.td;if(!b.support.htmlSerialize){ax._default=[1,"div
        ","
        "]}b.fn.extend({text:function(e){if(b.isFunction(e)){return this.each(function(bw){var bv=b(this);bv.text(e.call(this,bw,bv.text()))})}if(typeof e!=="object"&&e!==L){return this.empty().append((this[0]&&this[0].ownerDocument||av).createTextNode(e))}return b.text(this)},wrapAll:function(e){if(b.isFunction(e)){return this.each(function(bw){b(this).wrapAll(e.call(this,bw))})}if(this[0]){var bv=b(e,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){bv.insertBefore(this[0])}bv.map(function(){var bw=this;while(bw.firstChild&&bw.firstChild.nodeType===1){bw=bw.firstChild}return bw}).append(this)}return this},wrapInner:function(e){if(b.isFunction(e)){return this.each(function(bv){b(this).wrapInner(e.call(this,bv))})}return this.each(function(){var bv=b(this),bw=bv.contents();if(bw.length){bw.wrapAll(e)}else{bv.append(e)}})},wrap:function(e){var bv=b.isFunction(e);return this.each(function(bw){b(this).wrapAll(bv?e.call(this,bw):e)})},unwrap:function(){return this.parent().each(function(){if(!b.nodeName(this,"body")){b(this).replaceWith(this.childNodes)}}).end()},append:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.appendChild(e)}})},prepend:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.insertBefore(e,this.firstChild)}})},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this)})}else{if(arguments.length){var e=b.clean(arguments);e.push.apply(e,this.toArray());return this.pushStack(e,"before",arguments)}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this.nextSibling)})}else{if(arguments.length){var e=this.pushStack(this,"after",arguments);e.push.apply(e,b.clean(arguments));return e}}},remove:function(e,bx){for(var bv=0,bw;(bw=this[bv])!=null;bv++){if(!e||b.filter(e,[bw]).length){if(!bx&&bw.nodeType===1){b.cleanData(bw.getElementsByTagName("*"));b.cleanData([bw])}if(bw.parentNode){bw.parentNode.removeChild(bw)}}}return this},empty:function(){for(var e=0,bv;(bv=this[e])!=null;e++){if(bv.nodeType===1){b.cleanData(bv.getElementsByTagName("*"))}while(bv.firstChild){bv.removeChild(bv.firstChild)}}return this},clone:function(bv,e){bv=bv==null?false:bv;e=e==null?bv:e;return this.map(function(){return b.clone(this,bv,e)})},html:function(bx){if(bx===L){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(ag,""):null}else{if(typeof bx==="string"&&!ae.test(bx)&&(b.support.leadingWhitespace||!ar.test(bx))&&!ax[(d.exec(bx)||["",""])[1].toLowerCase()]){bx=bx.replace(R,"<$1>");try{for(var bw=0,bv=this.length;bw1&&bw0?this.clone(true):this).get();b(bC[bA])[bv](by);bz=bz.concat(by)}return this.pushStack(bz,e,bC.selector)}}});function bg(e){if(typeof e.getElementsByTagName!=="undefined"){return e.getElementsByTagName("*")}else{if(typeof e.querySelectorAll!=="undefined"){return e.querySelectorAll("*")}else{return[]}}}function az(e){if(e.type==="checkbox"||e.type==="radio"){e.defaultChecked=e.checked}}function E(e){var bv=(e.nodeName||"").toLowerCase();if(bv==="input"){az(e)}else{if(bv!=="script"&&typeof e.getElementsByTagName!=="undefined"){b.grep(e.getElementsByTagName("input"),az)}}}function al(e){var bv=av.createElement("div");ac.appendChild(bv);bv.innerHTML=e.outerHTML;return bv.firstChild}b.extend({clone:function(by,bA,bw){var e,bv,bx,bz=b.support.html5Clone||!ah.test("<"+by.nodeName)?by.cloneNode(true):al(by);if((!b.support.noCloneEvent||!b.support.noCloneChecked)&&(by.nodeType===1||by.nodeType===11)&&!b.isXMLDoc(by)){ai(by,bz);e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){if(bv[bx]){ai(e[bx],bv[bx])}}}if(bA){t(by,bz);if(bw){e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){t(e[bx],bv[bx])}}}e=bv=null;return bz},clean:function(bw,by,bH,bA){var bF;by=by||av;if(typeof by.createElement==="undefined"){by=by.ownerDocument||by[0]&&by[0].ownerDocument||av}var bI=[],bB;for(var bE=0,bz;(bz=bw[bE])!=null;bE++){if(typeof bz==="number"){bz+=""}if(!bz){continue}if(typeof bz==="string"){if(!W.test(bz)){bz=by.createTextNode(bz)}else{bz=bz.replace(R,"<$1>");var bK=(d.exec(bz)||["",""])[1].toLowerCase(),bx=ax[bK]||ax._default,bD=bx[0],bv=by.createElement("div");if(by===av){ac.appendChild(bv)}else{a(by).appendChild(bv)}bv.innerHTML=bx[1]+bz+bx[2];while(bD--){bv=bv.lastChild}if(!b.support.tbody){var e=w.test(bz),bC=bK==="table"&&!e?bv.firstChild&&bv.firstChild.childNodes:bx[1]===""&&!e?bv.childNodes:[];for(bB=bC.length-1;bB>=0;--bB){if(b.nodeName(bC[bB],"tbody")&&!bC[bB].childNodes.length){bC[bB].parentNode.removeChild(bC[bB])}}}if(!b.support.leadingWhitespace&&ar.test(bz)){bv.insertBefore(by.createTextNode(ar.exec(bz)[0]),bv.firstChild)}bz=bv.childNodes}}var bG;if(!b.support.appendChecked){if(bz[0]&&typeof(bG=bz.length)==="number"){for(bB=0;bB=0){return bx+"px"}}else{return bx}}}});if(!b.support.opacity){b.cssHooks.opacity={get:function(bv,e){return au.test((e&&bv.currentStyle?bv.currentStyle.filter:bv.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":e?"1":""},set:function(by,bz){var bx=by.style,bv=by.currentStyle,e=b.isNumeric(bz)?"alpha(opacity="+bz*100+")":"",bw=bv&&bv.filter||bx.filter||"";bx.zoom=1;if(bz>=1&&b.trim(bw.replace(ak,""))===""){bx.removeAttribute("filter");if(bv&&!bv.filter){return}}bx.filter=ak.test(bw)?bw.replace(ak,e):bw+" "+e}}}b(function(){if(!b.support.reliableMarginRight){b.cssHooks.marginRight={get:function(bw,bv){var e;b.swap(bw,{display:"inline-block"},function(){if(bv){e=Z(bw,"margin-right","marginRight")}else{e=bw.style.marginRight}});return e}}}});if(av.defaultView&&av.defaultView.getComputedStyle){aI=function(by,bw){var bv,bx,e;bw=bw.replace(z,"-$1").toLowerCase();if((bx=by.ownerDocument.defaultView)&&(e=bx.getComputedStyle(by,null))){bv=e.getPropertyValue(bw);if(bv===""&&!b.contains(by.ownerDocument.documentElement,by)){bv=b.style(by,bw)}}return bv}}if(av.documentElement.currentStyle){aX=function(bz,bw){var bA,e,by,bv=bz.currentStyle&&bz.currentStyle[bw],bx=bz.style;if(bv===null&&bx&&(by=bx[bw])){bv=by}if(!bc.test(bv)&&bn.test(bv)){bA=bx.left;e=bz.runtimeStyle&&bz.runtimeStyle.left;if(e){bz.runtimeStyle.left=bz.currentStyle.left}bx.left=bw==="fontSize"?"1em":(bv||0);bv=bx.pixelLeft+"px";bx.left=bA;if(e){bz.runtimeStyle.left=e}}return bv===""?"auto":bv}}Z=aI||aX;function p(by,bw,bv){var bA=bw==="width"?by.offsetWidth:by.offsetHeight,bz=bw==="width"?an:a1,bx=0,e=bz.length;if(bA>0){if(bv!=="border"){for(;bx)<[^<]*)*<\/script>/gi,q=/^(?:select|textarea)/i,h=/\s+/,br=/([?&])_=[^&]*/,K=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,A=b.fn.load,aa={},r={},aE,s,aV=["*/"]+["*"];try{aE=bl.href}catch(aw){aE=av.createElement("a");aE.href="";aE=aE.href}s=K.exec(aE.toLowerCase())||[];function f(e){return function(by,bA){if(typeof by!=="string"){bA=by;by="*"}if(b.isFunction(bA)){var bx=by.toLowerCase().split(h),bw=0,bz=bx.length,bv,bB,bC;for(;bw=0){var e=bw.slice(by,bw.length);bw=bw.slice(0,by)}var bx="GET";if(bz){if(b.isFunction(bz)){bA=bz;bz=L}else{if(typeof bz==="object"){bz=b.param(bz,b.ajaxSettings.traditional);bx="POST"}}}var bv=this;b.ajax({url:bw,type:bx,dataType:"html",data:bz,complete:function(bC,bB,bD){bD=bC.responseText;if(bC.isResolved()){bC.done(function(bE){bD=bE});bv.html(e?b("
        ").append(bD.replace(a6,"")).find(e):bD)}if(bA){bv.each(bA,[bD,bB,bC])}}});return this},serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?b.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||q.test(this.nodeName)||aZ.test(this.type))}).map(function(e,bv){var bw=b(this).val();return bw==null?null:b.isArray(bw)?b.map(bw,function(by,bx){return{name:bv.name,value:by.replace(bs,"\r\n")}}):{name:bv.name,value:bw.replace(bs,"\r\n")}}).get()}});b.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(e,bv){b.fn[bv]=function(bw){return this.on(bv,bw)}});b.each(["get","post"],function(e,bv){b[bv]=function(bw,by,bz,bx){if(b.isFunction(by)){bx=bx||bz;bz=by;by=L}return b.ajax({type:bv,url:bw,data:by,success:bz,dataType:bx})}});b.extend({getScript:function(e,bv){return b.get(e,L,bv,"script")},getJSON:function(e,bv,bw){return b.get(e,bv,bw,"json")},ajaxSetup:function(bv,e){if(e){am(bv,b.ajaxSettings)}else{e=bv;bv=b.ajaxSettings}am(bv,e);return bv},ajaxSettings:{url:aE,isLocal:aM.test(s[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":aV},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":bb.String,"text html":true,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{context:true,url:true}},ajaxPrefilter:f(aa),ajaxTransport:f(r),ajax:function(bz,bx){if(typeof bz==="object"){bx=bz;bz=L}bx=bx||{};var bD=b.ajaxSetup({},bx),bS=bD.context||bD,bG=bS!==bD&&(bS.nodeType||bS instanceof b)?b(bS):b.event,bR=b.Deferred(),bN=b.Callbacks("once memory"),bB=bD.statusCode||{},bC,bH={},bO={},bQ,by,bL,bE,bI,bA=0,bw,bK,bJ={readyState:0,setRequestHeader:function(bT,bU){if(!bA){var e=bT.toLowerCase();bT=bO[e]=bO[e]||bT;bH[bT]=bU}return this},getAllResponseHeaders:function(){return bA===2?bQ:null},getResponseHeader:function(bT){var e;if(bA===2){if(!by){by={};while((e=aD.exec(bQ))){by[e[1].toLowerCase()]=e[2]}}e=by[bT.toLowerCase()]}return e===L?null:e},overrideMimeType:function(e){if(!bA){bD.mimeType=e}return this},abort:function(e){e=e||"abort";if(bL){bL.abort(e)}bF(0,e);return this}};function bF(bZ,bU,b0,bW){if(bA===2){return}bA=2;if(bE){clearTimeout(bE)}bL=L;bQ=bW||"";bJ.readyState=bZ>0?4:0;var bT,b4,b3,bX=bU,bY=b0?bj(bD,bJ,b0):L,bV,b2;if(bZ>=200&&bZ<300||bZ===304){if(bD.ifModified){if((bV=bJ.getResponseHeader("Last-Modified"))){b.lastModified[bC]=bV}if((b2=bJ.getResponseHeader("Etag"))){b.etag[bC]=b2}}if(bZ===304){bX="notmodified";bT=true}else{try{b4=G(bD,bY);bX="success";bT=true}catch(b1){bX="parsererror";b3=b1}}}else{b3=bX;if(!bX||bZ){bX="error";if(bZ<0){bZ=0}}}bJ.status=bZ;bJ.statusText=""+(bU||bX);if(bT){bR.resolveWith(bS,[b4,bX,bJ])}else{bR.rejectWith(bS,[bJ,bX,b3])}bJ.statusCode(bB);bB=L;if(bw){bG.trigger("ajax"+(bT?"Success":"Error"),[bJ,bD,bT?b4:b3])}bN.fireWith(bS,[bJ,bX]);if(bw){bG.trigger("ajaxComplete",[bJ,bD]);if(!(--b.active)){b.event.trigger("ajaxStop")}}}bR.promise(bJ);bJ.success=bJ.done;bJ.error=bJ.fail;bJ.complete=bN.add;bJ.statusCode=function(bT){if(bT){var e;if(bA<2){for(e in bT){bB[e]=[bB[e],bT[e]]}}else{e=bT[bJ.status];bJ.then(e,e)}}return this};bD.url=((bz||bD.url)+"").replace(bq,"").replace(c,s[1]+"//");bD.dataTypes=b.trim(bD.dataType||"*").toLowerCase().split(h);if(bD.crossDomain==null){bI=K.exec(bD.url.toLowerCase());bD.crossDomain=!!(bI&&(bI[1]!=s[1]||bI[2]!=s[2]||(bI[3]||(bI[1]==="http:"?80:443))!=(s[3]||(s[1]==="http:"?80:443))))}if(bD.data&&bD.processData&&typeof bD.data!=="string"){bD.data=b.param(bD.data,bD.traditional)}aW(aa,bD,bx,bJ);if(bA===2){return false}bw=bD.global;bD.type=bD.type.toUpperCase();bD.hasContent=!aQ.test(bD.type);if(bw&&b.active++===0){b.event.trigger("ajaxStart")}if(!bD.hasContent){if(bD.data){bD.url+=(M.test(bD.url)?"&":"?")+bD.data;delete bD.data}bC=bD.url;if(bD.cache===false){var bv=b.now(),bP=bD.url.replace(br,"$1_="+bv);bD.url=bP+((bP===bD.url)?(M.test(bD.url)?"&":"?")+"_="+bv:"")}}if(bD.data&&bD.hasContent&&bD.contentType!==false||bx.contentType){bJ.setRequestHeader("Content-Type",bD.contentType)}if(bD.ifModified){bC=bC||bD.url;if(b.lastModified[bC]){bJ.setRequestHeader("If-Modified-Since",b.lastModified[bC])}if(b.etag[bC]){bJ.setRequestHeader("If-None-Match",b.etag[bC])}}bJ.setRequestHeader("Accept",bD.dataTypes[0]&&bD.accepts[bD.dataTypes[0]]?bD.accepts[bD.dataTypes[0]]+(bD.dataTypes[0]!=="*"?", "+aV+"; q=0.01":""):bD.accepts["*"]);for(bK in bD.headers){bJ.setRequestHeader(bK,bD.headers[bK])}if(bD.beforeSend&&(bD.beforeSend.call(bS,bJ,bD)===false||bA===2)){bJ.abort();return false}for(bK in {success:1,error:1,complete:1}){bJ[bK](bD[bK])}bL=aW(r,bD,bx,bJ);if(!bL){bF(-1,"No Transport")}else{bJ.readyState=1;if(bw){bG.trigger("ajaxSend",[bJ,bD])}if(bD.async&&bD.timeout>0){bE=setTimeout(function(){bJ.abort("timeout")},bD.timeout)}try{bA=1;bL.send(bH,bF)}catch(bM){if(bA<2){bF(-1,bM)}else{throw bM}}}return bJ},param:function(e,bw){var bv=[],by=function(bz,bA){bA=b.isFunction(bA)?bA():bA;bv[bv.length]=encodeURIComponent(bz)+"="+encodeURIComponent(bA)};if(bw===L){bw=b.ajaxSettings.traditional}if(b.isArray(e)||(e.jquery&&!b.isPlainObject(e))){b.each(e,function(){by(this.name,this.value)})}else{for(var bx in e){v(bx,e[bx],bw,by)}}return bv.join("&").replace(k,"+")}});function v(bw,by,bv,bx){if(b.isArray(by)){b.each(by,function(bA,bz){if(bv||ap.test(bw)){bx(bw,bz)}else{v(bw+"["+(typeof bz==="object"||b.isArray(bz)?bA:"")+"]",bz,bv,bx)}})}else{if(!bv&&by!=null&&typeof by==="object"){for(var e in by){v(bw+"["+e+"]",by[e],bv,bx)}}else{bx(bw,by)}}}b.extend({active:0,lastModified:{},etag:{}});function bj(bD,bC,bz){var bv=bD.contents,bB=bD.dataTypes,bw=bD.responseFields,by,bA,bx,e;for(bA in bw){if(bA in bz){bC[bw[bA]]=bz[bA]}}while(bB[0]==="*"){bB.shift();if(by===L){by=bD.mimeType||bC.getResponseHeader("content-type")}}if(by){for(bA in bv){if(bv[bA]&&bv[bA].test(by)){bB.unshift(bA);break}}}if(bB[0] in bz){bx=bB[0]}else{for(bA in bz){if(!bB[0]||bD.converters[bA+" "+bB[0]]){bx=bA;break}if(!e){e=bA}}bx=bx||e}if(bx){if(bx!==bB[0]){bB.unshift(bx)}return bz[bx]}}function G(bH,bz){if(bH.dataFilter){bz=bH.dataFilter(bz,bH.dataType)}var bD=bH.dataTypes,bG={},bA,bE,bw=bD.length,bB,bC=bD[0],bx,by,bF,bv,e;for(bA=1;bA=bw.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();bw.animatedProperties[this.prop]=true;for(bA in bw.animatedProperties){if(bw.animatedProperties[bA]!==true){e=false}}if(e){if(bw.overflow!=null&&!b.support.shrinkWrapBlocks){b.each(["","X","Y"],function(bC,bD){bz.style["overflow"+bD]=bw.overflow[bC]})}if(bw.hide){b(bz).hide()}if(bw.hide||bw.show){for(bA in bw.animatedProperties){b.style(bz,bA,bw.orig[bA]);b.removeData(bz,"fxshow"+bA,true);b.removeData(bz,"toggle"+bA,true)}}bv=bw.complete;if(bv){bw.complete=false;bv.call(bz)}}return false}else{if(bw.duration==Infinity){this.now=bx}else{bB=bx-this.startTime;this.state=bB/bw.duration;this.pos=b.easing[bw.animatedProperties[this.prop]](this.state,bB,0,1,bw.duration);this.now=this.start+((this.end-this.start)*this.pos)}this.update()}return true}};b.extend(b.fx,{tick:function(){var bw,bv=b.timers,e=0;for(;e").appendTo(e),bw=bv.css("display");bv.remove();if(bw==="none"||bw===""){if(!a8){a8=av.createElement("iframe");a8.frameBorder=a8.width=a8.height=0}e.appendChild(a8);if(!m||!a8.createElement){m=(a8.contentWindow||a8.contentDocument).document;m.write((av.compatMode==="CSS1Compat"?"":"")+"");m.close()}bv=m.createElement(bx);m.body.appendChild(bv);bw=b.css(bv,"display");e.removeChild(a8)}Q[bx]=bw}return Q[bx]}var V=/^t(?:able|d|h)$/i,ad=/^(?:body|html)$/i;if("getBoundingClientRect" in av.documentElement){b.fn.offset=function(bI){var by=this[0],bB;if(bI){return this.each(function(e){b.offset.setOffset(this,bI,e)})}if(!by||!by.ownerDocument){return null}if(by===by.ownerDocument.body){return b.offset.bodyOffset(by)}try{bB=by.getBoundingClientRect()}catch(bF){}var bH=by.ownerDocument,bw=bH.documentElement;if(!bB||!b.contains(bw,by)){return bB?{top:bB.top,left:bB.left}:{top:0,left:0}}var bC=bH.body,bD=aK(bH),bA=bw.clientTop||bC.clientTop||0,bE=bw.clientLeft||bC.clientLeft||0,bv=bD.pageYOffset||b.support.boxModel&&bw.scrollTop||bC.scrollTop,bz=bD.pageXOffset||b.support.boxModel&&bw.scrollLeft||bC.scrollLeft,bG=bB.top+bv-bA,bx=bB.left+bz-bE;return{top:bG,left:bx}}}else{b.fn.offset=function(bF){var bz=this[0];if(bF){return this.each(function(bG){b.offset.setOffset(this,bF,bG)})}if(!bz||!bz.ownerDocument){return null}if(bz===bz.ownerDocument.body){return b.offset.bodyOffset(bz)}var bC,bw=bz.offsetParent,bv=bz,bE=bz.ownerDocument,bx=bE.documentElement,bA=bE.body,bB=bE.defaultView,e=bB?bB.getComputedStyle(bz,null):bz.currentStyle,bD=bz.offsetTop,by=bz.offsetLeft;while((bz=bz.parentNode)&&bz!==bA&&bz!==bx){if(b.support.fixedPosition&&e.position==="fixed"){break}bC=bB?bB.getComputedStyle(bz,null):bz.currentStyle;bD-=bz.scrollTop;by-=bz.scrollLeft;if(bz===bw){bD+=bz.offsetTop;by+=bz.offsetLeft;if(b.support.doesNotAddBorder&&!(b.support.doesAddBorderForTableAndCells&&V.test(bz.nodeName))){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}bv=bw;bw=bz.offsetParent}if(b.support.subtractsBorderForOverflowNotVisible&&bC.overflow!=="visible"){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}e=bC}if(e.position==="relative"||e.position==="static"){bD+=bA.offsetTop;by+=bA.offsetLeft}if(b.support.fixedPosition&&e.position==="fixed"){bD+=Math.max(bx.scrollTop,bA.scrollTop);by+=Math.max(bx.scrollLeft,bA.scrollLeft)}return{top:bD,left:by}}}b.offset={bodyOffset:function(e){var bw=e.offsetTop,bv=e.offsetLeft;if(b.support.doesNotIncludeMarginInBodyOffset){bw+=parseFloat(b.css(e,"marginTop"))||0;bv+=parseFloat(b.css(e,"marginLeft"))||0}return{top:bw,left:bv}},setOffset:function(bx,bG,bA){var bB=b.css(bx,"position");if(bB==="static"){bx.style.position="relative"}var bz=b(bx),bv=bz.offset(),e=b.css(bx,"top"),bE=b.css(bx,"left"),bF=(bB==="absolute"||bB==="fixed")&&b.inArray("auto",[e,bE])>-1,bD={},bC={},bw,by;if(bF){bC=bz.position();bw=bC.top;by=bC.left}else{bw=parseFloat(e)||0;by=parseFloat(bE)||0}if(b.isFunction(bG)){bG=bG.call(bx,bA,bv)}if(bG.top!=null){bD.top=(bG.top-bv.top)+bw}if(bG.left!=null){bD.left=(bG.left-bv.left)+by}if("using" in bG){bG.using.call(bx,bD)}else{bz.css(bD)}}};b.fn.extend({position:function(){if(!this[0]){return null}var bw=this[0],bv=this.offsetParent(),bx=this.offset(),e=ad.test(bv[0].nodeName)?{top:0,left:0}:bv.offset();bx.top-=parseFloat(b.css(bw,"marginTop"))||0;bx.left-=parseFloat(b.css(bw,"marginLeft"))||0;e.top+=parseFloat(b.css(bv[0],"borderTopWidth"))||0;e.left+=parseFloat(b.css(bv[0],"borderLeftWidth"))||0;return{top:bx.top-e.top,left:bx.left-e.left}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||av.body;while(e&&(!ad.test(e.nodeName)&&b.css(e,"position")==="static")){e=e.offsetParent}return e})}});b.each(["Left","Top"],function(bv,e){var bw="scroll"+e;b.fn[bw]=function(bz){var bx,by;if(bz===L){bx=this[0];if(!bx){return null}by=aK(bx);return by?("pageXOffset" in by)?by[bv?"pageYOffset":"pageXOffset"]:b.support.boxModel&&by.document.documentElement[bw]||by.document.body[bw]:bx[bw]}return this.each(function(){by=aK(this);if(by){by.scrollTo(!bv?bz:b(by).scrollLeft(),bv?bz:b(by).scrollTop())}else{this[bw]=bz}})}});function aK(e){return b.isWindow(e)?e:e.nodeType===9?e.defaultView||e.parentWindow:false}b.each(["Height","Width"],function(bv,e){var bw=e.toLowerCase();b.fn["inner"+e]=function(){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,"padding")):this[bw]():null};b.fn["outer"+e]=function(by){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,by?"margin":"border")):this[bw]():null};b.fn[bw]=function(bz){var bA=this[0];if(!bA){return bz==null?null:this}if(b.isFunction(bz)){return this.each(function(bE){var bD=b(this);bD[bw](bz.call(this,bE,bD[bw]()))})}if(b.isWindow(bA)){var bB=bA.document.documentElement["client"+e],bx=bA.document.body;return bA.document.compatMode==="CSS1Compat"&&bB||bx&&bx["client"+e]||bB}else{if(bA.nodeType===9){return Math.max(bA.documentElement["client"+e],bA.body["scroll"+e],bA.documentElement["scroll"+e],bA.body["offset"+e],bA.documentElement["offset"+e])}else{if(bz===L){var bC=b.css(bA,bw),by=parseFloat(bC);return b.isNumeric(by)?by:bC}else{return this.css(bw,typeof bz==="string"?bz:bz+"px")}}}}});bb.jQuery=bb.$=b;if(typeof define==="function"&&define.amd&&define.amd.jQuery){define("jquery",[],function(){return b})}})(window);/*! - * jQuery UI 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI - */ -(function(a,d){a.ui=a.ui||{};if(a.ui.version){return}a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(e,f){return typeof e==="number"?this.each(function(){var g=this;setTimeout(function(){a(g).focus();if(f){f.call(g)}},e)}):this._focus.apply(this,arguments)},scrollParent:function(){var e;if((a.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){e=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,"position",1))&&(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}else{e=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!e.length?a(document):e},zIndex:function(h){if(h!==d){return this.css("zIndex",h)}if(this.length){var f=a(this[0]),e,g;while(f.length&&f[0]!==document){e=f.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){g=parseInt(f.css("zIndex"),10);if(!isNaN(g)&&g!==0){return g}}f=f.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});a.each(["Width","Height"],function(g,e){var f=e==="Width"?["Left","Right"]:["Top","Bottom"],h=e.toLowerCase(),k={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};function j(m,l,i,n){a.each(f,function(){l-=parseFloat(a.curCSS(m,"padding"+this,true))||0;if(i){l-=parseFloat(a.curCSS(m,"border"+this+"Width",true))||0}if(n){l-=parseFloat(a.curCSS(m,"margin"+this,true))||0}});return l}a.fn["inner"+e]=function(i){if(i===d){return k["inner"+e].call(this)}return this.each(function(){a(this).css(h,j(this,i)+"px")})};a.fn["outer"+e]=function(i,l){if(typeof i!=="number"){return k["outer"+e].call(this,i)}return this.each(function(){a(this).css(h,j(this,i,true,l)+"px")})}});function c(g,e){var j=g.nodeName.toLowerCase();if("area"===j){var i=g.parentNode,h=i.name,f;if(!g.href||!h||i.nodeName.toLowerCase()!=="map"){return false}f=a("img[usemap=#"+h+"]")[0];return !!f&&b(f)}return(/input|select|textarea|button|object/.test(j)?!g.disabled:"a"==j?g.href||e:e)&&b(g)}function b(e){return !a(e).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}a.extend(a.expr[":"],{data:function(g,f,e){return !!a.data(g,e[3])},focusable:function(e){return c(e,!isNaN(a.attr(e,"tabindex")))},tabbable:function(g){var e=a.attr(g,"tabindex"),f=isNaN(e);return(f||e>=0)&&c(g,!f)}});a(function(){var e=document.body,f=e.appendChild(f=document.createElement("div"));f.offsetHeight;a.extend(f.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});a.support.minHeight=f.offsetHeight===100;a.support.selectstart="onselectstart" in f;e.removeChild(f).style.display="none"});a.extend(a.ui,{plugin:{add:function(f,g,j){var h=a.ui[f].prototype;for(var e in j){h.plugins[e]=h.plugins[e]||[];h.plugins[e].push([g,j[e]])}},call:function(e,g,f){var j=e.plugins[g];if(!j||!e.element[0].parentNode){return}for(var h=0;h0){return true}h[e]=1;g=(h[e]>0);h[e]=0;return g},isOverAxis:function(f,e,g){return(f>e)&&(f<(e+g))},isOver:function(j,f,i,h,e,g){return a.ui.isOverAxis(j,i,e)&&a.ui.isOverAxis(f,h,g)}})})(jQuery);/*! - * jQuery UI Widget 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Widget - */ -(function(b,d){if(b.cleanData){var c=b.cleanData;b.cleanData=function(f){for(var g=0,h;(h=f[g])!=null;g++){try{b(h).triggerHandler("remove")}catch(j){}}c(f)}}else{var a=b.fn.remove;b.fn.remove=function(e,f){return this.each(function(){if(!f){if(!e||b.filter(e,[this]).length){b("*",this).add([this]).each(function(){try{b(this).triggerHandler("remove")}catch(g){}})}}return a.call(b(this),e,f)})}}b.widget=function(f,h,e){var g=f.split(".")[0],j;f=f.split(".")[1];j=g+"-"+f;if(!e){e=h;h=b.Widget}b.expr[":"][j]=function(k){return !!b.data(k,f)};b[g]=b[g]||{};b[g][f]=function(k,l){if(arguments.length){this._createWidget(k,l)}};var i=new h();i.options=b.extend(true,{},i.options);b[g][f].prototype=b.extend(true,i,{namespace:g,widgetName:f,widgetEventPrefix:b[g][f].prototype.widgetEventPrefix||f,widgetBaseClass:j},e);b.widget.bridge(f,b[g][f])};b.widget.bridge=function(f,e){b.fn[f]=function(i){var g=typeof i==="string",h=Array.prototype.slice.call(arguments,1),j=this;i=!g&&h.length?b.extend.apply(null,[true,i].concat(h)):i;if(g&&i.charAt(0)==="_"){return j}if(g){this.each(function(){var k=b.data(this,f),l=k&&b.isFunction(k[i])?k[i].apply(k,h):k;if(l!==k&&l!==d){j=l;return false}})}else{this.each(function(){var k=b.data(this,f);if(k){k.option(i||{})._init()}else{b.data(this,f,new e(i,this))}})}return j}};b.Widget=function(e,f){if(arguments.length){this._createWidget(e,f)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(f,g){b.data(g,this.widgetName,this);this.element=b(g);this.options=b.extend(true,{},this.options,this._getCreateOptions(),f);var e=this;this.element.bind("remove."+this.widgetName,function(){e.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(f,g){var e=f;if(arguments.length===0){return b.extend({},this.options)}if(typeof f==="string"){if(g===d){return this.options[f]}e={};e[f]=g}this._setOptions(e);return this},_setOptions:function(f){var e=this;b.each(f,function(g,h){e._setOption(g,h)});return this},_setOption:function(e,f){this.options[e]=f;if(e==="disabled"){this.widget()[f?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",f)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(e,f,g){var j,i,h=this.options[e];g=g||{};f=b.Event(f);f.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase();f.target=this.element[0];i=f.originalEvent;if(i){for(j in i){if(!(j in f)){f[j]=i[j]}}}this.element.trigger(f,g);return !(b.isFunction(h)&&h.call(this.element[0],f,g)===false||f.isDefaultPrevented())}}})(jQuery);/*! - * jQuery UI Mouse 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Mouse - * - * Depends: - * jquery.ui.widget.js - */ -(function(b,c){var a=false;b(document).mouseup(function(d){a=false});b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var d=this;this.element.bind("mousedown."+this.widgetName,function(e){return d._mouseDown(e)}).bind("click."+this.widgetName,function(e){if(true===b.data(e.target,d.widgetName+".preventClickEvent")){b.removeData(e.target,d.widgetName+".preventClickEvent");e.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(f){if(a){return}(this._mouseStarted&&this._mouseUp(f));this._mouseDownEvent=f;var e=this,g=(f.which==1),d=(typeof this.options.cancel=="string"&&f.target.nodeName?b(f.target).closest(this.options.cancel).length:false);if(!g||d||!this._mouseCapture(f)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(f)&&this._mouseDelayMet(f)){this._mouseStarted=(this._mouseStart(f)!==false);if(!this._mouseStarted){f.preventDefault();return true}}if(true===b.data(f.target,this.widgetName+".preventClickEvent")){b.removeData(f.target,this.widgetName+".preventClickEvent")}this._mouseMoveDelegate=function(h){return e._mouseMove(h)};this._mouseUpDelegate=function(h){return e._mouseUp(h)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);f.preventDefault();a=true;return true},_mouseMove:function(d){if(b.browser.msie&&!(document.documentMode>=9)&&!d.button){return this._mouseUp(d)}if(this._mouseStarted){this._mouseDrag(d);return d.preventDefault()}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,d)!==false);(this._mouseStarted?this._mouseDrag(d):this._mouseUp(d))}return !this._mouseStarted},_mouseUp:function(d){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;if(d.target==this._mouseDownEvent.target){b.data(d.target,this.widgetName+".preventClickEvent",true)}this._mouseStop(d)}return false},_mouseDistanceMet:function(d){return(Math.max(Math.abs(this._mouseDownEvent.pageX-d.pageX),Math.abs(this._mouseDownEvent.pageY-d.pageY))>=this.options.distance)},_mouseDelayMet:function(d){return this.mouseDelayMet},_mouseStart:function(d){},_mouseDrag:function(d){},_mouseStop:function(d){},_mouseCapture:function(d){return true}})})(jQuery);(function(c,d){c.widget("ui.resizable",c.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000},_create:function(){var f=this,k=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(k.aspectRatio),aspectRatio:k.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:k.helper||k.ghost||k.animate?k.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){this.element.wrap(c('
        ').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=k.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var l=this.handles.split(",");this.handles={};for(var g=0;g
        ');if(/sw|se|ne|nw/.test(j)){h.css({zIndex:++k.zIndex})}if("se"==j){h.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[j]=".ui-resizable-"+j;this.element.append(h)}}this._renderAxis=function(q){q=q||this.element;for(var n in this.handles){if(this.handles[n].constructor==String){this.handles[n]=c(this.handles[n],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var o=c(this.handles[n],this.element),p=0;p=/sw|ne|nw|se|n|s/.test(n)?o.outerHeight():o.outerWidth();var m=["padding",/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"].join("");q.css(m,p);this._proportionallyResize()}if(!c(this.handles[n]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!f.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}f.axis=i&&i[1]?i[1]:"se"}});if(k.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){if(k.disabled){return}c(this).removeClass("ui-resizable-autohide");f._handles.show()},function(){if(k.disabled){return}if(!f.resizing){c(this).addClass("ui-resizable-autohide");f._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var e=function(g){c(g).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){e(this.element);var f=this.element;f.after(this.originalElement.css({position:f.css("position"),width:f.outerWidth(),height:f.outerHeight(),top:f.css("top"),left:f.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);e(this.originalElement);return this},_mouseCapture:function(f){var g=false;for(var e in this.handles){if(c(this.handles[e])[0]==f.target){g=true}}return !this.options.disabled&&g},_mouseStart:function(g){var j=this.options,f=this.element.position(),e=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(e.is(".ui-draggable")||(/absolute/).test(e.css("position"))){e.css({position:"absolute",top:f.top,left:f.left})}this._renderProxy();var k=b(this.helper.css("left")),h=b(this.helper.css("top"));if(j.containment){k+=c(j.containment).scrollLeft()||0;h+=c(j.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:k,top:h};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:k,top:h};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:g.pageX,top:g.pageY};this.aspectRatio=(typeof j.aspectRatio=="number")?j.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var i=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",i=="auto"?this.axis+"-resize":i);e.addClass("ui-resizable-resizing");this._propagate("start",g);return true},_mouseDrag:function(e){var h=this.helper,g=this.options,m={},q=this,j=this.originalMousePosition,n=this.axis;var r=(e.pageX-j.left)||0,p=(e.pageY-j.top)||0;var i=this._change[n];if(!i){return false}var l=i.apply(this,[e,r,p]),k=c.browser.msie&&c.browser.version<7,f=this.sizeDiff;this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey){l=this._updateRatio(l,e)}l=this._respectSize(l,e);this._propagate("resize",e);h.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(l);this._trigger("resize",e,this.ui());return false},_mouseStop:function(h){this.resizing=false;var i=this.options,m=this;if(this._helper){var g=this._proportionallyResizeElements,e=g.length&&(/textarea/i).test(g[0].nodeName),f=e&&c.ui.hasScroll(g[0],"left")?0:m.sizeDiff.height,k=e?0:m.sizeDiff.width;var n={width:(m.helper.width()-k),height:(m.helper.height()-f)},j=(parseInt(m.element.css("left"),10)+(m.position.left-m.originalPosition.left))||null,l=(parseInt(m.element.css("top"),10)+(m.position.top-m.originalPosition.top))||null;if(!i.animate){this.element.css(c.extend(n,{top:l,left:j}))}m.helper.height(m.size.height);m.helper.width(m.size.width);if(this._helper&&!i.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",h);if(this._helper){this.helper.remove()}return false},_updateVirtualBoundaries:function(g){var j=this.options,i,h,f,k,e;e={minWidth:a(j.minWidth)?j.minWidth:0,maxWidth:a(j.maxWidth)?j.maxWidth:Infinity,minHeight:a(j.minHeight)?j.minHeight:0,maxHeight:a(j.maxHeight)?j.maxHeight:Infinity};if(this._aspectRatio||g){i=e.minHeight*this.aspectRatio;f=e.minWidth/this.aspectRatio;h=e.maxHeight*this.aspectRatio;k=e.maxWidth/this.aspectRatio;if(i>e.minWidth){e.minWidth=i}if(f>e.minHeight){e.minHeight=f}if(hl.width),s=a(l.height)&&i.minHeight&&(i.minHeight>l.height);if(h){l.width=i.minWidth}if(s){l.height=i.minHeight}if(t){l.width=i.maxWidth}if(m){l.height=i.maxHeight}var f=this.originalPosition.left+this.originalSize.width,p=this.position.top+this.size.height;var k=/sw|nw|w/.test(q),e=/nw|ne|n/.test(q);if(h&&k){l.left=f-i.minWidth}if(t&&k){l.left=f-i.maxWidth}if(s&&e){l.top=p-i.minHeight}if(m&&e){l.top=p-i.maxHeight}var n=!l.width&&!l.height;if(n&&!l.left&&l.top){l.top=null}else{if(n&&!l.top&&l.left){l.left=null}}return l},_proportionallyResize:function(){var k=this.options;if(!this._proportionallyResizeElements.length){return}var g=this.helper||this.element;for(var f=0;f');var e=c.browser.msie&&c.browser.version<7,g=(e?1:0),h=(e?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+h,height:this.element.outerHeight()+h,position:"absolute",left:this.elementOffset.left-g+"px",top:this.elementOffset.top-g+"px",zIndex:++i.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(g,f,e){return{width:this.originalSize.width+f}},w:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{left:i.left+f,width:g.width-f}},n:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{top:i.top+e,height:g.height-e}},s:function(g,f,e){return{height:this.originalSize.height+e}},se:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},sw:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[g,f,e]))},ne:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},nw:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[g,f,e]))}},_propagate:function(f,e){c.ui.plugin.call(this,f,[e,this.ui()]);(f!="resize"&&this._trigger(f,e,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});c.extend(c.ui.resizable,{version:"1.8.18"});c.ui.plugin.add("resizable","alsoResize",{start:function(f,g){var e=c(this).data("resizable"),i=e.options;var h=function(j){c(j).each(function(){var k=c(this);k.data("resizable-alsoresize",{width:parseInt(k.width(),10),height:parseInt(k.height(),10),left:parseInt(k.css("left"),10),top:parseInt(k.css("top"),10)})})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.parentNode){if(i.alsoResize.length){i.alsoResize=i.alsoResize[0];h(i.alsoResize)}else{c.each(i.alsoResize,function(j){h(j)})}}else{h(i.alsoResize)}},resize:function(g,i){var f=c(this).data("resizable"),j=f.options,h=f.originalSize,l=f.originalPosition;var k={height:(f.size.height-h.height)||0,width:(f.size.width-h.width)||0,top:(f.position.top-l.top)||0,left:(f.position.left-l.left)||0},e=function(m,n){c(m).each(function(){var q=c(this),r=c(this).data("resizable-alsoresize"),p={},o=n&&n.length?n:q.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];c.each(o,function(s,u){var t=(r[u]||0)+(k[u]||0);if(t&&t>=0){p[u]=t||null}});q.css(p)})};if(typeof(j.alsoResize)=="object"&&!j.alsoResize.nodeType){c.each(j.alsoResize,function(m,n){e(m,n)})}else{e(j.alsoResize)}},stop:function(e,f){c(this).removeData("resizable-alsoresize")}});c.ui.plugin.add("resizable","animate",{stop:function(i,n){var p=c(this).data("resizable"),j=p.options;var h=p._proportionallyResizeElements,e=h.length&&(/textarea/i).test(h[0].nodeName),f=e&&c.ui.hasScroll(h[0],"left")?0:p.sizeDiff.height,l=e?0:p.sizeDiff.width;var g={width:(p.size.width-l),height:(p.size.height-f)},k=(parseInt(p.element.css("left"),10)+(p.position.left-p.originalPosition.left))||null,m=(parseInt(p.element.css("top"),10)+(p.position.top-p.originalPosition.top))||null;p.element.animate(c.extend(g,m&&k?{top:m,left:k}:{}),{duration:j.animateDuration,easing:j.animateEasing,step:function(){var o={width:parseInt(p.element.css("width"),10),height:parseInt(p.element.css("height"),10),top:parseInt(p.element.css("top"),10),left:parseInt(p.element.css("left"),10)};if(h&&h.length){c(h[0]).css({width:o.width,height:o.height})}p._updateCache(o);p._propagate("resize",i)}})}});c.ui.plugin.add("resizable","containment",{start:function(f,r){var t=c(this).data("resizable"),j=t.options,l=t.element;var g=j.containment,k=(g instanceof c)?g.get(0):(/parent/.test(g))?l.parent().get(0):g;if(!k){return}t.containerElement=c(k);if(/document/.test(g)||g==document){t.containerOffset={left:0,top:0};t.containerPosition={left:0,top:0};t.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var n=c(k),i=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){i[p]=b(n.css("padding"+o))});t.containerOffset=n.offset();t.containerPosition=n.position();t.containerSize={height:(n.innerHeight()-i[3]),width:(n.innerWidth()-i[1])};var q=t.containerOffset,e=t.containerSize.height,m=t.containerSize.width,h=(c.ui.hasScroll(k,"left")?k.scrollWidth:m),s=(c.ui.hasScroll(k)?k.scrollHeight:e);t.parentData={element:k,left:q.left,top:q.top,width:h,height:s}}},resize:function(g,q){var t=c(this).data("resizable"),i=t.options,f=t.containerSize,p=t.containerOffset,m=t.size,n=t.position,r=t._aspectRatio||g.shiftKey,e={top:0,left:0},h=t.containerElement;if(h[0]!=document&&(/static/).test(h.css("position"))){e=p}if(n.left<(t._helper?p.left:0)){t.size.width=t.size.width+(t._helper?(t.position.left-p.left):(t.position.left-e.left));if(r){t.size.height=t.size.width/i.aspectRatio}t.position.left=i.helper?p.left:0}if(n.top<(t._helper?p.top:0)){t.size.height=t.size.height+(t._helper?(t.position.top-p.top):t.position.top);if(r){t.size.width=t.size.height*i.aspectRatio}t.position.top=t._helper?p.top:0}t.offset.left=t.parentData.left+t.position.left;t.offset.top=t.parentData.top+t.position.top;var l=Math.abs((t._helper?t.offset.left-e.left:(t.offset.left-e.left))+t.sizeDiff.width),s=Math.abs((t._helper?t.offset.top-e.top:(t.offset.top-p.top))+t.sizeDiff.height);var k=t.containerElement.get(0)==t.element.parent().get(0),j=/relative|absolute/.test(t.containerElement.css("position"));if(k&&j){l-=t.parentData.left}if(l+t.size.width>=t.parentData.width){t.size.width=t.parentData.width-l;if(r){t.size.height=t.size.width/t.aspectRatio}}if(s+t.size.height>=t.parentData.height){t.size.height=t.parentData.height-s;if(r){t.size.width=t.size.height*t.aspectRatio}}},stop:function(f,n){var q=c(this).data("resizable"),g=q.options,l=q.position,m=q.containerOffset,e=q.containerPosition,i=q.containerElement;var j=c(q.helper),r=j.offset(),p=j.outerWidth()-q.sizeDiff.width,k=j.outerHeight()-q.sizeDiff.height;if(q._helper&&!g.animate&&(/relative/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}if(q._helper&&!g.animate&&(/static/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}}});c.ui.plugin.add("resizable","ghost",{start:function(g,h){var e=c(this).data("resizable"),i=e.options,f=e.size;e.ghost=e.originalElement.clone();e.ghost.css({opacity:0.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof i.ghost=="string"?i.ghost:"");e.ghost.appendTo(e.helper)},resize:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost){e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})}},stop:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost&&e.helper){e.helper.get(0).removeChild(e.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(e,m){var p=c(this).data("resizable"),h=p.options,k=p.size,i=p.originalSize,j=p.originalPosition,n=p.axis,l=h._aspectRatio||e.shiftKey;h.grid=typeof h.grid=="number"?[h.grid,h.grid]:h.grid;var g=Math.round((k.width-i.width)/(h.grid[0]||1))*(h.grid[0]||1),f=Math.round((k.height-i.height)/(h.grid[1]||1))*(h.grid[1]||1);if(/^(se|s|e)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f}else{if(/^(ne)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f}else{if(/^(sw)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.left=j.left-g}else{p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f;p.position.left=j.left-g}}}}});var b=function(e){return parseInt(e,10)||0};var a=function(e){return !isNaN(parseInt(e,10))}})(jQuery);/*! - * jQuery hashchange event - v1.3 - 7/21/2010 - * http://benalman.com/projects/jquery-hashchange-plugin/ - * - * Copyright (c) 2010 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */ -(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$(' - - -
        -
        -
        Related Pages
        -
        -
        -
        Here is a list of all related documentation pages:
        -
        - -
         Deprecated List
        - - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/android/search/all_0.html b/docs/docs/doxygen-docs/android/search/all_0.html deleted file mode 100644 index f25360b71..000000000 --- a/docs/docs/doxygen-docs/android/search/all_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_0.js b/docs/docs/doxygen-docs/android/search/all_0.js deleted file mode 100644 index ba77f3827..000000000 --- a/docs/docs/doxygen-docs/android/search/all_0.js +++ /dev/null @@ -1,75 +0,0 @@ -var searchData= -[ - ['aasb',['AASB',['../classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b.html',1,'com::amazon::aace::aasb']]], - ['acl_5fclient_5frequest',['ACL_CLIENT_REQUEST',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a27dd6905ea8b269e891cb7af615349af',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['acl_5fdisabled',['ACL_DISABLED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#ae296bd017d5b9aff977a96b358ed31da',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['action',['Action',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['activated',['ACTIVATED',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#a4ec0c452a253a0356a36b1dcd3a77b21',1,'com::amazon::aace::apl::APL::ActivityEvent']]], - ['active',['ACTIVE',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#aa9b4b025bc49bd4401dad77874f9de55',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]], - ['activityevent',['ActivityEvent',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html',1,'com::amazon::aace::apl::APL']]], - ['ad',['AD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#a24f37c8aa07373cee1d9a8fdd7d30856',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.AD()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#ad56bcfa1342fa4481e1e0285ef626e49',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.AD()']]], - ['addactionadjustmode',['addActionAdjustMode',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#adc6e5c441b7a19e1b058cc84ee62876c',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionadjustrange',['addActionAdjustRange',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ab6a35f1a34ad12a53ff410f698f6a318',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionsetmode',['addActionSetMode',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ad458b943893f6b6129ee7febd5281d7c',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionsetrange',['addActionSetRange',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a2d5aac6efb774d9e730f5ca3e307e995',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionturnoff',['addActionTurnOff',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a98708b3275291435db027d880f7072f2',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionturnon',['addActionTurnOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ad3a0bbf8a515d068fe48a7c83caf44c2',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addaddressbook',['addAddressBook',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html#a260d533fde332f05cc55787dacc84c02',1,'com::amazon::aace::addressbook::AddressBook']]], - ['addassetid',['addAssetId',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#af72d00f7e9138424180b775b69448516',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addcustomassetspath',['addCustomAssetsPath',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#aff07923786bbe8d78bc7f2d3722e6f11',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['adddefaultassetspath',['addDefaultAssetsPath',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a1e8f233f6757ca9d4a4b58f91da92efb',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addmembers',['addMembers',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a8437e903eb643316bb176675b56e54d7',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addmodecontroller',['addModeController',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a7ad780d3fd7837ec394b83262322f289',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addpowercontroller',['addPowerController',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#adc3e1f9154665ca8141db54b6d444928',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addpreset',['addPreset',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ad98ed82bb00c9cdc0dc6148e77eece1f',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addrangecontroller',['addRangeController',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ad124b5814e21bcab31b3e23eba11ac61',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addressbook',['AddressBook',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html',1,'com::amazon::aace::addressbook']]], - ['addressbookconfiguration',['AddressBookConfiguration',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html',1,'com::amazon::aace::addressbook::config']]], - ['addressbooktype',['AddressBookType',['../enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html',1,'com::amazon::aace::addressbook::AddressBook']]], - ['addtogglecontroller',['addToggleController',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a5333d4009aaa04393f55d196285614c3',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addvalue',['addValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a4f9b0e51062de064ed92a03c18b8dc85',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['adjustmodecontrollervalue',['adjustModeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a3e8c0bf1b654235b38112817d61a51cd',1,'com::amazon::aace::carControl::CarControl']]], - ['adjustrangecontrollervalue',['adjustRangeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a10b8d7a0a9bb6badef94c0bdcbe7c84c',1,'com::amazon::aace::carControl::CarControl']]], - ['adjustseek',['adjustSeek',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#ae2bef490d146d40b7dcf7cf76f011fbb',1,'com.amazon.aace.alexa.ExternalMediaAdapter.adjustSeek()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a76edd26e6fb2557adb33a4392a1cc9d9',1,'com.amazon.aace.alexa.LocalMediaSource.adjustSeek()']]], - ['alertcreated',['alertCreated',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#aa3a5e2c9bf2adfb42f25b80a495cd234',1,'com::amazon::aace::alexa::Alerts']]], - ['alertdeleted',['alertDeleted',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#af768bdcfb00844d591dd38c6f340e4a7',1,'com::amazon::aace::alexa::Alerts']]], - ['alerts',['Alerts',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html',1,'com::amazon::aace::alexa']]], - ['alerts_5fvolume',['ALERTS_VOLUME',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html#aa27994fa83f3c3d62612f2fa914f3fa5',1,'com::amazon::aace::alexa::AlexaSpeaker::SpeakerType']]], - ['alertstate',['AlertState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html',1,'com::amazon::aace::alexa::Alerts']]], - ['alertstatechanged',['alertStateChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#aaec21170ff0f51d02a9f72f0d41b1ad6',1,'com::amazon::aace::alexa::Alerts']]], - ['alexa_5fvolume',['ALEXA_VOLUME',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html#a6333f0226e8ab4184c927bd0e44aca62',1,'com::amazon::aace::alexa::AlexaSpeaker::SpeakerType']]], - ['alexaclient',['AlexaClient',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html',1,'com::amazon::aace::alexa']]], - ['alexaconfiguration',['AlexaConfiguration',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html',1,'com::amazon::aace::alexa::config']]], - ['alexaconnectivity',['AlexaConnectivity',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html',1,'com::amazon::aace::connectivity']]], - ['alexaspeaker',['AlexaSpeaker',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html',1,'com::amazon::aace::alexa']]], - ['am_5fradio',['AM_RADIO',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#ad8a3e837f873dfe4b9b8b15013d30a33',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['announcemaneuver',['announceManeuver',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#aa9c67468d2301d910b4ae765f60f34d5',1,'com::amazon::aace::navigation::Navigation']]], - ['announceroadregulation',['announceRoadRegulation',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#aee853c3f66d8205e733fb27644b829f1',1,'com::amazon::aace::navigation::Navigation']]], - ['answer',['answer',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a96fcb25d9e32de9524becbec82a79ed7',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['apl',['APL',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html',1,'com::amazon::aace::apl']]], - ['aplconfiguration',['APLConfiguration',['../classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html',1,'com::amazon::aace::apl::config']]], - ['audioinputprovider',['AudioInputProvider',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider.html',1,'com::amazon::aace::audio']]], - ['audioinputtype',['AudioInputType',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type.html',1,'com::amazon::aace::audio::AudioInputProvider']]], - ['audiooutput',['AudioOutput',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html',1,'com::amazon::aace::audio']]], - ['audiooutputprovider',['AudioOutputProvider',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider.html',1,'com::amazon::aace::audio']]], - ['audiooutputtype',['AudioOutputType',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type.html',1,'com::amazon::aace::audio::AudioOutputProvider']]], - ['audioplayer',['AudioPlayer',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html',1,'com::amazon::aace::alexa']]], - ['autherror',['AuthError',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html',1,'com.amazon.aace.alexa.AuthProvider.AuthError'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html',1,'com.amazon.aace.alexa.AlexaClient.AuthError']]], - ['authfailure',['authFailure',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html#a73c6d42ae6537e38fa7a910cf84e5b8a',1,'com::amazon::aace::alexa::AuthProvider']]], - ['authorization',['Authorization',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html',1,'com::amazon::aace::authorization']]], - ['authorization_5fexpired',['AUTHORIZATION_EXPIRED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a922cdd5dfac17d3b06a2b19ec7bc87c6',1,'com.amazon.aace.alexa.AlexaClient.AuthError.AUTHORIZATION_EXPIRED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#ab27f6e2fc7524493c5d10fc32e806a98',1,'com.amazon.aace.alexa.AuthProvider.AuthError.AUTHORIZATION_EXPIRED()'],['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#ae7e324772c2135562a8caec1b7c06803',1,'com.amazon.aace.cbl.CBL.CBLStateChangedReason.AUTHORIZATION_EXPIRED()']]], - ['authorization_5ffailed',['AUTHORIZATION_FAILED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ab239854c195b04feb7b6e5548ad6d4ee',1,'com.amazon.aace.alexa.AlexaClient.AuthError.AUTHORIZATION_FAILED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a37dd844f07da9d1bbd756e0d1bdb51a0',1,'com.amazon.aace.alexa.AuthProvider.AuthError.AUTHORIZATION_FAILED()']]], - ['authorization_5fpending',['AUTHORIZATION_PENDING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a423bcf5d45f1bf81b84e08d8b113c654',1,'com.amazon.aace.alexa.AlexaClient.AuthError.AUTHORIZATION_PENDING()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#aafcfdbd2f90719857c1ea276bdab5540',1,'com.amazon.aace.alexa.AuthProvider.AuthError.AUTHORIZATION_PENDING()']]], - ['authorizationerror',['authorizationError',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#ac2087542c1f5f41240fbe1154dc9dc51',1,'com::amazon::aace::authorization::Authorization']]], - ['authorizationstate',['AuthorizationState',['../enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html',1,'com::amazon::aace::authorization::Authorization']]], - ['authorizationstatechanged',['authorizationStateChanged',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#aac7df2c628d7212d332bca7d04248087',1,'com::amazon::aace::authorization::Authorization']]], - ['authorize',['authorize',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a0ddaaef81a0c9edbdffc2f4149f638e8',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['authorized',['AUTHORIZED',['../enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html#a37ceee7a75c30c4eca0ef794eca21bc3',1,'com::amazon::aace::authorization::Authorization::AuthorizationState']]], - ['authorizing',['AUTHORIZING',['../enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html#ae5924e162d7c27d155005fd113f94548',1,'com::amazon::aace::authorization::Authorization::AuthorizationState']]], - ['authprovider',['AuthProvider',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html',1,'com::amazon::aace::alexa']]], - ['authstate',['AuthState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html',1,'com.amazon.aace.alexa.AuthProvider.AuthState'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html',1,'com.amazon.aace.alexa.AlexaClient.AuthState']]], - ['authstatechange',['authStateChange',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html#ae41d2954a60f8ec802e8784d1963f3eb',1,'com::amazon::aace::alexa::AuthProvider']]], - ['authstatechanged',['authStateChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html#aadf5e36e715105b0c182cab93d3bf427',1,'com::amazon::aace::alexa::AlexaClient']]], - ['automotive_5fstartup',['AUTOMOTIVE_STARTUP',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html#a3dcf2ff6de0ae7473ec1ba3dba7965ff',1,'com::amazon::aace::alexa::MediaPlaybackRequestor::InvocationReason']]], - ['alexa_20auto_20sdk_20for_20android',['Alexa Auto SDK for Android',['../index.html',1,'']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_1.html b/docs/docs/doxygen-docs/android/search/all_1.html deleted file mode 100644 index b13f0f7f3..000000000 --- a/docs/docs/doxygen-docs/android/search/all_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_1.js b/docs/docs/doxygen-docs/android/search/all_1.js deleted file mode 100644 index 9f7895afb..000000000 --- a/docs/docs/doxygen-docs/android/search/all_1.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['background',['BACKGROUND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html#a0705240859115be4fef17ddaf55d2a81',1,'com::amazon::aace::alexa::TemplateRuntime::FocusState']]], - ['bass',['BASS',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html#ab912928dd1ef3bee8dbbd6949b9f4f21',1,'com::amazon::aace::alexa::EqualizerController::EqualizerBand']]], - ['bluetooth',['BLUETOOTH',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a6727f90887ea62c4e2cc8df0fb3257b6',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['buffer_5funderrun',['BUFFER_UNDERRUN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#a947333e7e18f62ecb6cf1387c34a12f3',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.BUFFER_UNDERRUN()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a0034f77e833be6173541a1b5993b7321',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.BUFFER_UNDERRUN()']]], - ['buffering',['BUFFERING',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html#a9f93dc6ebc20250f7e88ba87c8d9d649',1,'com::amazon::aace::audio::AudioOutput::MediaState']]], - ['busy',['BUSY',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#ad5423ebda1428be66d0d2f5c44a63b6b',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallError']]], - ['buttonpressed',['buttonPressed',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html#a505dae16002e9ee0a492c9097cca57b9',1,'com::amazon::aace::alexa::PlaybackController']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_10.html b/docs/docs/doxygen-docs/android/search/all_10.html deleted file mode 100644 index d1345a1f0..000000000 --- a/docs/docs/doxygen-docs/android/search/all_10.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_10.js b/docs/docs/doxygen-docs/android/search/all_10.js deleted file mode 100644 index c22b531b9..000000000 --- a/docs/docs/doxygen-docs/android/search/all_10.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['tap_5fto_5ftalk',['TAP_TO_TALK',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html#ab6d9209cde8969318853100e6369c088',1,'com::amazon::aace::alexa::SpeechRecognizer::Initiator']]], - ['taptotalk',['tapToTalk',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a4ec1498c7b65fa48c095c153a6802cf1',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['templateruntime',['TemplateRuntime',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html',1,'com::amazon::aace::alexa']]], - ['texttospeech',['TextToSpeech',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html',1,'com::amazon::aace::textToSpeech']]], - ['thinking',['THINKING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#a1f39ece095c51cc56509604352264953',1,'com::amazon::aace::alexa::AlexaClient::DialogState']]], - ['thumbs_5fdown',['THUMBS_DOWN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#ac8764d3f4105f96c5b19210b7fa53bcf',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['thumbs_5fup',['THUMBS_UP',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#ae03c25bb16b59fb29f1c136b1b2f2c56',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['time_5funknown',['TIME_UNKNOWN',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html#aeedf104185c5b77717b01d8ebae74c9a',1,'com.amazon.aace.alexa.AudioPlayer.TIME_UNKNOWN()'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a60658d83dc03b3999057ace2b2cabefd',1,'com.amazon.aace.audio.AudioOutput.TIME_UNKNOWN()']]], - ['timeout',['TIMEOUT',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#a1c1495251c637f827cdc04598ce2cb7c',1,'com::amazon::aace::cbl::CBL::CBLStateChangedReason']]], - ['togglepressed',['togglePressed',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html#ae704411fffffda8c04fec1d59882899f',1,'com::amazon::aace::alexa::PlaybackController']]], - ['track',['TRACK',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#a75b390afb82e0f8d95cff4cf06fec59e',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.TRACK()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#aefed7c68a06513cecf1d1830eea2a148',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.TRACK()']]], - ['treble',['TREBLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html#aaf1c6d5e0d780baab17a53763e2c4688',1,'com::amazon::aace::alexa::EqualizerController::EqualizerBand']]], - ['trim',['TRIM',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a52c0f39c73171713335cf2bb2306f799',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['turnpowercontrolleroff',['turnPowerControllerOff',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a1413a325e11f90cb0b6704c3445f062e',1,'com::amazon::aace::carControl::CarControl']]], - ['turnpowercontrolleron',['turnPowerControllerOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a1e28db083c8da5d0a49976a8f28dcffd',1,'com::amazon::aace::carControl::CarControl']]], - ['turntogglecontrolleroff',['turnToggleControllerOff',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a27a39809a5986fda9a76a2d169e69960',1,'com::amazon::aace::carControl::CarControl']]], - ['turntogglecontrolleron',['turnToggleControllerOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a0a2a3e454c2c275182506e965d92d367',1,'com::amazon::aace::carControl::CarControl']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_11.html b/docs/docs/doxygen-docs/android/search/all_11.html deleted file mode 100644 index 2be8b7111..000000000 --- a/docs/docs/doxygen-docs/android/search/all_11.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_11.js b/docs/docs/doxygen-docs/android/search/all_11.js deleted file mode 100644 index 59cd77006..000000000 --- a/docs/docs/doxygen-docs/android/search/all_11.js +++ /dev/null @@ -1,21 +0,0 @@ -var searchData= -[ - ['unauthorized',['UNAUTHORIZED',['../enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html#aaee87f5bbcea329c6fec281886880da4',1,'com::amazon::aace::authorization::Authorization::AuthorizationState']]], - ['unauthorized_5fclient',['UNAUTHORIZED_CLIENT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#af804dbfb32638e3c082d90efa3912a9b',1,'com.amazon.aace.alexa.AlexaClient.AuthError.UNAUTHORIZED_CLIENT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a0604dc08653947306fe2eade1c497ef9',1,'com.amazon.aace.alexa.AuthProvider.AuthError.UNAUTHORIZED_CLIENT()']]], - ['unexpected_5finformation_5freceived',['UNEXPECTED_INFORMATION_RECEIVED',['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html#a2a42ffe20854e593d1e15d1a60a78a28',1,'com::amazon::aace::customDomain::CustomDomain::ResultType']]], - ['unfavorite',['UNFAVORITE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a972a844ee00be9757f59e70af72f5d09',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.UNFAVORITE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a3ce434c3847d05357b242a35381db4bd',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.UNFAVORITE()']]], - ['unfavorited',['UNFAVORITED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html#a6eb5e1fa3c230f445c3ae1147bd67acd',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Favorites.UNFAVORITED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html#a07d0bc918d3898558be4025b12068c8a',1,'com.amazon.aace.alexa.LocalMediaSource.Favorites.UNFAVORITED()']]], - ['uninitialized',['UNINITIALIZED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html#a6a54b74d1219d6022a21d1493f607a6b',1,'com.amazon.aace.alexa.AlexaClient.AuthState.UNINITIALIZED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html#a9e8a6803b57d45467f047d3f412ceb27',1,'com.amazon.aace.alexa.AuthProvider.AuthState.UNINITIALIZED()']]], - ['unknown',['UNKNOWN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html#a440225fb9b82619cf3336073764c4e80',1,'com.amazon.aace.alexa.Notifications.IndicatorState.UNKNOWN()'],['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#affbb173f103e2dc6c9399dd6a3674902',1,'com.amazon.aace.apl.APL.ActivityEvent.UNKNOWN()'],['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#a6b44a8379299aa098271ca9a9b21ca9e',1,'com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.UNKNOWN()']]], - ['unknown_5ferror',['UNKNOWN_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a110946e49f9624a3823d1457f5efe57b',1,'com.amazon.aace.alexa.AlexaClient.AuthError.UNKNOWN_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#ab82213352bde9993de5bda26fbcf1486',1,'com.amazon.aace.alexa.AuthProvider.AuthError.UNKNOWN_ERROR()']]], - ['unrecoverable_5ferror',['UNRECOVERABLE_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html#a9395e797fd39967a690db2217114b43a',1,'com.amazon.aace.alexa.AlexaClient.AuthState.UNRECOVERABLE_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a24c07684a8aa086e8cab5c34e84ba245',1,'com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.UNRECOVERABLE_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html#a13dec4634da247a0a897f5e2da2ab7c1',1,'com.amazon.aace.alexa.AuthProvider.AuthState.UNRECOVERABLE_ERROR()']]], - ['unsupported_5fgrant_5ftype',['UNSUPPORTED_GRANT_TYPE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ae7f34009c855ab19054576a5cf8e5fb7',1,'com.amazon.aace.alexa.AlexaClient.AuthError.UNSUPPORTED_GRANT_TYPE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a791e3bdd8b3ef18b34dd57d39871fa1b',1,'com.amazon.aace.alexa.AuthProvider.AuthError.UNSUPPORTED_GRANT_TYPE()']]], - ['unsupported_5foperation',['UNSUPPORTED_OPERATION',['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html#a66381036fd78a9916bf5c45d587efdbb',1,'com::amazon::aace::customDomain::CustomDomain::ResultType']]], - ['updateaplruntimeproperties',['updateAPLRuntimeProperties',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#ad8265265f94368f013d406a91b6c3b7b',1,'com::amazon::aace::apl::APL']]], - ['updatemessagesstatus',['updateMessagesStatus',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a7a605da58d14bc67576025b4ef8ca882',1,'com::amazon::aace::messaging::Messaging']]], - ['updatemessagesstatusfailed',['updateMessagesStatusFailed',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a83cf3c7c5e4740875b48ddd9bebf39b9',1,'com::amazon::aace::messaging::Messaging']]], - ['updatemessagesstatussucceeded',['updateMessagesStatusSucceeded',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a0cb2dc7a12b3d8b763f8a5183f348369',1,'com::amazon::aace::messaging::Messaging']]], - ['updatemessagingendpointstate',['updateMessagingEndpointState',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#ab3f50dd00eb27683baf6c0f430025ddc',1,'com::amazon::aace::messaging::Messaging']]], - ['uploadconversations',['uploadConversations',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a66394e0ab0b83eab25dba4c71498d7e4',1,'com::amazon::aace::messaging::Messaging']]], - ['usb',['USB',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a9eeb1241157772d62b8666ca203b59f8',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_12.html b/docs/docs/doxygen-docs/android/search/all_12.html deleted file mode 100644 index 13c526372..000000000 --- a/docs/docs/doxygen-docs/android/search/all_12.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_12.js b/docs/docs/doxygen-docs/android/search/all_12.js deleted file mode 100644 index 7e9532fdc..000000000 --- a/docs/docs/doxygen-docs/android/search/all_12.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['vehicle_5fidentifier',['VEHICLE_IDENTIFIER',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a2a256a365b83dd01f661e899b7198f8b',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['vehicleconfiguration',['VehicleConfiguration',['../classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html',1,'com::amazon::aace::vehicle::config']]], - ['vehiclepropertytype',['VehiclePropertyType',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html',1,'com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType'],['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#aa545b283d5616723574d4f7e8457fe66',1,'com.amazon.aace.vehicle.config.VehicleConfiguration.VehiclePropertyType.VehiclePropertyType()']]], - ['verbose',['VERBOSE',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#a704a568ee9d3f5deac0ae74a00c66072',1,'com::amazon::aace::logger::Logger::Level']]], - ['version',['VERSION',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a3e91ea0b1fa3b76c5823fa693a3327c1',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['volumechanged',['volumeChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#aa9b7aaa10e0d43695714364a616c86c4',1,'com.amazon.aace.alexa.ExternalMediaAdapter.volumeChanged()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#aa0898a6fd4d81e309d45e361b86fea9c',1,'com.amazon.aace.alexa.LocalMediaSource.volumeChanged()'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a95ca357a61bcf56227684c0a354e44f6',1,'com.amazon.aace.audio.AudioOutput.volumeChanged()']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_13.html b/docs/docs/doxygen-docs/android/search/all_13.html deleted file mode 100644 index b4a8bca69..000000000 --- a/docs/docs/doxygen-docs/android/search/all_13.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_13.js b/docs/docs/doxygen-docs/android/search/all_13.js deleted file mode 100644 index 2caf95cce..000000000 --- a/docs/docs/doxygen-docs/android/search/all_13.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['wakeword',['WAKEWORD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html#a833b0dd549b0eba9ed3ed0e9edb0f059',1,'com::amazon::aace::alexa::SpeechRecognizer::Initiator']]], - ['wakeworddetected',['wakewordDetected',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a70707cd51dffbbeeeb5e90ec5cb36b18',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['warn',['WARN',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#acba58823cfc4c53d5aa824d447c6299f',1,'com::amazon::aace::logger::Logger::Level']]], - ['write_5ftimedout',['WRITE_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a00e8fa4aec24d97853ff838dac1d04c9',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_14.html b/docs/docs/doxygen-docs/android/search/all_14.html deleted file mode 100644 index fb4d0ecc7..000000000 --- a/docs/docs/doxygen-docs/android/search/all_14.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_14.js b/docs/docs/doxygen-docs/android/search/all_14.js deleted file mode 100644 index 10b0472df..000000000 --- a/docs/docs/doxygen-docs/android/search/all_14.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['year',['YEAR',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a342546024e512fc1921bed67b23be129',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_2.html b/docs/docs/doxygen-docs/android/search/all_2.html deleted file mode 100644 index 9543c57b1..000000000 --- a/docs/docs/doxygen-docs/android/search/all_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_2.js b/docs/docs/doxygen-docs/android/search/all_2.js deleted file mode 100644 index e963732a2..000000000 --- a/docs/docs/doxygen-docs/android/search/all_2.js +++ /dev/null @@ -1,85 +0,0 @@ -var searchData= -[ - ['call_5fnot_5fin_5fprogress',['CALL_NOT_IN_PROGRESS',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html#aa8c8a58ea28b1198fe0123532db854d2',1,'com::amazon::aace::phonecontrol::PhoneCallController::DTMFError']]], - ['call_5freceived',['CALL_RECEIVED',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#ac64f764a5a9ab1ec83cc35eace0f6af2',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]], - ['calleridreceived',['callerIdReceived',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#ad8af283538524392cee3d2647eb78a6e',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['callerror',['CallError',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['callfailed',['callFailed',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a3c41db407c07df25c744d6d4ed5ed470',1,'com.amazon.aace.phonecontrol.PhoneCallController.callFailed(String callId, CallError code)'],['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#ab5c9f2d6a6b3d5ed1993d8a1f44142ee',1,'com.amazon.aace.phonecontrol.PhoneCallController.callFailed(String callId, CallError code, String message)']]], - ['callingdeviceconfigurationproperty',['CallingDeviceConfigurationProperty',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['callstate',['CallState',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['callstatechanged',['callStateChanged',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a297a3c5a3bf26b7c54dcb8a00ce835e8',1,'com.amazon.aace.phonecontrol.PhoneCallController.callStateChanged(CallState state, String callId)'],['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#afb4c67b88d5e9aa8c389597cb25d1822',1,'com.amazon.aace.phonecontrol.PhoneCallController.callStateChanged(CallState state, String callId, String callerId)']]], - ['cancel',['cancel',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a75298918ee94a5f4f5621824d0665ff7',1,'com::amazon::aace::cbl::CBL']]], - ['cancelauthorization',['cancelAuthorization',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a29cc92d67c72d2bb1f8fc1fa0d6a3e53',1,'com::amazon::aace::authorization::Authorization']]], - ['canceldirective',['cancelDirective',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#a9c4d08c3268173c03ccca9ab6769ba96',1,'com::amazon::aace::customDomain::CustomDomain']]], - ['cancelnavigation',['cancelNavigation',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#ab8bfcea62eb634ece636a1264b5b5a89',1,'com::amazon::aace::navigation::Navigation']]], - ['capabilitiesreceived',['capabilitiesReceived',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#a66a65d51b249e171c00b6f6da7d842a3',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['carcontrol',['CarControl',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html',1,'com.amazon.aace.carControl.CarControl'],['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a00dafddeb55c4273395a9afa2bd278a0',1,'com.amazon.aace.carControl.CarControl.CarControl()']]], - ['carcontrolconfiguration',['CarControlConfiguration',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html',1,'com::amazon::aace::carControl']]], - ['cbl',['CBL',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html',1,'com::amazon::aace::cbl']]], - ['cblconfiguration',['CBLConfiguration',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html',1,'com::amazon::aace::cbl::config']]], - ['cblstate',['CBLState',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html',1,'com::amazon::aace::cbl::CBL']]], - ['cblstatechanged',['cblStateChanged',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a4fa7869897582b5a35c2272028fd09cc',1,'com::amazon::aace::cbl::CBL']]], - ['cblstatechangedreason',['CBLStateChangedReason',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html',1,'com::amazon::aace::cbl::CBL']]], - ['channel',['CHANNEL',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html#aa5746e9aa630d7fd67ae69ad0020eaf9',1,'com::amazon::aace::alexa::LocalMediaSource::ContentSelector']]], - ['clearallexecutecommands',['clearAllExecuteCommands',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a592b8d0552b2af9d12255b84f6c56c3e',1,'com::amazon::aace::apl::APL']]], - ['clearcard',['clearCard',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#aa17c50f90c3ae5e89cf197600699f5ad',1,'com::amazon::aace::apl::APL']]], - ['cleardocument',['clearDocument',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a5ccbbb86d507453c23631dd53b81804b',1,'com::amazon::aace::apl::APL']]], - ['clearplayerinfo',['clearPlayerInfo',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#a8a8b02e8e2dd5ead01111aeba4f8a5da',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['clearrefreshtoken',['clearRefreshToken',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a6bc55422ee3efe89816c2824d1c1b2e4',1,'com::amazon::aace::cbl::CBL']]], - ['cleartemplate',['clearTemplate',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#a298e0e13beabd319017ddd30e40dbdec',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['close',['CLOSE',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html#a82a79fd8eb91ca3acd066112cc5a9d2c',1,'com::amazon::aace::carControl::CarControlConfiguration::Action']]], - ['code_5fpair_5fexpired',['CODE_PAIR_EXPIRED',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#a86a569b7c1f83016602b6185828272df',1,'com::amazon::aace::cbl::CBL::CBLStateChangedReason']]], - ['code_5fpair_5freceived',['CODE_PAIR_RECEIVED',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#aa540173127387714f08eb7b73791ffe7',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['compact_5fdisc',['COMPACT_DISC',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#ae6297528fb7dfa6bc6694f459a14603e',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['completed',['COMPLETED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#aebf1b819f750e29c86659686a0954467',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['configure',['configure',['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#a9dd49afd0af2546c79e09ebb5e024967',1,'com::amazon::aace::core::Engine']]], - ['connected',['CONNECTED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html#a15164207832dc87be9a0a65c6b392505',1,'com.amazon.aace.alexa.AlexaClient.ConnectionStatus.CONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#a97d9dad7f8baf7699a3f62b183d26895',1,'com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.CONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html#af4769b42614d58097950c788a6dff321',1,'com.amazon.aace.messaging.Messaging.ConnectionState.CONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html#a334f503c8af9d5fd12170cdabff38900',1,'com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState.CONNECTED()']]], - ['connecting',['CONNECTING',['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#a4de3bfe4ee56fb043c20859fb8edd140',1,'com::amazon::aace::network::NetworkInfoProvider::NetworkStatus']]], - ['connection_5fthrottled',['CONNECTION_THROTTLED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a88e15eeebfd05bec30d111763e573278',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['connection_5ftimedout',['CONNECTION_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#ae8864e9473452f4cde574e103827afa1',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['connectionchangedreason',['ConnectionChangedReason',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html',1,'com::amazon::aace::alexa::AlexaClient']]], - ['connectionstate',['ConnectionState',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html',1,'com.amazon.aace.messaging.Messaging.ConnectionState'],['../enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state.html',1,'com.amazon.aace.bluetooth.GATTServer.ConnectionState'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html',1,'com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState']]], - ['connectionstatechanged',['connectionStateChanged',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a941fcb1da744bc9d254bc1657942aba5',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['connectionstatus',['ConnectionStatus',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html',1,'com::amazon::aace::alexa::AlexaClient']]], - ['connectionstatuschanged',['connectionStatusChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html#accca664acb40638ec78da0f223f767cb',1,'com::amazon::aace::alexa::AlexaClient']]], - ['connectivityeventresponse',['connectivityEventResponse',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#aad7c6fdd40198750b3a457bbb9900017',1,'com::amazon::aace::connectivity::AlexaConnectivity']]], - ['connectivitystatechange',['connectivityStateChange',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#a83421c86d4680a794c51a4fe7ff46f67',1,'com::amazon::aace::connectivity::AlexaConnectivity']]], - ['contact',['CONTACT',['../enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html#a89a2f19b935235def607476414e00651',1,'com::amazon::aace::addressbook::AddressBook::AddressBookType']]], - ['contentselector',['ContentSelector',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html',1,'com::amazon::aace::alexa::LocalMediaSource']]], - ['conversationsreport',['conversationsReport',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a780278011aea8be1b6eaf437fef23be6',1,'com::amazon::aace::messaging::Messaging']]], - ['create',['create',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a2b59622a96960b4e0f9bf03602d6d602',1,'com.amazon.aace.carControl.CarControlConfiguration.create()'],['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#aaa4f32da512481f26912ed76a8a6b6ab',1,'com.amazon.aace.core.Engine.create()']]], - ['createaddressbookconfig',['createAddressBookConfig',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html#ae391b7458009b88848478312ae404650',1,'com::amazon::aace::addressbook::config::AddressBookConfiguration']]], - ['createalertsconfig',['createAlertsConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#ab7ff3ff245ce78fd1c578031c2856959',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createalexapresentationtimeoutconfig',['createAlexaPresentationTimeoutConfig',['../classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html#ad894310b1978f5a3e35bc4477218b48b',1,'com::amazon::aace::apl::config::APLConfiguration']]], - ['createauthproviderconfig',['createAuthProviderConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a7d8ab3df5c49018304c1382af1dfce31',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createcallid',['createCallId',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a2998eb274f0bdbc50cc89f2a3d12cd13',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['createcapabilitiesdelegateconfig',['createCapabilitiesDelegateConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a8007890fb796db98dc13f4459ac31fb2',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createcblconfig',['createCBLConfig',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#a2d165db74aad7a240544875208d348f3',1,'com.amazon.aace.cbl.config.CBLConfiguration.createCBLConfig(final int seconds)'],['../classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#ac6c30ce50d1981638cf72a5f91e5fd08',1,'com.amazon.aace.cbl.config.CBLConfiguration.createCBLConfig(final int seconds, final boolean enableUserProfile)']]], - ['createcbluserprofileconfig',['createCBLUserProfileConfig',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#a94550737c0626b38f9ca1f338fd37b3f',1,'com::amazon::aace::cbl::config::CBLConfiguration']]], - ['createcertifiedsenderconfig',['createCertifiedSenderConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#af747c4ec0e90eee61ae9db02f538cd5f',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createconsolesinkconfig',['createConsoleSinkConfig',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#ae262e3e0a31778f9d1c2a0c6ec142608',1,'com::amazon::aace::logger::config::LoggerConfiguration']]], - ['createcurlconfig',['createCurlConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a92aa3b5155a650a13c26c9d4a08a1216',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createCurlConfig(String certsPath)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a51647ddc0fd88c8b3e088ca5d728c1fd',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createCurlConfig(final String certsPath, final String iface)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#ae67e3e3837c27d3d10a022cfd714f3d6',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createCurlConfig(final String certsPath, final String iface, final String proxy)']]], - ['createdeviceinfoconfig',['createDeviceInfoConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a84ab6a01839d09f978ff03bfc79d6b06',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createdevicesettingsconfig',['createDeviceSettingsConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a174a365624dba9cef2db7803a352c916',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceSettingsConfig(final String databaseFilePath, final String[] locales, final String defaultLocale, final String defaultTimezone, final String[][] localeCombinations)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a1dcfef5d114ac663f3031214b45cc5ab',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceSettingsConfig(final String databaseFilePath)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#ae9758eba28e24ac7bf3685bd5ee6bec1',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceSettingsConfig(final String databaseFilePath, final String[] locales, final String defaultLocale, final String defaultTimezone)']]], - ['createduckingconfig',['createDuckingConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#aa075b97fdd5a3ed56d04e39715b88d47',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createendpoint',['createEndpoint',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a007712bb95d18decb48c39c3e2dfc9b6',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['createequalizercontrollerconfig',['createEqualizerControllerConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a1658a973095541d26d06ce451654bb21',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createexternalmediaplayerconfig',['createExternalMediaPlayerConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a5a25037353f7f03af8462240aedbc5ea',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createfilesinkconfig',['createFileSinkConfig',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#abbb56f552fcde3ca7e2f9fbed732a04c',1,'com.amazon.aace.logger.config.LoggerConfiguration.createFileSinkConfig(final String id, final Logger.Level level, final String path, final String prefix, final int maxSize, final int maxFiles, final boolean append)'],['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#addfb6f34d0e948f38654b132d39c3e3d',1,'com.amazon.aace.logger.config.LoggerConfiguration.createFileSinkConfig(String id, Logger.Level level, String path)']]], - ['createlocalstorageconfig',['createLocalStorageConfig',['../classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html#a2f5f698b04c1106a30a9cd65d9e00a58',1,'com::amazon::aace::storage::config::StorageConfiguration']]], - ['createloggerruleconfig',['createLoggerRuleConfig',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#aa81c6c0c2204b55fbe4fa9070194d3ec',1,'com.amazon.aace.logger.config.LoggerConfiguration.createLoggerRuleConfig(final String sink, final Logger.Level level, final String sourceFilter, final String tagFilter, final String messageFilter)'],['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#abe7be69582a42f2f71d5623c52698eca',1,'com.amazon.aace.logger.config.LoggerConfiguration.createLoggerRuleConfig(String sink, Logger.Level level)']]], - ['createmiscstorageconfig',['createMiscStorageConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a6daa8cea59a40ffc44738f07622bbb4b',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createnavigationconfig',['createNavigationConfig',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html#a62f13d2ba1b21e4554de195083903331',1,'com::amazon::aace::navigation::config::NavigationConfiguration']]], - ['createnotificationsconfig',['createNotificationsConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a8b076970882ad6c1756078cf09e9b0b4',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createoperatingcountryconfig',['createOperatingCountryConfig',['../classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#ade5473ebf7da427617445bc10dd771fd',1,'com::amazon::aace::vehicle::config::VehicleConfiguration']]], - ['createsettingsconfig',['createSettingsConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#af676c898b520c02267d33579cdb37765',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createSettingsConfig(final String databaseFilePath, final String locale)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a82e1bc90d7cf9cd8bcbc41af797ed115',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createSettingsConfig(String databaseFilePath)']]], - ['createspeakermanagerconfig',['createSpeakerManagerConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a6c3dd6de536aee23706d2b38f555640c',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createspeechrecognizerconfig',['createSpeechRecognizerConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a8d70d4b326745849824994e380d7d5f9',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createsyslogsinkconfig',['createSyslogSinkConfig',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#a484a6bb755b0683d63e57092215db6c6',1,'com::amazon::aace::logger::config::LoggerConfiguration']]], - ['createsystemconfig',['createSystemConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a30e81a7467f313900c310aa404938ffe',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createtemplateruntimetimeoutconfig',['createTemplateRuntimeTimeoutConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#ad9e98c28823a844d2cf6dcc2541d90a0',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createvehicleinfoconfig',['createVehicleInfoConfig',['../classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a2a9eee7331a62a4d5f13116952c63b1d',1,'com::amazon::aace::vehicle::config::VehicleConfiguration']]], - ['createzone',['createZone',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ab5607702f8745f986c09342458ba640a',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['critical',['CRITICAL',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#aca8f08c4026fa7df9a9ef4f05c4cae23',1,'com::amazon::aace::logger::Logger::Level']]], - ['customdomain',['CustomDomain',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html',1,'com::amazon::aace::customDomain']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_3.html b/docs/docs/doxygen-docs/android/search/all_3.html deleted file mode 100644 index 03405c0fb..000000000 --- a/docs/docs/doxygen-docs/android/search/all_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_3.js b/docs/docs/doxygen-docs/android/search/all_3.js deleted file mode 100644 index e35d4b65a..000000000 --- a/docs/docs/doxygen-docs/android/search/all_3.js +++ /dev/null @@ -1,28 +0,0 @@ -var searchData= -[ - ['dab',['DAB',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#ad79d251e0f05790ed49c38296e4604a3',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['datasourceupdate',['dataSourceUpdate',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#aec3a62d39544f8a79a6577c3adc29900',1,'com::amazon::aace::apl::APL']]], - ['deactivated',['DEACTIVATED',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#acaec8cc5392e3a6da590604f201c1caa',1,'com::amazon::aace::apl::APL::ActivityEvent']]], - ['default',['DEFAULT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html#a341b202427ebbd1a72b09440e1faae51',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Navigation.DEFAULT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#ad22ebb5ffc31363041023ff23e78dff9',1,'com.amazon.aace.alexa.LocalMediaSource.Source.DEFAULT()']]], - ['deleted',['DELETED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#ad649eccb44e9f6b6edc1c053b15a6f14',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]], - ['deviceconfigurationupdated',['deviceConfigurationUpdated',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#ad7d3413ded20b937afc728931005c122',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['devicesetup',['DeviceSetup',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html',1,'com::amazon::aace::alexa']]], - ['deviceusage',['DeviceUsage',['../classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html',1,'com::amazon::aace::deviceUsage']]], - ['dial',['dial',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a01d791710c2d299ca213b7723b593b0d',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['dialing',['DIALING',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#a219ecfbc86e942f09ab6762b9d04e7bd',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]], - ['dialogstate',['DialogState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html',1,'com::amazon::aace::alexa::AlexaClient']]], - ['dialogstatechanged',['dialogStateChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html#aa0c7e22aeb8007a30d02a0f89226886a',1,'com::amazon::aace::alexa::AlexaClient']]], - ['disable_5frepeat',['DISABLE_REPEAT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#aff4cf547e98771825fc89613325225c1',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.DISABLE_REPEAT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a9ab2ede3ef1d0cf9000328adf5f7b33a',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.DISABLE_REPEAT()']]], - ['disable_5fshuffle',['DISABLE_SHUFFLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a19ac08c56f815c3ebb6768a302655f44',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.DISABLE_SHUFFLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#ac6f49ab238fc96bc47d69dbc9435be7c',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.DISABLE_SHUFFLE()']]], - ['disabled',['DISABLED',['../enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html#acfac7bfb9b9ea0f29d5c7e3aec3d4e6c',1,'com::amazon::aace::location::LocationProvider::LocationServiceAccess']]], - ['disconnected',['DISCONNECTED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html#a438c710b6951494260c66b5a84ee6770',1,'com.amazon.aace.alexa.AlexaClient.ConnectionStatus.DISCONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#ab346b77ac36eb370ec34fa18ccf57aee',1,'com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.DISCONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html#abc48735905c358cf2b8012e02ba1d9a9',1,'com.amazon.aace.messaging.Messaging.ConnectionState.DISCONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html#a7c23dfd53e87f06c93734e4257028c62',1,'com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState.DISCONNECTED()']]], - ['disconnecting',['DISCONNECTING',['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#ae2986a50a60397d2a3b325c924c807f3',1,'com::amazon::aace::network::NetworkInfoProvider::NetworkStatus']]], - ['displaycardcleared',['displayCardCleared',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#aecfca9188704be9df43e958f3cb2bbff',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['dns_5ftimedout',['DNS_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#acbe9865f13dcd3e988c8904c315df486',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['donotdisturb',['DoNotDisturb',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html',1,'com::amazon::aace::alexa']]], - ['donotdisturbchanged',['doNotDisturbChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html#a5f1b4303a59cfec7db0c79e8c3716331',1,'com::amazon::aace::alexa::DoNotDisturb']]], - ['dtmf_5ffailed',['DTMF_FAILED',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html#ab88088edb4bf67479cca64715ca74af5',1,'com::amazon::aace::phonecontrol::PhoneCallController::DTMFError']]], - ['dtmf_5fsupported',['DTMF_SUPPORTED',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html#aee40d256df727148c0b49dbc712cc1f9',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallingDeviceConfigurationProperty']]], - ['dtmferror',['DTMFError',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html',1,'com::amazon::aace::phonecontrol::PhoneCallController']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_4.html b/docs/docs/doxygen-docs/android/search/all_4.html deleted file mode 100644 index 8e1f4b9cd..000000000 --- a/docs/docs/doxygen-docs/android/search/all_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_4.js b/docs/docs/doxygen-docs/android/search/all_4.js deleted file mode 100644 index 13319fe99..000000000 --- a/docs/docs/doxygen-docs/android/search/all_4.js +++ /dev/null @@ -1,24 +0,0 @@ -var searchData= -[ - ['enable_5frepeat',['ENABLE_REPEAT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a2e80e52267f8a98a61bcab946fa2dc12',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.ENABLE_REPEAT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a3e7d49a2835f638cf02b1ad4e38a8ade',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.ENABLE_REPEAT()']]], - ['enable_5frepeat_5fone',['ENABLE_REPEAT_ONE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#ab28e78d85f3d5076ef448b2938628c8e',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.ENABLE_REPEAT_ONE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#acdd97bc64b6882c3b107d8bc625c00d3',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.ENABLE_REPEAT_ONE()']]], - ['enable_5fshuffle',['ENABLE_SHUFFLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#ae1837ad65d699f429ccf8def94f4b66b',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.ENABLE_SHUFFLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a3b1fd897ad28be840af4e37f91bf4f87',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.ENABLE_SHUFFLE()']]], - ['enabled',['ENABLED',['../enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html#a1e8ea59473f6a3641e10ab0458990572',1,'com::amazon::aace::location::LocationProvider::LocationServiceAccess']]], - ['encoding',['Encoding',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding.html',1,'com.amazon.aace.audio.AudioFormat.Encoding'],['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding.html',1,'com.amazon.aace.audio.AudioStream.Encoding']]], - ['endofspeechdetected',['endOfSpeechDetected',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a59f998dabf28a7db3d87e2b9350a221b',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['engine',['Engine',['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html',1,'com::amazon::aace::core']]], - ['engine_5ftype',['ENGINE_TYPE',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a73fbd2e69fe060036faa6263d8bb2758',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['engineconfiguration',['EngineConfiguration',['../classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration.html',1,'com::amazon::aace::core::config']]], - ['equalizerband',['EqualizerBand',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html',1,'com::amazon::aace::alexa::EqualizerController']]], - ['equalizercontroller',['EqualizerController',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html',1,'com::amazon::aace::alexa']]], - ['error',['ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#aa4bac67714cd5337498975309d7b8697',1,'com.amazon.aace.alexa.Alerts.AlertState.ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html#a0e4fe7584fd563503eb1057d05581cb0',1,'com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus.ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#aa09cb70ab22d4605447f4b912d4e19b5',1,'com.amazon.aace.cbl.CBL.CBLStateChangedReason.ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#a6f924d669645c42896e9ed21ca5f841a',1,'com.amazon.aace.logger.Logger.Level.ERROR()']]], - ['errorcode',['ErrorCode',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html',1,'com::amazon::aace::messaging::Messaging']]], - ['eventreceived',['eventReceived',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a7401ba9e417362adc91e1b67eb82fd63',1,'com::amazon::aace::authorization::Authorization']]], - ['exampleunittest',['ExampleUnitTest',['../classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test.html',1,'com::amazon::maccandroid']]], - ['executecommands',['executeCommands',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#aaebb36d48655e30799879fa2293743b2',1,'com::amazon::aace::apl::APL']]], - ['executecommandsresult',['executeCommandsResult',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a2f2a74dffec7943fec77108cfda62f09',1,'com::amazon::aace::apl::APL']]], - ['expecting',['EXPECTING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#a6b27f81309e0ab581dc11ee7ef4c2ad7',1,'com::amazon::aace::alexa::AlexaClient::DialogState']]], - ['expired',['EXPIRED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html#a67ec22bd33c00410722b09ca7cdf7059',1,'com.amazon.aace.alexa.AlexaClient.AuthState.EXPIRED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html#a4c7fb3a58794927369b104bce1e1920e',1,'com.amazon.aace.alexa.AuthProvider.AuthState.EXPIRED()']]], - ['explicit_5fuser_5faction',['EXPLICIT_USER_ACTION',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html#ac08ce13bd4ad18c45cf533fc56df0250',1,'com::amazon::aace::alexa::MediaPlaybackRequestor::InvocationReason']]], - ['externalmediaadapter',['ExternalMediaAdapter',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html',1,'com::amazon::aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_5.html b/docs/docs/doxygen-docs/android/search/all_5.html deleted file mode 100644 index 89a879ea9..000000000 --- a/docs/docs/doxygen-docs/android/search/all_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_5.js b/docs/docs/doxygen-docs/android/search/all_5.js deleted file mode 100644 index d5afc49ec..000000000 --- a/docs/docs/doxygen-docs/android/search/all_5.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['fail',['FAIL',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html#aa3e40112639a2989afd103ba5117cf9b',1,'com.amazon.aace.alexa.DeviceSetup.StatusCode.FAIL()'],['../enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html#afc280c61f5d376ee8b3bdb5d94dbe361',1,'com.amazon.aace.connectivity.AlexaConnectivity.StatusCode.FAIL()']]], - ['failed',['FAILED',['../enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html#ac11ed124711872a3e9c60391fcf639a2',1,'com::amazon::aace::propertyManager::PropertyManager::PropertyState']]], - ['failed_5fcan_5fretry',['FAILED_CAN_RETRY',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html#ab35ea5d7136eee4e374bb124bbd53b89',1,'com::amazon::aace::alexa::MediaPlaybackRequestor::MediaPlaybackRequestStatus']]], - ['failed_5ftimeout',['FAILED_TIMEOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html#a528b532a8c94e2b90a00b62e27ad5860',1,'com::amazon::aace::alexa::MediaPlaybackRequestor::MediaPlaybackRequestStatus']]], - ['failure_5fprotocol_5ferror',['FAILURE_PROTOCOL_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#acb096ffb04882dde59e47a2336823072',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['fast_5fforward',['FAST_FORWARD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a5940da64a23acbb1d4ad06ebcd7d1ae0',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.FAST_FORWARD()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a8b249de0f2af740577cec549d85e9f6a',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.FAST_FORWARD()']]], - ['favorite',['FAVORITE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a4f3e5f738216980dcdc241ccfb8f7003',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.FAVORITE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a196249d60a7cb59cd94620b8f0e260f4',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.FAVORITE()']]], - ['favorited',['FAVORITED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html#a3018bbec0092449c3dc292361381da8d',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Favorites.FAVORITED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html#a5fd7cb41c0f679a7f8fc337366b24f1e',1,'com.amazon.aace.alexa.LocalMediaSource.Favorites.FAVORITED()']]], - ['favorites',['Favorites',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Favorites'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html',1,'com.amazon.aace.alexa.LocalMediaSource.Favorites']]], - ['finished',['FINISHED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#a51053e7c19f8f4db8d438dc487d79c8d',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.FINISHED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a755964b192b078e77c0d99fe5cb7b783',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.FINISHED()']]], - ['fm_5fradio',['FM_RADIO',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a43bb0a1cc755913e36e62826c46ef891',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['focus_5fentered_5fbackground',['FOCUS_ENTERED_BACKGROUND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a08664b1cbc2de62c1a869adad68b597d',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['focus_5fentered_5fforeground',['FOCUS_ENTERED_FOREGROUND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a830bdc4af1afbc94e49982b07db7000f',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['focusaction',['FocusAction',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html',1,'com::amazon::aace::audio::AudioOutput']]], - ['focusstate',['FocusState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['foreground',['FOREGROUND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html#a1855cd6202e7b373a3ed13e29490a59d',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Navigation.FOREGROUND()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html#ac411b26a2ce5ce526fa0459b3eba9a7e',1,'com.amazon.aace.alexa.TemplateRuntime.FocusState.FOREGROUND()']]], - ['frequency',['FREQUENCY',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html#a2b9cab3166640effa04f358f4e33fbb0',1,'com::amazon::aace::alexa::LocalMediaSource::ContentSelector']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_6.html b/docs/docs/doxygen-docs/android/search/all_6.html deleted file mode 100644 index 6afac0662..000000000 --- a/docs/docs/doxygen-docs/android/search/all_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_6.js b/docs/docs/doxygen-docs/android/search/all_6.js deleted file mode 100644 index bebf031d0..000000000 --- a/docs/docs/doxygen-docs/android/search/all_6.js +++ /dev/null @@ -1,37 +0,0 @@ -var searchData= -[ - ['generic_5ffailure',['GENERIC_FAILURE',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html#a457eadf4ff380a8c32cc1e783c515e3a',1,'com::amazon::aace::messaging::Messaging::ErrorCode']]], - ['geography',['GEOGRAPHY',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a74aaae5e6c036dd4c85965d3258f7766',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['getaccuracy',['getAccuracy',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#acdf035ff2abe6c67f416de07c95f724c',1,'com::amazon::aace::location::Location']]], - ['getaltitude',['getAltitude',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#ae5ee423032967f1fae0570d394af3951',1,'com::amazon::aace::location::Location']]], - ['getauthorizationdata',['getAuthorizationData',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a7f2f391a3991f344ee1bec75ae33fd48',1,'com::amazon::aace::authorization::Authorization']]], - ['getauthstate',['getAuthState',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html#aa04277b311b61fdcf18c759714d148b1',1,'com::amazon::aace::alexa::AuthProvider']]], - ['getauthtoken',['getAuthToken',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html#aeedf509b073beea5fd1bf29a170e1c57',1,'com::amazon::aace::alexa::AuthProvider']]], - ['getbandlevels',['getBandLevels',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#a8146f0ae36888847ce00ea09f82761dc',1,'com::amazon::aace::alexa::EqualizerController']]], - ['getcapabilities',['getCapabilities',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#af96866c8075d176f505bd78b1c4f4114',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['getconnectivitystate',['getConnectivityState',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#a30284cd55d57be26b48078fc15f9ea60',1,'com::amazon::aace::connectivity::AlexaConnectivity']]], - ['getcontext',['getContext',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#ad3e88891b4ec12f01eaa0e9dde1d7bc3',1,'com::amazon::aace::customDomain::CustomDomain']]], - ['getcountry',['getCountry',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html#af9f1c9b6a9c136f376367c6b8913fccb',1,'com::amazon::aace::location::LocationProvider']]], - ['getduration',['getDuration',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a1d9d3fc28f5922dd608e5f4a1f774c4b',1,'com::amazon::aace::audio::AudioOutput']]], - ['getentries',['getEntries',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html#a35ee5d9d41c57004624771fc2192e76e',1,'com::amazon::aace::addressbook::AddressBook']]], - ['getidentifier',['getIdentifier',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#af9d692e6baaf553025d2138424a59fa0',1,'com::amazon::aace::connectivity::AlexaConnectivity']]], - ['getlatitude',['getLatitude',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#abddd6a89fab27fb04a996691eecc6ea6',1,'com::amazon::aace::location::Location']]], - ['getlocation',['getLocation',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html#a612278e91d607bc6e478260331f9380f',1,'com::amazon::aace::location::LocationProvider']]], - ['getlongitude',['getLongitude',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#a78d7351bc7e52db8b4be5769bb8d2bc8',1,'com::amazon::aace::location::Location']]], - ['getmessagebroker',['getMessageBroker',['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#abf3ff57591a2d268fbe90fe859ea0eb1',1,'com::amazon::aace::core::Engine']]], - ['getmodecontrollervalue',['getModeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a2acf6ba882f52699fa435d7e3616d662',1,'com::amazon::aace::carControl::CarControl']]], - ['getnavigationstate',['getNavigationState',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#ab9c911a083f6b927749106f3e3763dde',1,'com::amazon::aace::navigation::Navigation']]], - ['getnetworkstatus',['getNetworkStatus',['../classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html#aa16f831498c598c862c116aec7745a38',1,'com::amazon::aace::network::NetworkInfoProvider']]], - ['getnumbytesbuffered',['getNumBytesBuffered',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a2c5ab7cf1d8a4183a7b58716dccf916b',1,'com::amazon::aace::audio::AudioOutput']]], - ['getoffset',['getOffset',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#aa933301d5c170a953adf431c294f603d',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['getplayerduration',['getPlayerDuration',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html#a3ddd0246911b32d798dad3dae3e7e64d',1,'com::amazon::aace::alexa::AudioPlayer']]], - ['getplayerposition',['getPlayerPosition',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html#ac5af34b211180066c0a72d768800dc0d',1,'com::amazon::aace::alexa::AudioPlayer']]], - ['getposition',['getPosition',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#affc2aadf7fe81a6a9463152ae51420f8',1,'com::amazon::aace::audio::AudioOutput']]], - ['getproperty',['getProperty',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html#ae18af547c39b0c8e2a763e34d988f4a2',1,'com::amazon::aace::propertyManager::PropertyManager']]], - ['getrangecontrollervalue',['getRangeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#ae694da83885a8ab8c5c481ac06f382a4',1,'com::amazon::aace::carControl::CarControl']]], - ['getrefreshtoken',['getRefreshToken',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#aa7a91ec3198415d309d3a5d061cb974f',1,'com::amazon::aace::cbl::CBL']]], - ['getsource',['getSource',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#ab8cf2993bd0dce8a71cf147a08fbe2cb',1,'com::amazon::aace::alexa::LocalMediaSource']]], - ['getstate',['getState',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a2c32897522b03df84e84a04e2c15296b',1,'com.amazon.aace.alexa.ExternalMediaAdapter.getState()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a92fddae42be67359a902ee89315eeaf0',1,'com.amazon.aace.alexa.LocalMediaSource.getState()'],['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html#a2e24d1ebe98738117581d814732f8e3e',1,'com.amazon.maccandroid.MACCAndroidClient.getState()']]], - ['getwifisignalstrength',['getWifiSignalStrength',['../classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html#a3f4cfef555cc827bdaa47eea87ba330a',1,'com::amazon::aace::network::NetworkInfoProvider']]], - ['globalpreset',['GlobalPreset',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html',1,'com::amazon::aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_7.html b/docs/docs/doxygen-docs/android/search/all_7.html deleted file mode 100644 index de1910770..000000000 --- a/docs/docs/doxygen-docs/android/search/all_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_7.js b/docs/docs/doxygen-docs/android/search/all_7.js deleted file mode 100644 index 48c2982b5..000000000 --- a/docs/docs/doxygen-docs/android/search/all_7.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['handledirective',['handleDirective',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#ab46bf32d7294f18e0a23f0b09052db0d',1,'com.amazon.aace.customDomain.CustomDomain.handleDirective()'],['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html#acd7bc0cbe9be5cb6b3ae9e31a0a0e487',1,'com.amazon.maccandroid.MACCAndroidClient.handleDirective()']]], - ['hardware_5farch',['HARDWARE_ARCH',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#aa7311e116130a9d1cfdc4357cdc766d0',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['hold_5fto_5ftalk',['HOLD_TO_TALK',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html#ad843706356e923f0dec4fc5187a2ad3a',1,'com::amazon::aace::alexa::SpeechRecognizer::Initiator']]], - ['holdtotalk',['holdToTalk',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a8abc634b08c0514cf66c65e7e4992058',1,'com::amazon::aace::alexa::SpeechRecognizer']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_8.html b/docs/docs/doxygen-docs/android/search/all_8.html deleted file mode 100644 index 11e27cdb4..000000000 --- a/docs/docs/doxygen-docs/android/search/all_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_8.js b/docs/docs/doxygen-docs/android/search/all_8.js deleted file mode 100644 index 0c8bb53cb..000000000 --- a/docs/docs/doxygen-docs/android/search/all_8.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['idle',['IDLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#a67e1c3dea06939755563594ab58a94cf',1,'com.amazon.aace.alexa.AlexaClient.DialogState.IDLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#ab67d81e3686ddb0543eb63e9847035e5',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.IDLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a6d05a7884ac68ad8c0fa773d188b99dd',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.IDLE()'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#a4f1faf3c53a546e7e9caa69f0db3596f',1,'com.amazon.aace.phonecontrol.PhoneCallController.CallState.IDLE()']]], - ['inbound_5fringing',['INBOUND_RINGING',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#af88f165ecbafbd552d80b6be51f2028c',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]], - ['indicatorstate',['IndicatorState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html',1,'com::amazon::aace::alexa::Notifications']]], - ['info',['INFO',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#a7a263c82b708e691632845088197bce0',1,'com::amazon::aace::logger::Logger::Level']]], - ['initandrundiscovery',['initAndRunDiscovery',['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html#a4d1acf7c53ec5508c9769ef40e31aa79',1,'com::amazon::maccandroid::MACCAndroidClient']]], - ['initiator',['Initiator',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['internal_5ferror',['INTERNAL_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a93164b476534d8d5222e6561abd19f64',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INTERNAL_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a1b22429a7bd02c0b37b2300a69f7904d',1,'com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.INTERNAL_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#aa63e3e0b62ced63ab52ccd64774dfe16',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INTERNAL_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html#a8d7018a3c51f74305beed5af3b0920d7',1,'com.amazon.aace.customDomain.CustomDomain.ResultType.INTERNAL_ERROR()']]], - ['interrupt',['INTERRUPT',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#ac49f49099443eedfc9afe21d74672c36',1,'com::amazon::aace::apl::APL::ActivityEvent']]], - ['interruptcommandsequence',['interruptCommandSequence',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a1e7a734a3c5045cfc2f978485975387c',1,'com::amazon::aace::apl::APL']]], - ['invalid_5fauth',['INVALID_AUTH',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#adda100720c508c85e79789231577dc53',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['invalid_5fcbl_5fclient_5fid',['INVALID_CBL_CLIENT_ID',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a1f3056441df8dcc989e111b0b96016e9',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_CBL_CLIENT_ID()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a6e7c0fa9886bf86a5a33143ea4ec1e3d',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_CBL_CLIENT_ID()']]], - ['invalid_5fcode_5fpair',['INVALID_CODE_PAIR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#af4cbf7b7daf5c08c6fcfb6ee17571d34',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_CODE_PAIR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#ac03243a2d29701c94db30e406942f5fb',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_CODE_PAIR()']]], - ['invalid_5frequest',['INVALID_REQUEST',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ab6accdb3d0f7a66cf60cecdaf453bae8',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_REQUEST()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a2b45e1388e8814930d49fb51abe08a38',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_REQUEST()']]], - ['invalid_5fvalue',['INVALID_VALUE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ab45ae7cf9d114422efc8209f4f943c4d',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_VALUE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#ac75e969852f0fb136ea74743f76baf85',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_VALUE()']]], - ['invocationreason',['InvocationReason',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html',1,'com::amazon::aace::alexa::MediaPlaybackRequestor']]], - ['ispowercontrolleron',['isPowerControllerOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a9ab19b4f3930027cfa8d88b02ac8355c',1,'com::amazon::aace::carControl::CarControl']]], - ['istogglecontrolleron',['isToggleControllerOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a19c74c8a8b397a9ca79a6ca313cff2b6',1,'com::amazon::aace::carControl::CarControl']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_9.html b/docs/docs/doxygen-docs/android/search/all_9.html deleted file mode 100644 index f8abbbe59..000000000 --- a/docs/docs/doxygen-docs/android/search/all_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_9.js b/docs/docs/doxygen-docs/android/search/all_9.js deleted file mode 100644 index c218a9c16..000000000 --- a/docs/docs/doxygen-docs/android/search/all_9.js +++ /dev/null @@ -1,29 +0,0 @@ -var searchData= -[ - ['language',['LANGUAGE',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a5a6dd9c71de1668f6bbe6b9cc4e5c400',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['level',['Level',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html',1,'com::amazon::aace::logger::Logger']]], - ['line_5fin',['LINE_IN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a23e73e0cbefe193d2370addd297178e5',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['listening',['LISTENING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#ac516ead6a7bee0daee38deca08f2274c',1,'com::amazon::aace::alexa::AlexaClient::DialogState']]], - ['localadjustbandlevels',['localAdjustBandLevels',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#ac81e7032b16451fed430d24547e84a6c',1,'com::amazon::aace::alexa::EqualizerController']]], - ['localadjustvolume',['localAdjustVolume',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html#abac9795a1b6602865d7bd336b2487e29',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['localmediasource',['LocalMediaSource',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html',1,'com::amazon::aace::alexa']]], - ['localresetbands',['localResetBands',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#ab6b723e4097ab4e516b8cd54d0278540',1,'com.amazon.aace.alexa.EqualizerController.localResetBands(EqualizerBand[] bands)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#a8f9bd9ff880fb67cb3238f0e336d1024',1,'com.amazon.aace.alexa.EqualizerController.localResetBands()']]], - ['localsetbandlevels',['localSetBandLevels',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#a27bea1cb94c484fafbcace94f8f1453d',1,'com::amazon::aace::alexa::EqualizerController']]], - ['localsetmute',['localSetMute',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html#a4de7c35ba5fcf6a5d58dd739da5651dc',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['localsetvolume',['localSetVolume',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html#aeb16b5ff83637916f5d049a104d53e89',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['localstop',['localStop',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#ac6fbbdfafe8f8c44e73650e9317edc38',1,'com::amazon::aace::alexa::Alerts']]], - ['location',['Location',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html',1,'com.amazon.aace.location.Location'],['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#a3d09e33a1061b2900b8c6a487da2e617',1,'com.amazon.aace.location.Location.Location(double latitude, double longitude, double altitude, double accuracy)'],['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#acc7fef7f61124dc093ced3ffb9c74337',1,'com.amazon.aace.location.Location.Location(double latitude, double longitude, double altitude)'],['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#a3e450657a640c82bcafb0deab1742a43',1,'com.amazon.aace.location.Location.Location(double latitude, double longitude)']]], - ['locationprovider',['LocationProvider',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html',1,'com::amazon::aace::location']]], - ['locationserviceaccess',['LocationServiceAccess',['../enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html',1,'com::amazon::aace::location::LocationProvider']]], - ['locationserviceaccesschanged',['locationServiceAccessChanged',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html#a8eed3d42ff1c83bce357daa12aa8a087',1,'com::amazon::aace::location::LocationProvider']]], - ['log',['log',['../classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html#aabf3af2fa06228a6ea43a9c0ae881921',1,'com::amazon::aace::logger::Logger']]], - ['logevent',['logEvent',['../classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html#ae1a55b7d50d94b1872927e91f6490035',1,'com::amazon::aace::logger::Logger']]], - ['logger',['Logger',['../classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html',1,'com::amazon::aace::logger']]], - ['loggerconfiguration',['LoggerConfiguration',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html',1,'com::amazon::aace::logger::config']]], - ['login',['login',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a6aa1476a6900c5380884944191f71136',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['logincomplete',['loginComplete',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a3423902d7b22164145d24e74a171765e',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['logout',['logout',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a8dfc0565e9ac5c0662a9431886f8ef6e',1,'com.amazon.aace.alexa.ExternalMediaAdapter.logout()'],['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a33d59157ab8510d41612ac7863c9af5d',1,'com.amazon.aace.authorization.Authorization.logout()']]], - ['logoutcomplete',['logoutComplete',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a9d6279826669b48ebf5c670985f0f092',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['loop',['LOOP',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#ae1c56e3222db7bc492ce0e13e132008c',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['lower',['LOWER',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html#a617b78dcb007cdf76be24cc4c01a14dd',1,'com::amazon::aace::carControl::CarControlConfiguration::Action']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_a.html b/docs/docs/doxygen-docs/android/search/all_a.html deleted file mode 100644 index 9601fcee1..000000000 --- a/docs/docs/doxygen-docs/android/search/all_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_a.js b/docs/docs/doxygen-docs/android/search/all_a.js deleted file mode 100644 index bd11b40bb..000000000 --- a/docs/docs/doxygen-docs/android/search/all_a.js +++ /dev/null @@ -1,26 +0,0 @@ -var searchData= -[ - ['maccandroidclient',['MACCAndroidClient',['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html',1,'com::amazon::maccandroid']]], - ['make',['MAKE',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#ac47c1c6967b0b1226b477f6ae9dab54f',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['mayduck',['mayDuck',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#acc4a36a861a763a797001caf19a4d11b',1,'com::amazon::aace::audio::AudioOutput']]], - ['media_5ferror_5finternal_5fdevice_5ferror',['MEDIA_ERROR_INTERNAL_DEVICE_ERROR',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a6d6b1b860c3966f196751b2ae23c01bf',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['media_5ferror_5finternal_5fserver_5ferror',['MEDIA_ERROR_INTERNAL_SERVER_ERROR',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a4412bf5a8eeea95f2c66b28b401a436b',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['media_5ferror_5finvalid_5frequest',['MEDIA_ERROR_INVALID_REQUEST',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a359032b8af32d6a349319550653b2feb',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['media_5ferror_5fservice_5funavailable',['MEDIA_ERROR_SERVICE_UNAVAILABLE',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a33bcb76fcd749f7589150e839771a85b',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['media_5ferror_5funknown',['MEDIA_ERROR_UNKNOWN',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a92154f383495a93ab4eb197218e83e62',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['mediaerror',['MediaError',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html',1,'com.amazon.aace.audio.AudioOutput.MediaError'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#affc23414f8a4c0dc7aa518e398123d3c',1,'com.amazon.aace.audio.AudioOutput.mediaError(MediaError type, String error)']]], - ['mediaplaybackrequestor',['MediaPlaybackRequestor',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html',1,'com::amazon::aace::alexa']]], - ['mediaplaybackrequeststatus',['MediaPlaybackRequestStatus',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html',1,'com::amazon::aace::alexa::MediaPlaybackRequestor']]], - ['mediaplaybackresponse',['mediaPlaybackResponse',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html#acefa5e0a87cde9055894cb09dd197f14',1,'com::amazon::aace::alexa::MediaPlaybackRequestor']]], - ['mediastate',['MediaState',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html',1,'com::amazon::aace::audio::AudioOutput']]], - ['mediastatechanged',['mediaStateChanged',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a9e50601e05eb9d32e1f56d75e7849fc3',1,'com::amazon::aace::audio::AudioOutput']]], - ['mediatype',['MediaType',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType']]], - ['messaging',['Messaging',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html',1,'com::amazon::aace::messaging']]], - ['metric',['METRIC',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#a3fb8000c5538432243c47b03951b0aa3',1,'com::amazon::aace::logger::Logger::Level']]], - ['microphone',['MICROPHONE',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a86317253c5a92a11853d1192fd8459f9',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['midrange',['MIDRANGE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html#a8a95ff66b0429c976d07f5ee12269a00',1,'com::amazon::aace::alexa::EqualizerController::EqualizerBand']]], - ['mode',['Mode',['../enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode.html',1,'com.amazon.aace.aasb.AASBStream.Mode'],['../enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode.html',1,'com.amazon.aace.core.MessageStream.Mode']]], - ['model',['MODEL',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a5dfe79dfa6301ba1efaca475e7061b9e',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['mutedstate',['MutedState',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state.html',1,'com::amazon::aace::audio::AudioOutput']]], - ['mutedstatechanged',['mutedStateChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#afe18a6f17fa731a2abb0812d9d3b7c34',1,'com.amazon.aace.alexa.ExternalMediaAdapter.mutedStateChanged()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a712968f4a35418dbcbc0e4b74599dcf0',1,'com.amazon.aace.alexa.LocalMediaSource.mutedStateChanged()'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#af9dbd926cff6739c7e9f26029f5f7a29',1,'com.amazon.aace.audio.AudioOutput.mutedStateChanged()']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_b.html b/docs/docs/doxygen-docs/android/search/all_b.html deleted file mode 100644 index 0814e4e03..000000000 --- a/docs/docs/doxygen-docs/android/search/all_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_b.js b/docs/docs/doxygen-docs/android/search/all_b.js deleted file mode 100644 index 2a810e15e..000000000 --- a/docs/docs/doxygen-docs/android/search/all_b.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['navigation',['Navigation',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html',1,'com.amazon.aace.navigation.Navigation'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Navigation'],['../enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html#ad0ae1089ea7eddfe17308effbb3fa5a0',1,'com.amazon.aace.addressbook.AddressBook.AddressBookType.NAVIGATION()']]], - ['navigationconfiguration',['NavigationConfiguration',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html',1,'com::amazon::aace::navigation::config']]], - ['navigationerror',['navigationError',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#af554852edcf3c872474896fef22a6403',1,'com::amazon::aace::navigation::Navigation']]], - ['navigationevent',['navigationEvent',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#a6920b2f0e9a84e290c16acac2f86ae93',1,'com::amazon::aace::navigation::Navigation']]], - ['networkinfoprovider',['NetworkInfoProvider',['../classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html',1,'com::amazon::aace::network']]], - ['networkstatus',['NetworkStatus',['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html',1,'com::amazon::aace::network::NetworkInfoProvider']]], - ['networkstatuschanged',['networkStatusChanged',['../classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html#a55c210200d18fb3a132ea94f06b48e7c',1,'com::amazon::aace::network::NetworkInfoProvider']]], - ['next',['NEXT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a8d02b980e2e4694b452af422692e357a',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.NEXT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a66fd19cd8a45ffc05570bb396d59059f',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.NEXT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#a9c78f75d9666b3fbcf8123c671750ec4',1,'com.amazon.aace.alexa.PlaybackController.PlaybackButton.NEXT()']]], - ['no_5fanswer',['NO_ANSWER',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#af9d6886ae649c361f57ca50415b0ab9e',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallError']]], - ['no_5fcarrier',['NO_CARRIER',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#ad6969582a7bc9c40bd2592bc2bf3a18b',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallError']]], - ['no_5fconnectivity',['NO_CONNECTIVITY',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html#a0aaaa05fb0d8e1eeeeb39a8f952dee30',1,'com::amazon::aace::messaging::Messaging::ErrorCode']]], - ['no_5ferror',['NO_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a9c51f1b91b356219b9e49d53dd10d600',1,'com.amazon.aace.alexa.AlexaClient.AuthError.NO_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a6649ad016b5958c5a733c24bb5b6a130',1,'com.amazon.aace.alexa.AuthProvider.AuthError.NO_ERROR()']]], - ['no_5fnumber_5ffor_5fredial',['NO_NUMBER_FOR_REDIAL',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#a65e4bf416fa94982beeae4217b8ce0bd',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallError']]], - ['no_5fpermission',['NO_PERMISSION',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html#a9ac39c2b74cd598dfb3ab4aab43e3b69',1,'com::amazon::aace::messaging::Messaging::ErrorCode']]], - ['none',['NONE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#accdacec235ded90798b9740ae4097314',1,'com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.NONE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html#afe308185b3b1c7122929da66157cee3c',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Navigation.NONE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html#ad650a4406ebfcf1afa285c11e73653ad',1,'com.amazon.aace.alexa.TemplateRuntime.FocusState.NONE()'],['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#a372a8805a2b75bc73309cee4b492c020',1,'com.amazon.aace.cbl.CBL.CBLStateChangedReason.NONE()']]], - ['not_5frated',['NOT_RATED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html#ad23986edc16bf97960d98974991b8d61',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Favorites.NOT_RATED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html#a1fb259a6c41eaa17c2301c5b2fc19b1c',1,'com.amazon.aace.alexa.LocalMediaSource.Favorites.NOT_RATED()']]], - ['notifications',['Notifications',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html',1,'com::amazon::aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_c.html b/docs/docs/doxygen-docs/android/search/all_c.html deleted file mode 100644 index da08c387a..000000000 --- a/docs/docs/doxygen-docs/android/search/all_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_c.js b/docs/docs/doxygen-docs/android/search/all_c.js deleted file mode 100644 index 02624c304..000000000 --- a/docs/docs/doxygen-docs/android/search/all_c.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['off',['OFF',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html#ab15913f94667fe6b8ba0c46d9c529248',1,'com.amazon.aace.alexa.Notifications.IndicatorState.OFF()'],['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html#a6aa5d4e5bcf4cb1dda51015b7b5ef86f',1,'com.amazon.aace.messaging.Messaging.PermissionState.OFF()']]], - ['on',['ON',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html#ae173010b35749855d9e6f5e8045ef25c',1,'com.amazon.aace.alexa.Notifications.IndicatorState.ON()'],['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html#a78778d8ae3e8885e8e80331660111e55',1,'com.amazon.aace.messaging.Messaging.PermissionState.ON()']]], - ['onauthorizedplayers',['onAuthorizedPlayers',['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html#a0243bb670db4c712a72806d2973322c9',1,'com::amazon::maccandroid::MACCAndroidClient']]], - ['one_5ftime',['ONE_TIME',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#ab26e23c0c551eed1b1e374af9b670e4a',1,'com::amazon::aace::apl::APL::ActivityEvent']]], - ['onnotificationreceived',['onNotificationReceived',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html#af7fc19e5196bdd504b4e2958255e1d78',1,'com::amazon::aace::alexa::Notifications']]], - ['open',['OPEN',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html#a75e9215d18075f95fc2bd858d4844092',1,'com::amazon::aace::carControl::CarControlConfiguration::Action']]], - ['operating_5fsystem',['OPERATING_SYSTEM',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a1719f615fbf2cba865008ee76f4fc501',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['other',['OTHER',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#abb19404db0105d784b0f6707a9957022',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.OTHER()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#ac7c89ff94c79c391478f665e7a1e9b40',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.OTHER()'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#a36ca6a929897de7ba18fbc0950099150',1,'com.amazon.aace.phonecontrol.PhoneCallController.CallError.OTHER()']]], - ['outbound_5fringing',['OUTBOUND_RINGING',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#a2f8eae04a80520b32d6c775b7eda0238',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_d.html b/docs/docs/doxygen-docs/android/search/all_d.html deleted file mode 100644 index 9986c9cbf..000000000 --- a/docs/docs/doxygen-docs/android/search/all_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_d.js b/docs/docs/doxygen-docs/android/search/all_d.js deleted file mode 100644 index b9da5e45f..000000000 --- a/docs/docs/doxygen-docs/android/search/all_d.js +++ /dev/null @@ -1,35 +0,0 @@ -var searchData= -[ - ['past_5fdue',['PAST_DUE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a1fdf1b15b4d0d7d66f302d39226e1515',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['pause',['pause',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a1dfc109dfffdb40f04cdb40cb959772e',1,'com.amazon.aace.audio.AudioOutput.pause()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a9addd643ba90801649941240267b4548',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.PAUSE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a33d2fe80525779685db0b18e06d0d76a',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.PAUSE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#a0b8d2deb4dac2346a2cf7e0b5a5703ea',1,'com.amazon.aace.alexa.PlaybackController.PlaybackButton.PAUSE()']]], - ['paused',['PAUSED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#a920ec3f1af331593ebbd401617c7c59f',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.PAUSED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a4d17484b31b4b2c0cdf2a1bb19aafcc4',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.PAUSED()']]], - ['pending',['PENDING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html#a02bc9909272fb03ad50912fb14adad3a',1,'com::amazon::aace::alexa::AlexaClient::ConnectionStatus']]], - ['permissionstate',['PermissionState',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html',1,'com::amazon::aace::messaging::Messaging']]], - ['phonecallcontroller',['PhoneCallController',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html',1,'com::amazon::aace::phonecontrol']]], - ['ping_5ftimedout',['PING_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a21694df85e4806fb1312f0c1ef472f3d',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['platforminterface',['PlatformInterface',['../classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface.html',1,'com::amazon::aace::core']]], - ['play',['PLAY',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#aa13250d142489889e25587c5b6661ad6',1,'com.amazon.aace.alexa.PlaybackController.PlaybackButton.PLAY()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a4e6f48d186f9e329cc23e7e27af1fe22',1,'com.amazon.aace.alexa.ExternalMediaAdapter.play()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#ac3b7c0af177039a95960a43e8c94ddc0',1,'com.amazon.aace.alexa.LocalMediaSource.play(ContentSelector selector, String payload)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#ab5a7492cd229a3a72753e77c409c687b',1,'com.amazon.aace.alexa.LocalMediaSource.play(ContentSelector selector, String payload, String sessionId)'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#ab832b921a38be3faa8729a6a7f45b033',1,'com.amazon.aace.audio.AudioOutput.play()']]], - ['playbackbutton',['PlaybackButton',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html',1,'com::amazon::aace::alexa::PlaybackController']]], - ['playbackcontroller',['PlaybackController',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html',1,'com::amazon::aace::alexa']]], - ['playbacktoggle',['PlaybackToggle',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html',1,'com::amazon::aace::alexa::PlaybackController']]], - ['playcontrol',['playControl',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#acc4aeb97fa65762599c5d49ad5ff55fc',1,'com.amazon.aace.alexa.ExternalMediaAdapter.playControl()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a47590bb626f8cfb28f688e82bd16d9ef',1,'com.amazon.aace.alexa.LocalMediaSource.playControl()']]], - ['playcontroltype',['PlayControlType',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType']]], - ['playeractivity',['PlayerActivity',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity']]], - ['playeractivitychanged',['playerActivityChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html#a826430dfb938c33497f02acd26ab9c46',1,'com::amazon::aace::alexa::AudioPlayer']]], - ['playererror',['playerError',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a1ff1f7608f65642db3b77c5f9645a3f0',1,'com.amazon.aace.alexa.ExternalMediaAdapter.playerError()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a1e37476cccbe2e7656c299a3c8f173aa',1,'com.amazon.aace.alexa.LocalMediaSource.playerError(String errorName, long code, String description, boolean fatal)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#af411dc4655350141c94540301ec24f93',1,'com.amazon.aace.alexa.LocalMediaSource.playerError(String errorName, long code, String description, boolean fatal, String sessionId)']]], - ['playerevent',['playerEvent',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a07f3cca30000f1e28036aef2a312d867',1,'com.amazon.aace.alexa.ExternalMediaAdapter.playerEvent()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#aee0442626b3e43ebb25120abbefd452f',1,'com.amazon.aace.alexa.LocalMediaSource.playerEvent(String eventName)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a9dacaa1ab009aee994b0b01d03f78988',1,'com.amazon.aace.alexa.LocalMediaSource.playerEvent(String eventName, String sessionId)']]], - ['playerplaybackinfo',['PlayerPlaybackInfo',['../classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info.html',1,'com::amazon::maccandroid::model']]], - ['playing',['PLAYING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#aea6407431975166091c7d54683049231',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.PLAYING()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a2fd771f5b73a9afa50491a635947125c',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.PLAYING()'],['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html#a2a7414158c5e062e01441d5d9dbadeb3',1,'com.amazon.aace.audio.AudioOutput.MediaState.PLAYING()']]], - ['podcast',['PODCAST',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#a9c25f98e8622ffd09f15703344d36d82',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.PODCAST()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#a26bcbd93a59deb6da184f0521292e149',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.PODCAST()']]], - ['prepare',['prepare',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#aff7e7f7323143c4843d48a0650ce91b4',1,'com.amazon.aace.audio.AudioOutput.prepare(AudioStream stream, boolean repeating)'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#ae3726cd2b38409262fadedc25a9a68e7',1,'com.amazon.aace.audio.AudioOutput.prepare(String url, boolean repeating)']]], - ['preparespeech',['prepareSpeech',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#a841a5d9df89c29c52d741eb3e25b8d96',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['preparespeechcompleted',['prepareSpeechCompleted',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#a51e78d738679b0d97992a1a664a474c4',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['preparespeechfailed',['prepareSpeechFailed',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#a8f845bfac2508a918cd607d46344fbd3',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['preset',['PRESET',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html#a7e83aee7db7cdf5eca08d53eb1052379',1,'com::amazon::aace::alexa::LocalMediaSource::ContentSelector']]], - ['previous',['PREVIOUS',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a44db1e8b5ea188d0bdce37e12c02771f',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.PREVIOUS()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#aecc1638b0abfc3ffb15b11d213fd1d23',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.PREVIOUS()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#a1d26131b0550c3963bb75ce4e3299a22',1,'com.amazon.aace.alexa.PlaybackController.PlaybackButton.PREVIOUS()']]], - ['processactivityevent',['processActivityEvent',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#afb0b59ce5e87005456cc34cb79fed1e8',1,'com::amazon::aace::apl::APL']]], - ['propertychanged',['propertyChanged',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html#aa914e628f95f552b87c7dda3ba902a4a',1,'com::amazon::aace::propertyManager::PropertyManager']]], - ['propertymanager',['PropertyManager',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html',1,'com::amazon::aace::propertyManager']]], - ['propertystate',['PropertyState',['../enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html',1,'com::amazon::aace::propertyManager::PropertyManager']]], - ['propertystatechanged',['propertyStateChanged',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html#a6c1d4f9e41142872da267073d481f014',1,'com::amazon::aace::propertyManager::PropertyManager']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_e.html b/docs/docs/doxygen-docs/android/search/all_e.html deleted file mode 100644 index 9fa42bbac..000000000 --- a/docs/docs/doxygen-docs/android/search/all_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_e.js b/docs/docs/doxygen-docs/android/search/all_e.js deleted file mode 100644 index 92bd86e68..000000000 --- a/docs/docs/doxygen-docs/android/search/all_e.js +++ /dev/null @@ -1,32 +0,0 @@ -var searchData= -[ - ['raise',['RAISE',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html#ade3c8e82b32e72b759eae990df0ac7df',1,'com::amazon::aace::carControl::CarControlConfiguration::Action']]], - ['read_5ftimedout',['READ_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a5a96c6d0e2f1565e8c1aa15efd0b4990',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['ready',['READY',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a808b9e372a43813f1cc465ca4cf2a558',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['redial',['redial',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a2efb96253241a29f2cf840a43ba8c180',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['refreshed',['REFRESHED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html#abcd39f34f475ff1506abd332133e7ab9',1,'com.amazon.aace.alexa.AlexaClient.AuthState.REFRESHED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html#ad0dacf1dbc99ddf4c923863a6ce3f038',1,'com.amazon.aace.alexa.AuthProvider.AuthState.REFRESHED()']]], - ['refreshing_5ftoken',['REFRESHING_TOKEN',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#afbb19a70e90574677a52d0e5ae13fb75',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['registerplatforminterface',['registerPlatformInterface',['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#a0e2cf93d586ac645321fa3963d84f28f',1,'com::amazon::aace::core::Engine']]], - ['removeaddressbook',['removeAddressBook',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html#a64eda01c44e5a17b8b6d4d47bb746dd9',1,'com::amazon::aace::addressbook::AddressBook']]], - ['removeallalerts',['removeAllAlerts',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#abb9f0c260a01fa735ec0424f36b9c3ed',1,'com::amazon::aace::alexa::Alerts']]], - ['removediscoveredplayer',['removeDiscoveredPlayer',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#ae34e390c93b76497b86db5cdcd16fda6',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['renderdocument',['renderDocument',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#ad7a2d8bcd734b02486ccced4656df947',1,'com::amazon::aace::apl::APL']]], - ['renderdocumentresult',['renderDocumentResult',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a6a4248122416663bf1e4412f99fd429d',1,'com::amazon::aace::apl::APL']]], - ['renderplayerinfo',['renderPlayerInfo',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#a09010f2bbdf49bbd579108d7c405e040',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['rendertemplate',['renderTemplate',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#a2b47479f51a5998559dc2d7e9b33fdbe',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['repeat',['REPEAT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#a5b6191bde99908b57e7a49f42a9c44d6',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['report_5fducking_5fstarted',['REPORT_DUCKING_STARTED',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html#a3ea741bc56b22245ebb3bcdf9099cae4',1,'com::amazon::aace::audio::AudioOutput::FocusAction']]], - ['report_5fducking_5fstopped',['REPORT_DUCKING_STOPPED',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html#a0c24a334d4484e55b5c82f22481c208a',1,'com::amazon::aace::audio::AudioOutput::FocusAction']]], - ['reportdirectivehandlingresult',['reportDirectiveHandlingResult',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#a2aa42ff1b567e8f8cc26aca61660ff22',1,'com::amazon::aace::customDomain::CustomDomain']]], - ['reportdiscoveredplayers',['reportDiscoveredPlayers',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#ac35c5760ab1c2cfca05f59eb0fdfa62b',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['reportnetworkdatausage',['reportNetworkDataUsage',['../classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html#af219f67c9fea0057a7a502f495f99809',1,'com::amazon::aace::deviceUsage::DeviceUsage']]], - ['requesting_5fcode_5fpair',['REQUESTING_CODE_PAIR',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#a80ff59d65698a4bbf3d1c00ade4a82a2',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['requesting_5ftoken',['REQUESTING_TOKEN',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#a555c83bcacee077d86e04dbf79524d09',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['requestmediaplayback',['requestMediaPlayback',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html#a3e7cf911995d11fc36b68f7893243174',1,'com.amazon.aace.alexa.MediaPlaybackRequestor.requestMediaPlayback(InvocationReason invocationReason)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html#a624410ab126c1d7db771707313ac837f',1,'com.amazon.aace.alexa.MediaPlaybackRequestor.requestMediaPlayback(InvocationReason invocationReason, long elapsedBootTime)']]], - ['requesttoken',['requestToken',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a70408cbfd6cf421643434928d4619511',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['reset',['reset',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a438e7b454cdfca08bf2b24795f73650b',1,'com::amazon::aace::cbl::CBL']]], - ['resulttype',['ResultType',['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html',1,'com::amazon::aace::customDomain::CustomDomain']]], - ['resume',['resume',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a860c1575b54e245352fa2c8d05baf1e9',1,'com.amazon.aace.audio.AudioOutput.resume()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a6d06315ba79d3fb13aa555ec7aca28e1',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.RESUME()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#ad70e7f79f9d67d5f567c3e45d2238ed2',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.RESUME()']]], - ['rewind',['REWIND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a334205e90695622d10a0908c77cc9011',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.REWIND()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a27ef87ba4880ffe5a2bcd0e32431673c',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.REWIND()']]], - ['rse_5fembedded_5ffiretvs',['RSE_EMBEDDED_FIRETVS',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#ad1c171df63cdcc40ad3a691710b1d2d4',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/all_f.html b/docs/docs/doxygen-docs/android/search/all_f.html deleted file mode 100644 index 6ecfc0ed8..000000000 --- a/docs/docs/doxygen-docs/android/search/all_f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/all_f.js b/docs/docs/doxygen-docs/android/search/all_f.js deleted file mode 100644 index 4aa16234f..000000000 --- a/docs/docs/doxygen-docs/android/search/all_f.js +++ /dev/null @@ -1,75 +0,0 @@ -var searchData= -[ - ['sample',['SAMPLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#a7fee02f56ef0e9d1ffd5149e9dc842f5',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.SAMPLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#a78c91a721345dc4269259cbbae76e6ab',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.SAMPLE()']]], - ['satellite_5fradio',['SATELLITE_RADIO',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a705bb0517f4c7206dd72e306d36ec3d2',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['scheduled_5ffor_5flater',['SCHEDULED_FOR_LATER',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a0a4f1b8ecfb1f4231f7ad6f59f63cf12',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['seek',['seek',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a6c511f6d0967158f9512d5359e4a4a10',1,'com.amazon.aace.alexa.ExternalMediaAdapter.seek()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a0f65d94b6aa9a24a7d896939adc8d4a4',1,'com.amazon.aace.alexa.LocalMediaSource.seek()']]], - ['sendconnectivityevent',['sendConnectivityEvent',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#a0c48d9a511a6b5e58b37d4862ca28e8a',1,'com.amazon.aace.connectivity.AlexaConnectivity.sendConnectivityEvent(String event)'],['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#a32466cf1259a1453b076c4f4f2350d60',1,'com.amazon.aace.connectivity.AlexaConnectivity.sendConnectivityEvent(String event, String token)']]], - ['senddatasourcefetchrequestevent',['sendDataSourceFetchRequestEvent',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a4886bca519163b2d2648ee09fd519bde',1,'com::amazon::aace::apl::APL']]], - ['senddevicewindowstate',['sendDeviceWindowState',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a846222db2e1244525bedcc935274a582',1,'com::amazon::aace::apl::APL']]], - ['senddocumentstate',['sendDocumentState',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a02696580fc976b4ab7596512a5613c1c',1,'com::amazon::aace::apl::APL']]], - ['senddtmf',['sendDTMF',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a84929af8429fa585444691eb965da31a',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['senddtmffailed',['sendDTMFFailed',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#aaa339310c1f1f0c29b99308677572a47',1,'com.amazon.aace.phonecontrol.PhoneCallController.sendDTMFFailed(String callId, DTMFError code)'],['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a6deac75764abd61feefcff05756ed367',1,'com.amazon.aace.phonecontrol.PhoneCallController.sendDTMFFailed(String callId, DTMFError code, String message)']]], - ['senddtmfsucceeded',['sendDTMFSucceeded',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#abbef49449a17271bc67e885054c50416',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['sendevent',['sendEvent',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a642481290c6676c77421712813cbc9fd',1,'com.amazon.aace.authorization.Authorization.sendEvent()'],['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#a12b7c2fbf999fea8326823e53dc51fd1',1,'com.amazon.aace.customDomain.CustomDomain.sendEvent()']]], - ['sendmessage',['sendMessage',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#aed8f16ac5431aa6dc9e0812fdcf62c73',1,'com::amazon::aace::messaging::Messaging']]], - ['sendmessagefailed',['sendMessageFailed',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#ad874ea15c789eccb2742462d0698acac',1,'com::amazon::aace::messaging::Messaging']]], - ['sendmessagesucceeded',['sendMessageSucceeded',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#af53897803f8131beeafd3664e1cfe25d',1,'com::amazon::aace::messaging::Messaging']]], - ['sendruntimeerrorevent',['sendRuntimeErrorEvent',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#ae3debd3e0ca999b04ec313d50a8bae69',1,'com::amazon::aace::apl::APL']]], - ['senduserevent',['sendUserEvent',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a596b08f65e81293660be6b9b0b1e13b9',1,'com::amazon::aace::apl::APL']]], - ['server_5fendpoint_5fchanged',['SERVER_ENDPOINT_CHANGED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#ab767eaff8bc2d71a89062e1c5249fdfa',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['server_5ferror',['SERVER_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#af65f0bf3eab44ba1dbf2769b3ed98285',1,'com.amazon.aace.alexa.AlexaClient.AuthError.SERVER_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#adeac5ebb0f1c76c40ce8539be5e4c9d6',1,'com.amazon.aace.alexa.AuthProvider.AuthError.SERVER_ERROR()']]], - ['server_5finternal_5ferror',['SERVER_INTERNAL_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a4f472b2c8988b1f58a39ddf6607b2b77',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['server_5fside_5fdisconnect',['SERVER_SIDE_DISCONNECT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#ab91444ec409e9484d33a60f086d8e77f',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['setaplmaxversion',['setAPLMaxVersion',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a52b6f421255ee73cfef5b3c5e73073fc',1,'com::amazon::aace::apl::APL']]], - ['setauthorizationdata',['setAuthorizationData',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a5d7a33dce5adbb4ab084eb0b3b6de90e',1,'com::amazon::aace::authorization::Authorization']]], - ['setbandlevels',['setBandLevels',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#a3acad44f203be8b5a06f426d0c9db7fd',1,'com::amazon::aace::alexa::EqualizerController']]], - ['setdefaultzone',['setDefaultZone',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a7752ec6e67fa0d52955ea4003a71bbaa',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['setdocumentidletimeout',['setDocumentIdleTimeout',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a7084448c30820248b04950c804452cbe',1,'com::amazon::aace::apl::APL']]], - ['setdonotdisturb',['setDoNotDisturb',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html#a74e1edf1651fc21b67eef08e447d135f',1,'com::amazon::aace::alexa::DoNotDisturb']]], - ['setfocus',['setFocus',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#adcf544d90c89515cd2de3af216ee53cf',1,'com.amazon.aace.alexa.ExternalMediaAdapter.setFocus()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a20a6fa8f3826b39e7f19d74a761a0ed6',1,'com.amazon.aace.alexa.LocalMediaSource.setFocus(boolean focusAcquire)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a41d4aad196e6ea9eb5e41287426fb7de',1,'com.amazon.aace.alexa.LocalMediaSource.setFocus()']]], - ['setglobalpreset',['setGlobalPreset',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html#a92c047a86ebe58e5e138cc2609c0bd4a',1,'com::amazon::aace::alexa::GlobalPreset']]], - ['setindicator',['setIndicator',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html#ab83e0f63cbd01de0c1fb2cf0b331b9cf',1,'com::amazon::aace::alexa::Notifications']]], - ['setmodecontrollervalue',['setModeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a0336838d257867216acfae83ebcb6796',1,'com::amazon::aace::carControl::CarControl']]], - ['setplatformproperty',['setPlatformProperty',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#ae35c1175f6ff0be3848ba29f7a1f22d2',1,'com::amazon::aace::apl::APL']]], - ['setposition',['setPosition',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a228c6e8079d5782e1e7d9b21a925638d',1,'com::amazon::aace::audio::AudioOutput']]], - ['setproperty',['setProperty',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html#a6a6b6d34ba96850c38f1aa3d40786c7d',1,'com::amazon::aace::propertyManager::PropertyManager']]], - ['setrangecontrollervalue',['setRangeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#afe04323771ca2cbbc44de5ecb93c38ce',1,'com::amazon::aace::carControl::CarControl']]], - ['setrefreshtoken',['setRefreshToken',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#ad320c677bafca842107daa2419bbc675',1,'com::amazon::aace::cbl::CBL']]], - ['setupcompleted',['setupCompleted',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html#aa49898f6ff85c74ff11ca8fae4ae6374',1,'com::amazon::aace::alexa::DeviceSetup']]], - ['setupcompletedresponse',['setupCompletedResponse',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html#a16219851bbc1eb9ffde835f7580da4f0',1,'com::amazon::aace::alexa::DeviceSetup']]], - ['setuserprofile',['setUserProfile',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a18753a6d6d002bc4188de1a00beba9e5',1,'com::amazon::aace::cbl::CBL']]], - ['showalternativeroutessucceeded',['showAlternativeRoutesSucceeded',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#a17039d639541a43a786cd5057f9f27ae',1,'com::amazon::aace::navigation::Navigation']]], - ['shuffle',['SHUFFLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#a5680b93330b3317f4a59603121d073a9',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['sirius_5fxm',['SIRIUS_XM',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#af55fc5d2449846575cf009a06884fd3d',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['skip_5fbackward',['SKIP_BACKWARD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#a85076b1290d63274d67152dc9fcd862f',1,'com::amazon::aace::alexa::PlaybackController::PlaybackButton']]], - ['skip_5fforward',['SKIP_FORWARD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#ab0d3846c0b91fe0ab2a5963d0d5a2263',1,'com::amazon::aace::alexa::PlaybackController::PlaybackButton']]], - ['slow_5fdown',['SLOW_DOWN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ad590a57461aa38c0c73f96a51870f7dc',1,'com.amazon.aace.alexa.AlexaClient.AuthError.SLOW_DOWN()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a84d4d348d7722a582dc6aa6d854ca66c',1,'com.amazon.aace.alexa.AuthProvider.AuthError.SLOW_DOWN()']]], - ['snoozed',['SNOOZED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a698f2a451a59c115400be9b1a2df164f',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['source',['Source',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html',1,'com::amazon::aace::alexa::LocalMediaSource']]], - ['speakersettingschanged',['speakerSettingsChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html#a96ea668a0bd4f4f8f266b1a84e2f3e2d',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['speakertype',['SpeakerType',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['speaking',['SPEAKING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#aad3702bd7897fdd908285db31d7dec76',1,'com::amazon::aace::alexa::AlexaClient::DialogState']]], - ['speechrecognizer',['SpeechRecognizer',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html',1,'com::amazon::aace::alexa']]], - ['speechsynthesizer',['SpeechSynthesizer',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer.html',1,'com::amazon::aace::alexa']]], - ['start',['start',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#ae628b6fbb8421609b19f24e462b6a2aa',1,'com.amazon.aace.cbl.CBL.start()'],['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#a5e82f04dc791e4b6ce8c0efa3d541dc8',1,'com.amazon.aace.core.Engine.start()']]], - ['start_5fover',['START_OVER',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#ad5f275dc58897b8c50771831275f437b',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.START_OVER()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#aa756d16ad5ea3b2d7cf851f95b605ce7',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.START_OVER()']]], - ['startauthorization',['startAuthorization',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a58915285c9d94a41840da1b5fdaa7534',1,'com::amazon::aace::authorization::Authorization']]], - ['startcapture',['startCapture',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a5c85bfc150b64cc2389c4a036fa6c367',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['startducking',['startDucking',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a5925eafe344a095a545c4c9061e5147f',1,'com::amazon::aace::audio::AudioOutput']]], - ['started',['STARTED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#ab47241e5088bd6ce3bb9bfbefa8f679c',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['starting',['STARTING',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#a9e1ac933921d766207b455f3a2e7d9f1',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['startnavigation',['startNavigation',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#a93fd177c707c9075348883824c7dcc0b',1,'com::amazon::aace::navigation::Navigation']]], - ['station',['STATION',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#abaf69899cd9c1923e968b7f9ceb3abcd',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.STATION()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#a952425c84c795ae0890d141f89943531',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.STATION()']]], - ['statuscode',['StatusCode',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html',1,'com.amazon.aace.alexa.DeviceSetup.StatusCode'],['../enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html',1,'com.amazon.aace.connectivity.AlexaConnectivity.StatusCode']]], - ['stop',['STOP',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a8849e1e147ccccb1608e7546159550ed',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.STOP()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a4cce624af67a1cb61e357d4da036ac0f',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.STOP()'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a93328cd0e726f19b596a18343418082c',1,'com.amazon.aace.audio.AudioOutput.stop()'],['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#a37be1592924df62bc9541200eea9dcae',1,'com.amazon.aace.core.Engine.stop()'],['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a6b16e1f163c1ba5732cca98e507f0220',1,'com.amazon.aace.phonecontrol.PhoneCallController.stop()']]], - ['stopcapture',['stopCapture',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a9c043bac65f630eed854a2e48182144c',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['stopducking',['stopDucking',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a9dfeb54a48189c67157e929f1369e3df',1,'com::amazon::aace::audio::AudioOutput']]], - ['stopforegroundactivity',['stopForegroundActivity',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html#a5205acb15d66b99404896253611d657f',1,'com::amazon::aace::alexa::AlexaClient']]], - ['stopped',['STOPPED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a00ef2e9f819a785f05c3254fc032954f',1,'com.amazon.aace.alexa.Alerts.AlertState.STOPPED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#a0bb54b0208ad695e194e484d0156b108',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.STOPPED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a38c414c5c9a298d0fd08cb6bb6e4b60c',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.STOPPED()'],['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html#a798d30c76cd7f4d9af4e9bd4ca43a16d',1,'com.amazon.aace.audio.AudioOutput.MediaState.STOPPED()']]], - ['stopping',['STOPPING',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#a75da149e307bf18c96e2cc49186bf2da',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['storageconfiguration',['StorageConfiguration',['../classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html',1,'com::amazon::aace::storage::config']]], - ['succeeded',['SUCCEEDED',['../enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html#ac142bdd5dc1e3f9bc8b2fd9a3e68d227',1,'com::amazon::aace::propertyManager::PropertyManager::PropertyState']]], - ['success',['SUCCESS',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a850ede07c92d1e48f8d1eacddb190d58',1,'com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html#ac2d0dcf9eefeaee70043bfe77e74ae07',1,'com.amazon.aace.alexa.DeviceSetup.StatusCode.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html#a957ddf77e72b4456ae2efbcf8eadaa9d',1,'com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#a66a2415ad2ff7ad5ffd78729316882d9',1,'com.amazon.aace.cbl.CBL.CBLStateChangedReason.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html#ad8d12e8c11aa45968b7843367a488ada',1,'com.amazon.aace.connectivity.AlexaConnectivity.StatusCode.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html#af41adb997c6de98cd900c5425f56d390',1,'com.amazon.aace.customDomain.CustomDomain.ResultType.SUCCESS()']]], - ['supportedplaybackoperation',['SupportedPlaybackOperation',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation.html',1,'com.amazon.aace.alexa.LocalMediaSource.SupportedPlaybackOperation'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.SupportedPlaybackOperation']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_0.html b/docs/docs/doxygen-docs/android/search/classes_0.html deleted file mode 100644 index 1c3e406ac..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_0.js b/docs/docs/doxygen-docs/android/search/classes_0.js deleted file mode 100644 index 486ad5d01..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_0.js +++ /dev/null @@ -1,28 +0,0 @@ -var searchData= -[ - ['aasb',['AASB',['../classcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b.html',1,'com::amazon::aace::aasb']]], - ['action',['Action',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['activityevent',['ActivityEvent',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html',1,'com::amazon::aace::apl::APL']]], - ['addressbook',['AddressBook',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html',1,'com::amazon::aace::addressbook']]], - ['addressbookconfiguration',['AddressBookConfiguration',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html',1,'com::amazon::aace::addressbook::config']]], - ['addressbooktype',['AddressBookType',['../enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html',1,'com::amazon::aace::addressbook::AddressBook']]], - ['alerts',['Alerts',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html',1,'com::amazon::aace::alexa']]], - ['alertstate',['AlertState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html',1,'com::amazon::aace::alexa::Alerts']]], - ['alexaclient',['AlexaClient',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html',1,'com::amazon::aace::alexa']]], - ['alexaconfiguration',['AlexaConfiguration',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html',1,'com::amazon::aace::alexa::config']]], - ['alexaconnectivity',['AlexaConnectivity',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html',1,'com::amazon::aace::connectivity']]], - ['alexaspeaker',['AlexaSpeaker',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html',1,'com::amazon::aace::alexa']]], - ['apl',['APL',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html',1,'com::amazon::aace::apl']]], - ['aplconfiguration',['APLConfiguration',['../classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html',1,'com::amazon::aace::apl::config']]], - ['audioinputprovider',['AudioInputProvider',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider.html',1,'com::amazon::aace::audio']]], - ['audioinputtype',['AudioInputType',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_input_provider_1_1_audio_input_type.html',1,'com::amazon::aace::audio::AudioInputProvider']]], - ['audiooutput',['AudioOutput',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html',1,'com::amazon::aace::audio']]], - ['audiooutputprovider',['AudioOutputProvider',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider.html',1,'com::amazon::aace::audio']]], - ['audiooutputtype',['AudioOutputType',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_provider_1_1_audio_output_type.html',1,'com::amazon::aace::audio::AudioOutputProvider']]], - ['audioplayer',['AudioPlayer',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html',1,'com::amazon::aace::alexa']]], - ['autherror',['AuthError',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html',1,'com.amazon.aace.alexa.AuthProvider.AuthError'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html',1,'com.amazon.aace.alexa.AlexaClient.AuthError']]], - ['authorization',['Authorization',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html',1,'com::amazon::aace::authorization']]], - ['authorizationstate',['AuthorizationState',['../enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html',1,'com::amazon::aace::authorization::Authorization']]], - ['authprovider',['AuthProvider',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html',1,'com::amazon::aace::alexa']]], - ['authstate',['AuthState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html',1,'com.amazon.aace.alexa.AuthProvider.AuthState'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html',1,'com.amazon.aace.alexa.AlexaClient.AuthState']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_1.html b/docs/docs/doxygen-docs/android/search/classes_1.html deleted file mode 100644 index a8e706950..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_1.js b/docs/docs/doxygen-docs/android/search/classes_1.js deleted file mode 100644 index 66c50c425..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_1.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['callerror',['CallError',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['callingdeviceconfigurationproperty',['CallingDeviceConfigurationProperty',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['callstate',['CallState',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['carcontrol',['CarControl',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html',1,'com::amazon::aace::carControl']]], - ['carcontrolconfiguration',['CarControlConfiguration',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html',1,'com::amazon::aace::carControl']]], - ['cbl',['CBL',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html',1,'com::amazon::aace::cbl']]], - ['cblconfiguration',['CBLConfiguration',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html',1,'com::amazon::aace::cbl::config']]], - ['cblstate',['CBLState',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html',1,'com::amazon::aace::cbl::CBL']]], - ['cblstatechangedreason',['CBLStateChangedReason',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html',1,'com::amazon::aace::cbl::CBL']]], - ['connectionchangedreason',['ConnectionChangedReason',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html',1,'com::amazon::aace::alexa::AlexaClient']]], - ['connectionstate',['ConnectionState',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html',1,'com.amazon.aace.messaging.Messaging.ConnectionState'],['../enumcom_1_1amazon_1_1aace_1_1bluetooth_1_1_g_a_t_t_server_1_1_connection_state.html',1,'com.amazon.aace.bluetooth.GATTServer.ConnectionState'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html',1,'com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState']]], - ['connectionstatus',['ConnectionStatus',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html',1,'com::amazon::aace::alexa::AlexaClient']]], - ['contentselector',['ContentSelector',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html',1,'com::amazon::aace::alexa::LocalMediaSource']]], - ['customdomain',['CustomDomain',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html',1,'com::amazon::aace::customDomain']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_2.html b/docs/docs/doxygen-docs/android/search/classes_2.html deleted file mode 100644 index 5c09c9691..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_2.js b/docs/docs/doxygen-docs/android/search/classes_2.js deleted file mode 100644 index 3e36d5fa9..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_2.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['devicesetup',['DeviceSetup',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html',1,'com::amazon::aace::alexa']]], - ['deviceusage',['DeviceUsage',['../classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html',1,'com::amazon::aace::deviceUsage']]], - ['dialogstate',['DialogState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html',1,'com::amazon::aace::alexa::AlexaClient']]], - ['donotdisturb',['DoNotDisturb',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html',1,'com::amazon::aace::alexa']]], - ['dtmferror',['DTMFError',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html',1,'com::amazon::aace::phonecontrol::PhoneCallController']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_3.html b/docs/docs/doxygen-docs/android/search/classes_3.html deleted file mode 100644 index 5faaeba81..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_3.js b/docs/docs/doxygen-docs/android/search/classes_3.js deleted file mode 100644 index c76c9d61c..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_3.js +++ /dev/null @@ -1,11 +0,0 @@ -var searchData= -[ - ['encoding',['Encoding',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_format_1_1_encoding.html',1,'com.amazon.aace.audio.AudioFormat.Encoding'],['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_stream_1_1_encoding.html',1,'com.amazon.aace.audio.AudioStream.Encoding']]], - ['engine',['Engine',['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html',1,'com::amazon::aace::core']]], - ['engineconfiguration',['EngineConfiguration',['../classcom_1_1amazon_1_1aace_1_1core_1_1config_1_1_engine_configuration.html',1,'com::amazon::aace::core::config']]], - ['equalizerband',['EqualizerBand',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html',1,'com::amazon::aace::alexa::EqualizerController']]], - ['equalizercontroller',['EqualizerController',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html',1,'com::amazon::aace::alexa']]], - ['errorcode',['ErrorCode',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html',1,'com::amazon::aace::messaging::Messaging']]], - ['exampleunittest',['ExampleUnitTest',['../classcom_1_1amazon_1_1maccandroid_1_1_example_unit_test.html',1,'com::amazon::maccandroid']]], - ['externalmediaadapter',['ExternalMediaAdapter',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html',1,'com::amazon::aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_4.html b/docs/docs/doxygen-docs/android/search/classes_4.html deleted file mode 100644 index b3f11bc78..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_4.js b/docs/docs/doxygen-docs/android/search/classes_4.js deleted file mode 100644 index c0cb5c393..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_4.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['favorites',['Favorites',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Favorites'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html',1,'com.amazon.aace.alexa.LocalMediaSource.Favorites']]], - ['focusaction',['FocusAction',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html',1,'com::amazon::aace::audio::AudioOutput']]], - ['focusstate',['FocusState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html',1,'com::amazon::aace::alexa::TemplateRuntime']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_5.html b/docs/docs/doxygen-docs/android/search/classes_5.html deleted file mode 100644 index 952ace6f4..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_5.js b/docs/docs/doxygen-docs/android/search/classes_5.js deleted file mode 100644 index bf4e61557..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_5.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['globalpreset',['GlobalPreset',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html',1,'com::amazon::aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_6.html b/docs/docs/doxygen-docs/android/search/classes_6.html deleted file mode 100644 index 75eef9f42..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_6.js b/docs/docs/doxygen-docs/android/search/classes_6.js deleted file mode 100644 index b8a24dc83..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_6.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['indicatorstate',['IndicatorState',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html',1,'com::amazon::aace::alexa::Notifications']]], - ['initiator',['Initiator',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['invocationreason',['InvocationReason',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html',1,'com::amazon::aace::alexa::MediaPlaybackRequestor']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_7.html b/docs/docs/doxygen-docs/android/search/classes_7.html deleted file mode 100644 index 745f5f282..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_7.js b/docs/docs/doxygen-docs/android/search/classes_7.js deleted file mode 100644 index eda4cb7bc..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_7.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['level',['Level',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html',1,'com::amazon::aace::logger::Logger']]], - ['localmediasource',['LocalMediaSource',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html',1,'com::amazon::aace::alexa']]], - ['location',['Location',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html',1,'com::amazon::aace::location']]], - ['locationprovider',['LocationProvider',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html',1,'com::amazon::aace::location']]], - ['locationserviceaccess',['LocationServiceAccess',['../enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html',1,'com::amazon::aace::location::LocationProvider']]], - ['logger',['Logger',['../classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html',1,'com::amazon::aace::logger']]], - ['loggerconfiguration',['LoggerConfiguration',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html',1,'com::amazon::aace::logger::config']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_8.html b/docs/docs/doxygen-docs/android/search/classes_8.html deleted file mode 100644 index 5a443d9d5..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_8.js b/docs/docs/doxygen-docs/android/search/classes_8.js deleted file mode 100644 index 26e844cb5..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_8.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['maccandroidclient',['MACCAndroidClient',['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html',1,'com::amazon::maccandroid']]], - ['mediaerror',['MediaError',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html',1,'com::amazon::aace::audio::AudioOutput']]], - ['mediaplaybackrequestor',['MediaPlaybackRequestor',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html',1,'com::amazon::aace::alexa']]], - ['mediaplaybackrequeststatus',['MediaPlaybackRequestStatus',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html',1,'com::amazon::aace::alexa::MediaPlaybackRequestor']]], - ['mediastate',['MediaState',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html',1,'com::amazon::aace::audio::AudioOutput']]], - ['mediatype',['MediaType',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType']]], - ['messaging',['Messaging',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html',1,'com::amazon::aace::messaging']]], - ['mode',['Mode',['../enumcom_1_1amazon_1_1aace_1_1aasb_1_1_a_a_s_b_stream_1_1_mode.html',1,'com.amazon.aace.aasb.AASBStream.Mode'],['../enumcom_1_1amazon_1_1aace_1_1core_1_1_message_stream_1_1_mode.html',1,'com.amazon.aace.core.MessageStream.Mode']]], - ['mutedstate',['MutedState',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_muted_state.html',1,'com::amazon::aace::audio::AudioOutput']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_9.html b/docs/docs/doxygen-docs/android/search/classes_9.html deleted file mode 100644 index 9cb55be44..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_9.js b/docs/docs/doxygen-docs/android/search/classes_9.js deleted file mode 100644 index ceb601091..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_9.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['navigation',['Navigation',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html',1,'com.amazon.aace.navigation.Navigation'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Navigation']]], - ['navigationconfiguration',['NavigationConfiguration',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html',1,'com::amazon::aace::navigation::config']]], - ['networkinfoprovider',['NetworkInfoProvider',['../classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html',1,'com::amazon::aace::network']]], - ['networkstatus',['NetworkStatus',['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html',1,'com::amazon::aace::network::NetworkInfoProvider']]], - ['notifications',['Notifications',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html',1,'com::amazon::aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_a.html b/docs/docs/doxygen-docs/android/search/classes_a.html deleted file mode 100644 index 54940d78f..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_a.js b/docs/docs/doxygen-docs/android/search/classes_a.js deleted file mode 100644 index 2f09fc2a0..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_a.js +++ /dev/null @@ -1,14 +0,0 @@ -var searchData= -[ - ['permissionstate',['PermissionState',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html',1,'com::amazon::aace::messaging::Messaging']]], - ['phonecallcontroller',['PhoneCallController',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html',1,'com::amazon::aace::phonecontrol']]], - ['platforminterface',['PlatformInterface',['../classcom_1_1amazon_1_1aace_1_1core_1_1_platform_interface.html',1,'com::amazon::aace::core']]], - ['playbackbutton',['PlaybackButton',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html',1,'com::amazon::aace::alexa::PlaybackController']]], - ['playbackcontroller',['PlaybackController',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html',1,'com::amazon::aace::alexa']]], - ['playbacktoggle',['PlaybackToggle',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html',1,'com::amazon::aace::alexa::PlaybackController']]], - ['playcontroltype',['PlayControlType',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType']]], - ['playeractivity',['PlayerActivity',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity']]], - ['playerplaybackinfo',['PlayerPlaybackInfo',['../classcom_1_1amazon_1_1maccandroid_1_1model_1_1_player_playback_info.html',1,'com::amazon::maccandroid::model']]], - ['propertymanager',['PropertyManager',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html',1,'com::amazon::aace::propertyManager']]], - ['propertystate',['PropertyState',['../enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html',1,'com::amazon::aace::propertyManager::PropertyManager']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_b.html b/docs/docs/doxygen-docs/android/search/classes_b.html deleted file mode 100644 index 6071ae049..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_b.js b/docs/docs/doxygen-docs/android/search/classes_b.js deleted file mode 100644 index 1000fa776..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_b.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['resulttype',['ResultType',['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html',1,'com::amazon::aace::customDomain::CustomDomain']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_c.html b/docs/docs/doxygen-docs/android/search/classes_c.html deleted file mode 100644 index 6cf1d0080..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_c.js b/docs/docs/doxygen-docs/android/search/classes_c.js deleted file mode 100644 index 1e96a0d8c..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_c.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['source',['Source',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html',1,'com::amazon::aace::alexa::LocalMediaSource']]], - ['speakertype',['SpeakerType',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['speechrecognizer',['SpeechRecognizer',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html',1,'com::amazon::aace::alexa']]], - ['speechsynthesizer',['SpeechSynthesizer',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_synthesizer.html',1,'com::amazon::aace::alexa']]], - ['statuscode',['StatusCode',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html',1,'com.amazon.aace.alexa.DeviceSetup.StatusCode'],['../enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html',1,'com.amazon.aace.connectivity.AlexaConnectivity.StatusCode']]], - ['storageconfiguration',['StorageConfiguration',['../classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html',1,'com::amazon::aace::storage::config']]], - ['supportedplaybackoperation',['SupportedPlaybackOperation',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_supported_playback_operation.html',1,'com.amazon.aace.alexa.LocalMediaSource.SupportedPlaybackOperation'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_supported_playback_operation.html',1,'com.amazon.aace.alexa.ExternalMediaAdapter.SupportedPlaybackOperation']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_d.html b/docs/docs/doxygen-docs/android/search/classes_d.html deleted file mode 100644 index d4a7ed7ad..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_d.js b/docs/docs/doxygen-docs/android/search/classes_d.js deleted file mode 100644 index d3c18b612..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_d.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['templateruntime',['TemplateRuntime',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html',1,'com::amazon::aace::alexa']]], - ['texttospeech',['TextToSpeech',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html',1,'com::amazon::aace::textToSpeech']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/classes_e.html b/docs/docs/doxygen-docs/android/search/classes_e.html deleted file mode 100644 index 9a9f48c36..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/classes_e.js b/docs/docs/doxygen-docs/android/search/classes_e.js deleted file mode 100644 index 3e832f4c6..000000000 --- a/docs/docs/doxygen-docs/android/search/classes_e.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['vehicleconfiguration',['VehicleConfiguration',['../classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html',1,'com::amazon::aace::vehicle::config']]], - ['vehiclepropertytype',['VehiclePropertyType',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html',1,'com::amazon::aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/close.png b/docs/docs/doxygen-docs/android/search/close.png deleted file mode 100644 index 9342d3dfe..000000000 Binary files a/docs/docs/doxygen-docs/android/search/close.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/search/functions_0.html b/docs/docs/doxygen-docs/android/search/functions_0.html deleted file mode 100644 index 4e6d87d15..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_0.js b/docs/docs/doxygen-docs/android/search/functions_0.js deleted file mode 100644 index 458d9f698..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_0.js +++ /dev/null @@ -1,35 +0,0 @@ -var searchData= -[ - ['addactionadjustmode',['addActionAdjustMode',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#adc6e5c441b7a19e1b058cc84ee62876c',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionadjustrange',['addActionAdjustRange',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ab6a35f1a34ad12a53ff410f698f6a318',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionsetmode',['addActionSetMode',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ad458b943893f6b6129ee7febd5281d7c',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionsetrange',['addActionSetRange',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a2d5aac6efb774d9e730f5ca3e307e995',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionturnoff',['addActionTurnOff',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a98708b3275291435db027d880f7072f2',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addactionturnon',['addActionTurnOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ad3a0bbf8a515d068fe48a7c83caf44c2',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addaddressbook',['addAddressBook',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html#a260d533fde332f05cc55787dacc84c02',1,'com::amazon::aace::addressbook::AddressBook']]], - ['addassetid',['addAssetId',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#af72d00f7e9138424180b775b69448516',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addcustomassetspath',['addCustomAssetsPath',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#aff07923786bbe8d78bc7f2d3722e6f11',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['adddefaultassetspath',['addDefaultAssetsPath',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a1e8f233f6757ca9d4a4b58f91da92efb',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addmembers',['addMembers',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a8437e903eb643316bb176675b56e54d7',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addmodecontroller',['addModeController',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a7ad780d3fd7837ec394b83262322f289',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addpowercontroller',['addPowerController',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#adc3e1f9154665ca8141db54b6d444928',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addpreset',['addPreset',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ad98ed82bb00c9cdc0dc6148e77eece1f',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addrangecontroller',['addRangeController',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ad124b5814e21bcab31b3e23eba11ac61',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addtogglecontroller',['addToggleController',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a5333d4009aaa04393f55d196285614c3',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['addvalue',['addValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a4f9b0e51062de064ed92a03c18b8dc85',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['adjustmodecontrollervalue',['adjustModeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a3e8c0bf1b654235b38112817d61a51cd',1,'com::amazon::aace::carControl::CarControl']]], - ['adjustrangecontrollervalue',['adjustRangeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a10b8d7a0a9bb6badef94c0bdcbe7c84c',1,'com::amazon::aace::carControl::CarControl']]], - ['adjustseek',['adjustSeek',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#ae2bef490d146d40b7dcf7cf76f011fbb',1,'com.amazon.aace.alexa.ExternalMediaAdapter.adjustSeek()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a76edd26e6fb2557adb33a4392a1cc9d9',1,'com.amazon.aace.alexa.LocalMediaSource.adjustSeek()']]], - ['alertcreated',['alertCreated',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#aa3a5e2c9bf2adfb42f25b80a495cd234',1,'com::amazon::aace::alexa::Alerts']]], - ['alertdeleted',['alertDeleted',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#af768bdcfb00844d591dd38c6f340e4a7',1,'com::amazon::aace::alexa::Alerts']]], - ['alertstatechanged',['alertStateChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#aaec21170ff0f51d02a9f72f0d41b1ad6',1,'com::amazon::aace::alexa::Alerts']]], - ['announcemaneuver',['announceManeuver',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#aa9c67468d2301d910b4ae765f60f34d5',1,'com::amazon::aace::navigation::Navigation']]], - ['announceroadregulation',['announceRoadRegulation',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#aee853c3f66d8205e733fb27644b829f1',1,'com::amazon::aace::navigation::Navigation']]], - ['answer',['answer',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a96fcb25d9e32de9524becbec82a79ed7',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['authfailure',['authFailure',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html#a73c6d42ae6537e38fa7a910cf84e5b8a',1,'com::amazon::aace::alexa::AuthProvider']]], - ['authorizationerror',['authorizationError',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#ac2087542c1f5f41240fbe1154dc9dc51',1,'com::amazon::aace::authorization::Authorization']]], - ['authorizationstatechanged',['authorizationStateChanged',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#aac7df2c628d7212d332bca7d04248087',1,'com::amazon::aace::authorization::Authorization']]], - ['authorize',['authorize',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a0ddaaef81a0c9edbdffc2f4149f638e8',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['authstatechange',['authStateChange',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html#ae41d2954a60f8ec802e8784d1963f3eb',1,'com::amazon::aace::alexa::AuthProvider']]], - ['authstatechanged',['authStateChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html#aadf5e36e715105b0c182cab93d3bf427',1,'com::amazon::aace::alexa::AlexaClient']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_1.html b/docs/docs/doxygen-docs/android/search/functions_1.html deleted file mode 100644 index b343e2db5..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_1.js b/docs/docs/doxygen-docs/android/search/functions_1.js deleted file mode 100644 index bd31afb3f..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['buttonpressed',['buttonPressed',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html#a505dae16002e9ee0a492c9097cca57b9',1,'com::amazon::aace::alexa::PlaybackController']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_10.html b/docs/docs/doxygen-docs/android/search/functions_10.html deleted file mode 100644 index 72bc1ea1f..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_10.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_10.js b/docs/docs/doxygen-docs/android/search/functions_10.js deleted file mode 100644 index c9c805619..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_10.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['updateaplruntimeproperties',['updateAPLRuntimeProperties',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#ad8265265f94368f013d406a91b6c3b7b',1,'com::amazon::aace::apl::APL']]], - ['updatemessagesstatus',['updateMessagesStatus',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a7a605da58d14bc67576025b4ef8ca882',1,'com::amazon::aace::messaging::Messaging']]], - ['updatemessagesstatusfailed',['updateMessagesStatusFailed',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a83cf3c7c5e4740875b48ddd9bebf39b9',1,'com::amazon::aace::messaging::Messaging']]], - ['updatemessagesstatussucceeded',['updateMessagesStatusSucceeded',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a0cb2dc7a12b3d8b763f8a5183f348369',1,'com::amazon::aace::messaging::Messaging']]], - ['updatemessagingendpointstate',['updateMessagingEndpointState',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#ab3f50dd00eb27683baf6c0f430025ddc',1,'com::amazon::aace::messaging::Messaging']]], - ['uploadconversations',['uploadConversations',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a66394e0ab0b83eab25dba4c71498d7e4',1,'com::amazon::aace::messaging::Messaging']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_11.html b/docs/docs/doxygen-docs/android/search/functions_11.html deleted file mode 100644 index 6948a6155..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_11.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_11.js b/docs/docs/doxygen-docs/android/search/functions_11.js deleted file mode 100644 index 7999a13d7..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_11.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['vehiclepropertytype',['VehiclePropertyType',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#aa545b283d5616723574d4f7e8457fe66',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['volumechanged',['volumeChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#aa9b7aaa10e0d43695714364a616c86c4',1,'com.amazon.aace.alexa.ExternalMediaAdapter.volumeChanged()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#aa0898a6fd4d81e309d45e361b86fea9c',1,'com.amazon.aace.alexa.LocalMediaSource.volumeChanged()'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a95ca357a61bcf56227684c0a354e44f6',1,'com.amazon.aace.audio.AudioOutput.volumeChanged()']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_12.html b/docs/docs/doxygen-docs/android/search/functions_12.html deleted file mode 100644 index 3df848924..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_12.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_12.js b/docs/docs/doxygen-docs/android/search/functions_12.js deleted file mode 100644 index f5b0be410..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_12.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['wakeworddetected',['wakewordDetected',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a70707cd51dffbbeeeb5e90ec5cb36b18',1,'com::amazon::aace::alexa::SpeechRecognizer']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_2.html b/docs/docs/doxygen-docs/android/search/functions_2.html deleted file mode 100644 index ecce2f318..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_2.js b/docs/docs/doxygen-docs/android/search/functions_2.js deleted file mode 100644 index 9569fe07d..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_2.js +++ /dev/null @@ -1,58 +0,0 @@ -var searchData= -[ - ['calleridreceived',['callerIdReceived',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#ad8af283538524392cee3d2647eb78a6e',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['callfailed',['callFailed',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a3c41db407c07df25c744d6d4ed5ed470',1,'com.amazon.aace.phonecontrol.PhoneCallController.callFailed(String callId, CallError code)'],['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#ab5c9f2d6a6b3d5ed1993d8a1f44142ee',1,'com.amazon.aace.phonecontrol.PhoneCallController.callFailed(String callId, CallError code, String message)']]], - ['callstatechanged',['callStateChanged',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a297a3c5a3bf26b7c54dcb8a00ce835e8',1,'com.amazon.aace.phonecontrol.PhoneCallController.callStateChanged(CallState state, String callId)'],['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#afb4c67b88d5e9aa8c389597cb25d1822',1,'com.amazon.aace.phonecontrol.PhoneCallController.callStateChanged(CallState state, String callId, String callerId)']]], - ['cancel',['cancel',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a75298918ee94a5f4f5621824d0665ff7',1,'com::amazon::aace::cbl::CBL']]], - ['cancelauthorization',['cancelAuthorization',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a29cc92d67c72d2bb1f8fc1fa0d6a3e53',1,'com::amazon::aace::authorization::Authorization']]], - ['canceldirective',['cancelDirective',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#a9c4d08c3268173c03ccca9ab6769ba96',1,'com::amazon::aace::customDomain::CustomDomain']]], - ['cancelnavigation',['cancelNavigation',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#ab8bfcea62eb634ece636a1264b5b5a89',1,'com::amazon::aace::navigation::Navigation']]], - ['capabilitiesreceived',['capabilitiesReceived',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#a66a65d51b249e171c00b6f6da7d842a3',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['carcontrol',['CarControl',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a00dafddeb55c4273395a9afa2bd278a0',1,'com::amazon::aace::carControl::CarControl']]], - ['cblstatechanged',['cblStateChanged',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a4fa7869897582b5a35c2272028fd09cc',1,'com::amazon::aace::cbl::CBL']]], - ['clearallexecutecommands',['clearAllExecuteCommands',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a592b8d0552b2af9d12255b84f6c56c3e',1,'com::amazon::aace::apl::APL']]], - ['clearcard',['clearCard',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#aa17c50f90c3ae5e89cf197600699f5ad',1,'com::amazon::aace::apl::APL']]], - ['cleardocument',['clearDocument',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a5ccbbb86d507453c23631dd53b81804b',1,'com::amazon::aace::apl::APL']]], - ['clearplayerinfo',['clearPlayerInfo',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#a8a8b02e8e2dd5ead01111aeba4f8a5da',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['clearrefreshtoken',['clearRefreshToken',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a6bc55422ee3efe89816c2824d1c1b2e4',1,'com::amazon::aace::cbl::CBL']]], - ['cleartemplate',['clearTemplate',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#a298e0e13beabd319017ddd30e40dbdec',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['configure',['configure',['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#a9dd49afd0af2546c79e09ebb5e024967',1,'com::amazon::aace::core::Engine']]], - ['connectionstatechanged',['connectionStateChanged',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a941fcb1da744bc9d254bc1657942aba5',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['connectionstatuschanged',['connectionStatusChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html#accca664acb40638ec78da0f223f767cb',1,'com::amazon::aace::alexa::AlexaClient']]], - ['connectivityeventresponse',['connectivityEventResponse',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#aad7c6fdd40198750b3a457bbb9900017',1,'com::amazon::aace::connectivity::AlexaConnectivity']]], - ['connectivitystatechange',['connectivityStateChange',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#a83421c86d4680a794c51a4fe7ff46f67',1,'com::amazon::aace::connectivity::AlexaConnectivity']]], - ['conversationsreport',['conversationsReport',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#a780278011aea8be1b6eaf437fef23be6',1,'com::amazon::aace::messaging::Messaging']]], - ['create',['create',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a2b59622a96960b4e0f9bf03602d6d602',1,'com.amazon.aace.carControl.CarControlConfiguration.create()'],['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#aaa4f32da512481f26912ed76a8a6b6ab',1,'com.amazon.aace.core.Engine.create()']]], - ['createaddressbookconfig',['createAddressBookConfig',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1config_1_1_address_book_configuration.html#ae391b7458009b88848478312ae404650',1,'com::amazon::aace::addressbook::config::AddressBookConfiguration']]], - ['createalertsconfig',['createAlertsConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#ab7ff3ff245ce78fd1c578031c2856959',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createalexapresentationtimeoutconfig',['createAlexaPresentationTimeoutConfig',['../classcom_1_1amazon_1_1aace_1_1apl_1_1config_1_1_a_p_l_configuration.html#ad894310b1978f5a3e35bc4477218b48b',1,'com::amazon::aace::apl::config::APLConfiguration']]], - ['createauthproviderconfig',['createAuthProviderConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a7d8ab3df5c49018304c1382af1dfce31',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createcallid',['createCallId',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a2998eb274f0bdbc50cc89f2a3d12cd13',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['createcapabilitiesdelegateconfig',['createCapabilitiesDelegateConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a8007890fb796db98dc13f4459ac31fb2',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createcblconfig',['createCBLConfig',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#a2d165db74aad7a240544875208d348f3',1,'com.amazon.aace.cbl.config.CBLConfiguration.createCBLConfig(final int seconds)'],['../classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#ac6c30ce50d1981638cf72a5f91e5fd08',1,'com.amazon.aace.cbl.config.CBLConfiguration.createCBLConfig(final int seconds, final boolean enableUserProfile)']]], - ['createcbluserprofileconfig',['createCBLUserProfileConfig',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#a94550737c0626b38f9ca1f338fd37b3f',1,'com::amazon::aace::cbl::config::CBLConfiguration']]], - ['createcertifiedsenderconfig',['createCertifiedSenderConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#af747c4ec0e90eee61ae9db02f538cd5f',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createconsolesinkconfig',['createConsoleSinkConfig',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#ae262e3e0a31778f9d1c2a0c6ec142608',1,'com::amazon::aace::logger::config::LoggerConfiguration']]], - ['createcurlconfig',['createCurlConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a92aa3b5155a650a13c26c9d4a08a1216',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createCurlConfig(String certsPath)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a51647ddc0fd88c8b3e088ca5d728c1fd',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createCurlConfig(final String certsPath, final String iface)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#ae67e3e3837c27d3d10a022cfd714f3d6',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createCurlConfig(final String certsPath, final String iface, final String proxy)']]], - ['createdeviceinfoconfig',['createDeviceInfoConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a84ab6a01839d09f978ff03bfc79d6b06',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createdevicesettingsconfig',['createDeviceSettingsConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a174a365624dba9cef2db7803a352c916',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceSettingsConfig(final String databaseFilePath, final String[] locales, final String defaultLocale, final String defaultTimezone, final String[][] localeCombinations)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a1dcfef5d114ac663f3031214b45cc5ab',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceSettingsConfig(final String databaseFilePath)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#ae9758eba28e24ac7bf3685bd5ee6bec1',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createDeviceSettingsConfig(final String databaseFilePath, final String[] locales, final String defaultLocale, final String defaultTimezone)']]], - ['createduckingconfig',['createDuckingConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#aa075b97fdd5a3ed56d04e39715b88d47',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createendpoint',['createEndpoint',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a007712bb95d18decb48c39c3e2dfc9b6',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['createequalizercontrollerconfig',['createEqualizerControllerConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a1658a973095541d26d06ce451654bb21',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createexternalmediaplayerconfig',['createExternalMediaPlayerConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a5a25037353f7f03af8462240aedbc5ea',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createfilesinkconfig',['createFileSinkConfig',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#abbb56f552fcde3ca7e2f9fbed732a04c',1,'com.amazon.aace.logger.config.LoggerConfiguration.createFileSinkConfig(final String id, final Logger.Level level, final String path, final String prefix, final int maxSize, final int maxFiles, final boolean append)'],['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#addfb6f34d0e948f38654b132d39c3e3d',1,'com.amazon.aace.logger.config.LoggerConfiguration.createFileSinkConfig(String id, Logger.Level level, String path)']]], - ['createlocalstorageconfig',['createLocalStorageConfig',['../classcom_1_1amazon_1_1aace_1_1storage_1_1config_1_1_storage_configuration.html#a2f5f698b04c1106a30a9cd65d9e00a58',1,'com::amazon::aace::storage::config::StorageConfiguration']]], - ['createloggerruleconfig',['createLoggerRuleConfig',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#aa81c6c0c2204b55fbe4fa9070194d3ec',1,'com.amazon.aace.logger.config.LoggerConfiguration.createLoggerRuleConfig(final String sink, final Logger.Level level, final String sourceFilter, final String tagFilter, final String messageFilter)'],['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#abe7be69582a42f2f71d5623c52698eca',1,'com.amazon.aace.logger.config.LoggerConfiguration.createLoggerRuleConfig(String sink, Logger.Level level)']]], - ['createmiscstorageconfig',['createMiscStorageConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a6daa8cea59a40ffc44738f07622bbb4b',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createnavigationconfig',['createNavigationConfig',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1config_1_1_navigation_configuration.html#a62f13d2ba1b21e4554de195083903331',1,'com::amazon::aace::navigation::config::NavigationConfiguration']]], - ['createnotificationsconfig',['createNotificationsConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a8b076970882ad6c1756078cf09e9b0b4',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createoperatingcountryconfig',['createOperatingCountryConfig',['../classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#ade5473ebf7da427617445bc10dd771fd',1,'com::amazon::aace::vehicle::config::VehicleConfiguration']]], - ['createsettingsconfig',['createSettingsConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#af676c898b520c02267d33579cdb37765',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createSettingsConfig(final String databaseFilePath, final String locale)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a82e1bc90d7cf9cd8bcbc41af797ed115',1,'com.amazon.aace.alexa.config.AlexaConfiguration.createSettingsConfig(String databaseFilePath)']]], - ['createspeakermanagerconfig',['createSpeakerManagerConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a6c3dd6de536aee23706d2b38f555640c',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createspeechrecognizerconfig',['createSpeechRecognizerConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a8d70d4b326745849824994e380d7d5f9',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createsyslogsinkconfig',['createSyslogSinkConfig',['../classcom_1_1amazon_1_1aace_1_1logger_1_1config_1_1_logger_configuration.html#a484a6bb755b0683d63e57092215db6c6',1,'com::amazon::aace::logger::config::LoggerConfiguration']]], - ['createsystemconfig',['createSystemConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#a30e81a7467f313900c310aa404938ffe',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createtemplateruntimetimeoutconfig',['createTemplateRuntimeTimeoutConfig',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1config_1_1_alexa_configuration.html#ad9e98c28823a844d2cf6dcc2541d90a0',1,'com::amazon::aace::alexa::config::AlexaConfiguration']]], - ['createvehicleinfoconfig',['createVehicleInfoConfig',['../classcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a2a9eee7331a62a4d5f13116952c63b1d',1,'com::amazon::aace::vehicle::config::VehicleConfiguration']]], - ['createzone',['createZone',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#ab5607702f8745f986c09342458ba640a',1,'com::amazon::aace::carControl::CarControlConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_3.html b/docs/docs/doxygen-docs/android/search/functions_3.html deleted file mode 100644 index 15f06abdc..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_3.js b/docs/docs/doxygen-docs/android/search/functions_3.js deleted file mode 100644 index 8372ed876..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_3.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['datasourceupdate',['dataSourceUpdate',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#aec3a62d39544f8a79a6577c3adc29900',1,'com::amazon::aace::apl::APL']]], - ['deviceconfigurationupdated',['deviceConfigurationUpdated',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#ad7d3413ded20b937afc728931005c122',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['dial',['dial',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a01d791710c2d299ca213b7723b593b0d',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['dialogstatechanged',['dialogStateChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html#aa0c7e22aeb8007a30d02a0f89226886a',1,'com::amazon::aace::alexa::AlexaClient']]], - ['displaycardcleared',['displayCardCleared',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#aecfca9188704be9df43e958f3cb2bbff',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['donotdisturbchanged',['doNotDisturbChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html#a5f1b4303a59cfec7db0c79e8c3716331',1,'com::amazon::aace::alexa::DoNotDisturb']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_4.html b/docs/docs/doxygen-docs/android/search/functions_4.html deleted file mode 100644 index 8985ff278..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_4.js b/docs/docs/doxygen-docs/android/search/functions_4.js deleted file mode 100644 index dcd6b4e82..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_4.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['endofspeechdetected',['endOfSpeechDetected',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a59f998dabf28a7db3d87e2b9350a221b',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['eventreceived',['eventReceived',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a7401ba9e417362adc91e1b67eb82fd63',1,'com::amazon::aace::authorization::Authorization']]], - ['executecommands',['executeCommands',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#aaebb36d48655e30799879fa2293743b2',1,'com::amazon::aace::apl::APL']]], - ['executecommandsresult',['executeCommandsResult',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a2f2a74dffec7943fec77108cfda62f09',1,'com::amazon::aace::apl::APL']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_5.html b/docs/docs/doxygen-docs/android/search/functions_5.html deleted file mode 100644 index 03149184b..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_5.js b/docs/docs/doxygen-docs/android/search/functions_5.js deleted file mode 100644 index 1f1ed9c1c..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_5.js +++ /dev/null @@ -1,34 +0,0 @@ -var searchData= -[ - ['getaccuracy',['getAccuracy',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#acdf035ff2abe6c67f416de07c95f724c',1,'com::amazon::aace::location::Location']]], - ['getaltitude',['getAltitude',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#ae5ee423032967f1fae0570d394af3951',1,'com::amazon::aace::location::Location']]], - ['getauthorizationdata',['getAuthorizationData',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a7f2f391a3991f344ee1bec75ae33fd48',1,'com::amazon::aace::authorization::Authorization']]], - ['getauthstate',['getAuthState',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html#aa04277b311b61fdcf18c759714d148b1',1,'com::amazon::aace::alexa::AuthProvider']]], - ['getauthtoken',['getAuthToken',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider.html#aeedf509b073beea5fd1bf29a170e1c57',1,'com::amazon::aace::alexa::AuthProvider']]], - ['getbandlevels',['getBandLevels',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#a8146f0ae36888847ce00ea09f82761dc',1,'com::amazon::aace::alexa::EqualizerController']]], - ['getcapabilities',['getCapabilities',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#af96866c8075d176f505bd78b1c4f4114',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['getconnectivitystate',['getConnectivityState',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#a30284cd55d57be26b48078fc15f9ea60',1,'com::amazon::aace::connectivity::AlexaConnectivity']]], - ['getcontext',['getContext',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#ad3e88891b4ec12f01eaa0e9dde1d7bc3',1,'com::amazon::aace::customDomain::CustomDomain']]], - ['getcountry',['getCountry',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html#af9f1c9b6a9c136f376367c6b8913fccb',1,'com::amazon::aace::location::LocationProvider']]], - ['getduration',['getDuration',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a1d9d3fc28f5922dd608e5f4a1f774c4b',1,'com::amazon::aace::audio::AudioOutput']]], - ['getentries',['getEntries',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html#a35ee5d9d41c57004624771fc2192e76e',1,'com::amazon::aace::addressbook::AddressBook']]], - ['getidentifier',['getIdentifier',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#af9d692e6baaf553025d2138424a59fa0',1,'com::amazon::aace::connectivity::AlexaConnectivity']]], - ['getlatitude',['getLatitude',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#abddd6a89fab27fb04a996691eecc6ea6',1,'com::amazon::aace::location::Location']]], - ['getlocation',['getLocation',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html#a612278e91d607bc6e478260331f9380f',1,'com::amazon::aace::location::LocationProvider']]], - ['getlongitude',['getLongitude',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#a78d7351bc7e52db8b4be5769bb8d2bc8',1,'com::amazon::aace::location::Location']]], - ['getmessagebroker',['getMessageBroker',['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#abf3ff57591a2d268fbe90fe859ea0eb1',1,'com::amazon::aace::core::Engine']]], - ['getmodecontrollervalue',['getModeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a2acf6ba882f52699fa435d7e3616d662',1,'com::amazon::aace::carControl::CarControl']]], - ['getnavigationstate',['getNavigationState',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#ab9c911a083f6b927749106f3e3763dde',1,'com::amazon::aace::navigation::Navigation']]], - ['getnetworkstatus',['getNetworkStatus',['../classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html#aa16f831498c598c862c116aec7745a38',1,'com::amazon::aace::network::NetworkInfoProvider']]], - ['getnumbytesbuffered',['getNumBytesBuffered',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a2c5ab7cf1d8a4183a7b58716dccf916b',1,'com::amazon::aace::audio::AudioOutput']]], - ['getoffset',['getOffset',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#aa933301d5c170a953adf431c294f603d',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['getplayerduration',['getPlayerDuration',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html#a3ddd0246911b32d798dad3dae3e7e64d',1,'com::amazon::aace::alexa::AudioPlayer']]], - ['getplayerposition',['getPlayerPosition',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html#ac5af34b211180066c0a72d768800dc0d',1,'com::amazon::aace::alexa::AudioPlayer']]], - ['getposition',['getPosition',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#affc2aadf7fe81a6a9463152ae51420f8',1,'com::amazon::aace::audio::AudioOutput']]], - ['getproperty',['getProperty',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html#ae18af547c39b0c8e2a763e34d988f4a2',1,'com::amazon::aace::propertyManager::PropertyManager']]], - ['getrangecontrollervalue',['getRangeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#ae694da83885a8ab8c5c481ac06f382a4',1,'com::amazon::aace::carControl::CarControl']]], - ['getrefreshtoken',['getRefreshToken',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#aa7a91ec3198415d309d3a5d061cb974f',1,'com::amazon::aace::cbl::CBL']]], - ['getsource',['getSource',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#ab8cf2993bd0dce8a71cf147a08fbe2cb',1,'com::amazon::aace::alexa::LocalMediaSource']]], - ['getstate',['getState',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a2c32897522b03df84e84a04e2c15296b',1,'com.amazon.aace.alexa.ExternalMediaAdapter.getState()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a92fddae42be67359a902ee89315eeaf0',1,'com.amazon.aace.alexa.LocalMediaSource.getState()'],['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html#a2e24d1ebe98738117581d814732f8e3e',1,'com.amazon.maccandroid.MACCAndroidClient.getState()']]], - ['getwifisignalstrength',['getWifiSignalStrength',['../classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html#a3f4cfef555cc827bdaa47eea87ba330a',1,'com::amazon::aace::network::NetworkInfoProvider']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_6.html b/docs/docs/doxygen-docs/android/search/functions_6.html deleted file mode 100644 index c50612362..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_6.js b/docs/docs/doxygen-docs/android/search/functions_6.js deleted file mode 100644 index a17e7ba93..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_6.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['handledirective',['handleDirective',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#ab46bf32d7294f18e0a23f0b09052db0d',1,'com.amazon.aace.customDomain.CustomDomain.handleDirective()'],['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html#acd7bc0cbe9be5cb6b3ae9e31a0a0e487',1,'com.amazon.maccandroid.MACCAndroidClient.handleDirective()']]], - ['holdtotalk',['holdToTalk',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a8abc634b08c0514cf66c65e7e4992058',1,'com::amazon::aace::alexa::SpeechRecognizer']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_7.html b/docs/docs/doxygen-docs/android/search/functions_7.html deleted file mode 100644 index 83a7b84b7..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_7.js b/docs/docs/doxygen-docs/android/search/functions_7.js deleted file mode 100644 index d1929e2cf..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_7.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['initandrundiscovery',['initAndRunDiscovery',['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html#a4d1acf7c53ec5508c9769ef40e31aa79',1,'com::amazon::maccandroid::MACCAndroidClient']]], - ['interruptcommandsequence',['interruptCommandSequence',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a1e7a734a3c5045cfc2f978485975387c',1,'com::amazon::aace::apl::APL']]], - ['ispowercontrolleron',['isPowerControllerOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a9ab19b4f3930027cfa8d88b02ac8355c',1,'com::amazon::aace::carControl::CarControl']]], - ['istogglecontrolleron',['isToggleControllerOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a19c74c8a8b397a9ca79a6ca313cff2b6',1,'com::amazon::aace::carControl::CarControl']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_8.html b/docs/docs/doxygen-docs/android/search/functions_8.html deleted file mode 100644 index b55f0e65f..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_8.js b/docs/docs/doxygen-docs/android/search/functions_8.js deleted file mode 100644 index 3bd25c507..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_8.js +++ /dev/null @@ -1,18 +0,0 @@ -var searchData= -[ - ['localadjustbandlevels',['localAdjustBandLevels',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#ac81e7032b16451fed430d24547e84a6c',1,'com::amazon::aace::alexa::EqualizerController']]], - ['localadjustvolume',['localAdjustVolume',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html#abac9795a1b6602865d7bd336b2487e29',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['localresetbands',['localResetBands',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#ab6b723e4097ab4e516b8cd54d0278540',1,'com.amazon.aace.alexa.EqualizerController.localResetBands(EqualizerBand[] bands)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#a8f9bd9ff880fb67cb3238f0e336d1024',1,'com.amazon.aace.alexa.EqualizerController.localResetBands()']]], - ['localsetbandlevels',['localSetBandLevels',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#a27bea1cb94c484fafbcace94f8f1453d',1,'com::amazon::aace::alexa::EqualizerController']]], - ['localsetmute',['localSetMute',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html#a4de7c35ba5fcf6a5d58dd739da5651dc',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['localsetvolume',['localSetVolume',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html#aeb16b5ff83637916f5d049a104d53e89',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['localstop',['localStop',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#ac6fbbdfafe8f8c44e73650e9317edc38',1,'com::amazon::aace::alexa::Alerts']]], - ['location',['Location',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#a3d09e33a1061b2900b8c6a487da2e617',1,'com.amazon.aace.location.Location.Location(double latitude, double longitude, double altitude, double accuracy)'],['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#acc7fef7f61124dc093ced3ffb9c74337',1,'com.amazon.aace.location.Location.Location(double latitude, double longitude, double altitude)'],['../classcom_1_1amazon_1_1aace_1_1location_1_1_location.html#a3e450657a640c82bcafb0deab1742a43',1,'com.amazon.aace.location.Location.Location(double latitude, double longitude)']]], - ['locationserviceaccesschanged',['locationServiceAccessChanged',['../classcom_1_1amazon_1_1aace_1_1location_1_1_location_provider.html#a8eed3d42ff1c83bce357daa12aa8a087',1,'com::amazon::aace::location::LocationProvider']]], - ['log',['log',['../classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html#aabf3af2fa06228a6ea43a9c0ae881921',1,'com::amazon::aace::logger::Logger']]], - ['logevent',['logEvent',['../classcom_1_1amazon_1_1aace_1_1logger_1_1_logger.html#ae1a55b7d50d94b1872927e91f6490035',1,'com::amazon::aace::logger::Logger']]], - ['login',['login',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a6aa1476a6900c5380884944191f71136',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['logincomplete',['loginComplete',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a3423902d7b22164145d24e74a171765e',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['logout',['logout',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a8dfc0565e9ac5c0662a9431886f8ef6e',1,'com.amazon.aace.alexa.ExternalMediaAdapter.logout()'],['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a33d59157ab8510d41612ac7863c9af5d',1,'com.amazon.aace.authorization.Authorization.logout()']]], - ['logoutcomplete',['logoutComplete',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a9d6279826669b48ebf5c670985f0f092',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_9.html b/docs/docs/doxygen-docs/android/search/functions_9.html deleted file mode 100644 index c73f07bb5..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_9.js b/docs/docs/doxygen-docs/android/search/functions_9.js deleted file mode 100644 index b39213f9b..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_9.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['mayduck',['mayDuck',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#acc4a36a861a763a797001caf19a4d11b',1,'com::amazon::aace::audio::AudioOutput']]], - ['mediaerror',['mediaError',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#affc23414f8a4c0dc7aa518e398123d3c',1,'com::amazon::aace::audio::AudioOutput']]], - ['mediaplaybackresponse',['mediaPlaybackResponse',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html#acefa5e0a87cde9055894cb09dd197f14',1,'com::amazon::aace::alexa::MediaPlaybackRequestor']]], - ['mediastatechanged',['mediaStateChanged',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a9e50601e05eb9d32e1f56d75e7849fc3',1,'com::amazon::aace::audio::AudioOutput']]], - ['mutedstatechanged',['mutedStateChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#afe18a6f17fa731a2abb0812d9d3b7c34',1,'com.amazon.aace.alexa.ExternalMediaAdapter.mutedStateChanged()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a712968f4a35418dbcbc0e4b74599dcf0',1,'com.amazon.aace.alexa.LocalMediaSource.mutedStateChanged()'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#af9dbd926cff6739c7e9f26029f5f7a29',1,'com.amazon.aace.audio.AudioOutput.mutedStateChanged()']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_a.html b/docs/docs/doxygen-docs/android/search/functions_a.html deleted file mode 100644 index f10ad638c..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_a.js b/docs/docs/doxygen-docs/android/search/functions_a.js deleted file mode 100644 index 8bd5b2db9..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_a.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['navigationerror',['navigationError',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#af554852edcf3c872474896fef22a6403',1,'com::amazon::aace::navigation::Navigation']]], - ['navigationevent',['navigationEvent',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#a6920b2f0e9a84e290c16acac2f86ae93',1,'com::amazon::aace::navigation::Navigation']]], - ['networkstatuschanged',['networkStatusChanged',['../classcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider.html#a55c210200d18fb3a132ea94f06b48e7c',1,'com::amazon::aace::network::NetworkInfoProvider']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_b.html b/docs/docs/doxygen-docs/android/search/functions_b.html deleted file mode 100644 index 172ea1b31..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_b.js b/docs/docs/doxygen-docs/android/search/functions_b.js deleted file mode 100644 index 5906406e9..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_b.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['onauthorizedplayers',['onAuthorizedPlayers',['../classcom_1_1amazon_1_1maccandroid_1_1_m_a_c_c_android_client.html#a0243bb670db4c712a72806d2973322c9',1,'com::amazon::maccandroid::MACCAndroidClient']]], - ['onnotificationreceived',['onNotificationReceived',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html#af7fc19e5196bdd504b4e2958255e1d78',1,'com::amazon::aace::alexa::Notifications']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_c.html b/docs/docs/doxygen-docs/android/search/functions_c.html deleted file mode 100644 index 99492ba8e..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_c.js b/docs/docs/doxygen-docs/android/search/functions_c.js deleted file mode 100644 index a53384d15..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_c.js +++ /dev/null @@ -1,16 +0,0 @@ -var searchData= -[ - ['pause',['pause',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a1dfc109dfffdb40f04cdb40cb959772e',1,'com::amazon::aace::audio::AudioOutput']]], - ['play',['play',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a4e6f48d186f9e329cc23e7e27af1fe22',1,'com.amazon.aace.alexa.ExternalMediaAdapter.play()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#ac3b7c0af177039a95960a43e8c94ddc0',1,'com.amazon.aace.alexa.LocalMediaSource.play(ContentSelector selector, String payload)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#ab5a7492cd229a3a72753e77c409c687b',1,'com.amazon.aace.alexa.LocalMediaSource.play(ContentSelector selector, String payload, String sessionId)'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#ab832b921a38be3faa8729a6a7f45b033',1,'com.amazon.aace.audio.AudioOutput.play()']]], - ['playcontrol',['playControl',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#acc4aeb97fa65762599c5d49ad5ff55fc',1,'com.amazon.aace.alexa.ExternalMediaAdapter.playControl()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a47590bb626f8cfb28f688e82bd16d9ef',1,'com.amazon.aace.alexa.LocalMediaSource.playControl()']]], - ['playeractivitychanged',['playerActivityChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html#a826430dfb938c33497f02acd26ab9c46',1,'com::amazon::aace::alexa::AudioPlayer']]], - ['playererror',['playerError',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a1ff1f7608f65642db3b77c5f9645a3f0',1,'com.amazon.aace.alexa.ExternalMediaAdapter.playerError()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a1e37476cccbe2e7656c299a3c8f173aa',1,'com.amazon.aace.alexa.LocalMediaSource.playerError(String errorName, long code, String description, boolean fatal)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#af411dc4655350141c94540301ec24f93',1,'com.amazon.aace.alexa.LocalMediaSource.playerError(String errorName, long code, String description, boolean fatal, String sessionId)']]], - ['playerevent',['playerEvent',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a07f3cca30000f1e28036aef2a312d867',1,'com.amazon.aace.alexa.ExternalMediaAdapter.playerEvent()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#aee0442626b3e43ebb25120abbefd452f',1,'com.amazon.aace.alexa.LocalMediaSource.playerEvent(String eventName)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a9dacaa1ab009aee994b0b01d03f78988',1,'com.amazon.aace.alexa.LocalMediaSource.playerEvent(String eventName, String sessionId)']]], - ['prepare',['prepare',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#aff7e7f7323143c4843d48a0650ce91b4',1,'com.amazon.aace.audio.AudioOutput.prepare(AudioStream stream, boolean repeating)'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#ae3726cd2b38409262fadedc25a9a68e7',1,'com.amazon.aace.audio.AudioOutput.prepare(String url, boolean repeating)']]], - ['preparespeech',['prepareSpeech',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#a841a5d9df89c29c52d741eb3e25b8d96',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['preparespeechcompleted',['prepareSpeechCompleted',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#a51e78d738679b0d97992a1a664a474c4',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['preparespeechfailed',['prepareSpeechFailed',['../classcom_1_1amazon_1_1aace_1_1text_to_speech_1_1_text_to_speech.html#a8f845bfac2508a918cd607d46344fbd3',1,'com::amazon::aace::textToSpeech::TextToSpeech']]], - ['processactivityevent',['processActivityEvent',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#afb0b59ce5e87005456cc34cb79fed1e8',1,'com::amazon::aace::apl::APL']]], - ['propertychanged',['propertyChanged',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html#aa914e628f95f552b87c7dda3ba902a4a',1,'com::amazon::aace::propertyManager::PropertyManager']]], - ['propertystatechanged',['propertyStateChanged',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html#a6c1d4f9e41142872da267073d481f014',1,'com::amazon::aace::propertyManager::PropertyManager']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_d.html b/docs/docs/doxygen-docs/android/search/functions_d.html deleted file mode 100644 index 5be9eccb7..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_d.js b/docs/docs/doxygen-docs/android/search/functions_d.js deleted file mode 100644 index d9c0884d5..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_d.js +++ /dev/null @@ -1,19 +0,0 @@ -var searchData= -[ - ['redial',['redial',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a2efb96253241a29f2cf840a43ba8c180',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['registerplatforminterface',['registerPlatformInterface',['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#a0e2cf93d586ac645321fa3963d84f28f',1,'com::amazon::aace::core::Engine']]], - ['removeaddressbook',['removeAddressBook',['../classcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book.html#a64eda01c44e5a17b8b6d4d47bb746dd9',1,'com::amazon::aace::addressbook::AddressBook']]], - ['removeallalerts',['removeAllAlerts',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts.html#abb9f0c260a01fa735ec0424f36b9c3ed',1,'com::amazon::aace::alexa::Alerts']]], - ['removediscoveredplayer',['removeDiscoveredPlayer',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#ae34e390c93b76497b86db5cdcd16fda6',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['renderdocument',['renderDocument',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#ad7a2d8bcd734b02486ccced4656df947',1,'com::amazon::aace::apl::APL']]], - ['renderdocumentresult',['renderDocumentResult',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a6a4248122416663bf1e4412f99fd429d',1,'com::amazon::aace::apl::APL']]], - ['renderplayerinfo',['renderPlayerInfo',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#a09010f2bbdf49bbd579108d7c405e040',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['rendertemplate',['renderTemplate',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime.html#a2b47479f51a5998559dc2d7e9b33fdbe',1,'com::amazon::aace::alexa::TemplateRuntime']]], - ['reportdirectivehandlingresult',['reportDirectiveHandlingResult',['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#a2aa42ff1b567e8f8cc26aca61660ff22',1,'com::amazon::aace::customDomain::CustomDomain']]], - ['reportdiscoveredplayers',['reportDiscoveredPlayers',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#ac35c5760ab1c2cfca05f59eb0fdfa62b',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['reportnetworkdatausage',['reportNetworkDataUsage',['../classcom_1_1amazon_1_1aace_1_1device_usage_1_1_device_usage.html#af219f67c9fea0057a7a502f495f99809',1,'com::amazon::aace::deviceUsage::DeviceUsage']]], - ['requestmediaplayback',['requestMediaPlayback',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html#a3e7cf911995d11fc36b68f7893243174',1,'com.amazon.aace.alexa.MediaPlaybackRequestor.requestMediaPlayback(InvocationReason invocationReason)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor.html#a624410ab126c1d7db771707313ac837f',1,'com.amazon.aace.alexa.MediaPlaybackRequestor.requestMediaPlayback(InvocationReason invocationReason, long elapsedBootTime)']]], - ['requesttoken',['requestToken',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a70408cbfd6cf421643434928d4619511',1,'com::amazon::aace::alexa::ExternalMediaAdapter']]], - ['reset',['reset',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a438e7b454cdfca08bf2b24795f73650b',1,'com::amazon::aace::cbl::CBL']]], - ['resume',['resume',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a860c1575b54e245352fa2c8d05baf1e9',1,'com::amazon::aace::audio::AudioOutput']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_e.html b/docs/docs/doxygen-docs/android/search/functions_e.html deleted file mode 100644 index e256cb630..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_e.js b/docs/docs/doxygen-docs/android/search/functions_e.js deleted file mode 100644 index 0fa4b523c..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_e.js +++ /dev/null @@ -1,46 +0,0 @@ -var searchData= -[ - ['seek',['seek',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#a6c511f6d0967158f9512d5359e4a4a10',1,'com.amazon.aace.alexa.ExternalMediaAdapter.seek()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a0f65d94b6aa9a24a7d896939adc8d4a4',1,'com.amazon.aace.alexa.LocalMediaSource.seek()']]], - ['sendconnectivityevent',['sendConnectivityEvent',['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#a0c48d9a511a6b5e58b37d4862ca28e8a',1,'com.amazon.aace.connectivity.AlexaConnectivity.sendConnectivityEvent(String event)'],['../classcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity.html#a32466cf1259a1453b076c4f4f2350d60',1,'com.amazon.aace.connectivity.AlexaConnectivity.sendConnectivityEvent(String event, String token)']]], - ['senddatasourcefetchrequestevent',['sendDataSourceFetchRequestEvent',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a4886bca519163b2d2648ee09fd519bde',1,'com::amazon::aace::apl::APL']]], - ['senddevicewindowstate',['sendDeviceWindowState',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a846222db2e1244525bedcc935274a582',1,'com::amazon::aace::apl::APL']]], - ['senddocumentstate',['sendDocumentState',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a02696580fc976b4ab7596512a5613c1c',1,'com::amazon::aace::apl::APL']]], - ['senddtmf',['sendDTMF',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a84929af8429fa585444691eb965da31a',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['senddtmffailed',['sendDTMFFailed',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#aaa339310c1f1f0c29b99308677572a47',1,'com.amazon.aace.phonecontrol.PhoneCallController.sendDTMFFailed(String callId, DTMFError code)'],['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a6deac75764abd61feefcff05756ed367',1,'com.amazon.aace.phonecontrol.PhoneCallController.sendDTMFFailed(String callId, DTMFError code, String message)']]], - ['senddtmfsucceeded',['sendDTMFSucceeded',['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#abbef49449a17271bc67e885054c50416',1,'com::amazon::aace::phonecontrol::PhoneCallController']]], - ['sendevent',['sendEvent',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a642481290c6676c77421712813cbc9fd',1,'com.amazon.aace.authorization.Authorization.sendEvent()'],['../classcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain.html#a12b7c2fbf999fea8326823e53dc51fd1',1,'com.amazon.aace.customDomain.CustomDomain.sendEvent()']]], - ['sendmessage',['sendMessage',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#aed8f16ac5431aa6dc9e0812fdcf62c73',1,'com::amazon::aace::messaging::Messaging']]], - ['sendmessagefailed',['sendMessageFailed',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#ad874ea15c789eccb2742462d0698acac',1,'com::amazon::aace::messaging::Messaging']]], - ['sendmessagesucceeded',['sendMessageSucceeded',['../classcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging.html#af53897803f8131beeafd3664e1cfe25d',1,'com::amazon::aace::messaging::Messaging']]], - ['sendruntimeerrorevent',['sendRuntimeErrorEvent',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#ae3debd3e0ca999b04ec313d50a8bae69',1,'com::amazon::aace::apl::APL']]], - ['senduserevent',['sendUserEvent',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a596b08f65e81293660be6b9b0b1e13b9',1,'com::amazon::aace::apl::APL']]], - ['setaplmaxversion',['setAPLMaxVersion',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a52b6f421255ee73cfef5b3c5e73073fc',1,'com::amazon::aace::apl::APL']]], - ['setauthorizationdata',['setAuthorizationData',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a5d7a33dce5adbb4ab084eb0b3b6de90e',1,'com::amazon::aace::authorization::Authorization']]], - ['setbandlevels',['setBandLevels',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller.html#a3acad44f203be8b5a06f426d0c9db7fd',1,'com::amazon::aace::alexa::EqualizerController']]], - ['setdefaultzone',['setDefaultZone',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration.html#a7752ec6e67fa0d52955ea4003a71bbaa',1,'com::amazon::aace::carControl::CarControlConfiguration']]], - ['setdocumentidletimeout',['setDocumentIdleTimeout',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#a7084448c30820248b04950c804452cbe',1,'com::amazon::aace::apl::APL']]], - ['setdonotdisturb',['setDoNotDisturb',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_do_not_disturb.html#a74e1edf1651fc21b67eef08e447d135f',1,'com::amazon::aace::alexa::DoNotDisturb']]], - ['setfocus',['setFocus',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter.html#adcf544d90c89515cd2de3af216ee53cf',1,'com.amazon.aace.alexa.ExternalMediaAdapter.setFocus()'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a20a6fa8f3826b39e7f19d74a761a0ed6',1,'com.amazon.aace.alexa.LocalMediaSource.setFocus(boolean focusAcquire)'],['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source.html#a41d4aad196e6ea9eb5e41287426fb7de',1,'com.amazon.aace.alexa.LocalMediaSource.setFocus()']]], - ['setglobalpreset',['setGlobalPreset',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_global_preset.html#a92c047a86ebe58e5e138cc2609c0bd4a',1,'com::amazon::aace::alexa::GlobalPreset']]], - ['setindicator',['setIndicator',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications.html#ab83e0f63cbd01de0c1fb2cf0b331b9cf',1,'com::amazon::aace::alexa::Notifications']]], - ['setmodecontrollervalue',['setModeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a0336838d257867216acfae83ebcb6796',1,'com::amazon::aace::carControl::CarControl']]], - ['setplatformproperty',['setPlatformProperty',['../classcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l.html#ae35c1175f6ff0be3848ba29f7a1f22d2',1,'com::amazon::aace::apl::APL']]], - ['setposition',['setPosition',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a228c6e8079d5782e1e7d9b21a925638d',1,'com::amazon::aace::audio::AudioOutput']]], - ['setproperty',['setProperty',['../classcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager.html#a6a6b6d34ba96850c38f1aa3d40786c7d',1,'com::amazon::aace::propertyManager::PropertyManager']]], - ['setrangecontrollervalue',['setRangeControllerValue',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#afe04323771ca2cbbc44de5ecb93c38ce',1,'com::amazon::aace::carControl::CarControl']]], - ['setrefreshtoken',['setRefreshToken',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#ad320c677bafca842107daa2419bbc675',1,'com::amazon::aace::cbl::CBL']]], - ['setupcompleted',['setupCompleted',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html#aa49898f6ff85c74ff11ca8fae4ae6374',1,'com::amazon::aace::alexa::DeviceSetup']]], - ['setupcompletedresponse',['setupCompletedResponse',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup.html#a16219851bbc1eb9ffde835f7580da4f0',1,'com::amazon::aace::alexa::DeviceSetup']]], - ['setuserprofile',['setUserProfile',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#a18753a6d6d002bc4188de1a00beba9e5',1,'com::amazon::aace::cbl::CBL']]], - ['showalternativeroutessucceeded',['showAlternativeRoutesSucceeded',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#a17039d639541a43a786cd5057f9f27ae',1,'com::amazon::aace::navigation::Navigation']]], - ['speakersettingschanged',['speakerSettingsChanged',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker.html#a96ea668a0bd4f4f8f266b1a84e2f3e2d',1,'com::amazon::aace::alexa::AlexaSpeaker']]], - ['start',['start',['../classcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l.html#ae628b6fbb8421609b19f24e462b6a2aa',1,'com.amazon.aace.cbl.CBL.start()'],['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#a5e82f04dc791e4b6ce8c0efa3d541dc8',1,'com.amazon.aace.core.Engine.start()']]], - ['startauthorization',['startAuthorization',['../classcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization.html#a58915285c9d94a41840da1b5fdaa7534',1,'com::amazon::aace::authorization::Authorization']]], - ['startcapture',['startCapture',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a5c85bfc150b64cc2389c4a036fa6c367',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['startducking',['startDucking',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a5925eafe344a095a545c4c9061e5147f',1,'com::amazon::aace::audio::AudioOutput']]], - ['startnavigation',['startNavigation',['../classcom_1_1amazon_1_1aace_1_1navigation_1_1_navigation.html#a93fd177c707c9075348883824c7dcc0b',1,'com::amazon::aace::navigation::Navigation']]], - ['stop',['stop',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a93328cd0e726f19b596a18343418082c',1,'com.amazon.aace.audio.AudioOutput.stop()'],['../classcom_1_1amazon_1_1aace_1_1core_1_1_engine.html#a37be1592924df62bc9541200eea9dcae',1,'com.amazon.aace.core.Engine.stop()'],['../classcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller.html#a6b16e1f163c1ba5732cca98e507f0220',1,'com.amazon.aace.phonecontrol.PhoneCallController.stop()']]], - ['stopcapture',['stopCapture',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a9c043bac65f630eed854a2e48182144c',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['stopducking',['stopDucking',['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a9dfeb54a48189c67157e929f1369e3df',1,'com::amazon::aace::audio::AudioOutput']]], - ['stopforegroundactivity',['stopForegroundActivity',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client.html#a5205acb15d66b99404896253611d657f',1,'com::amazon::aace::alexa::AlexaClient']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/functions_f.html b/docs/docs/doxygen-docs/android/search/functions_f.html deleted file mode 100644 index 424126cd7..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/functions_f.js b/docs/docs/doxygen-docs/android/search/functions_f.js deleted file mode 100644 index c8ca31f9f..000000000 --- a/docs/docs/doxygen-docs/android/search/functions_f.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['taptotalk',['tapToTalk',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer.html#a4ec1498c7b65fa48c095c153a6802cf1',1,'com::amazon::aace::alexa::SpeechRecognizer']]], - ['togglepressed',['togglePressed',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller.html#ae704411fffffda8c04fec1d59882899f',1,'com::amazon::aace::alexa::PlaybackController']]], - ['turnpowercontrolleroff',['turnPowerControllerOff',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a1413a325e11f90cb0b6704c3445f062e',1,'com::amazon::aace::carControl::CarControl']]], - ['turnpowercontrolleron',['turnPowerControllerOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a1e28db083c8da5d0a49976a8f28dcffd',1,'com::amazon::aace::carControl::CarControl']]], - ['turntogglecontrolleroff',['turnToggleControllerOff',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a27a39809a5986fda9a76a2d169e69960',1,'com::amazon::aace::carControl::CarControl']]], - ['turntogglecontrolleron',['turnToggleControllerOn',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control.html#a0a2a3e454c2c275182506e965d92d367',1,'com::amazon::aace::carControl::CarControl']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/mag_sel.png b/docs/docs/doxygen-docs/android/search/mag_sel.png deleted file mode 100644 index 81f6040a2..000000000 Binary files a/docs/docs/doxygen-docs/android/search/mag_sel.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/search/nomatches.html b/docs/docs/doxygen-docs/android/search/nomatches.html deleted file mode 100644 index b1ded27e9..000000000 --- a/docs/docs/doxygen-docs/android/search/nomatches.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - -
        -
        No Matches
        -
        - - diff --git a/docs/docs/doxygen-docs/android/search/pages_0.html b/docs/docs/doxygen-docs/android/search/pages_0.html deleted file mode 100644 index 4955b9e4f..000000000 --- a/docs/docs/doxygen-docs/android/search/pages_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/pages_0.js b/docs/docs/doxygen-docs/android/search/pages_0.js deleted file mode 100644 index 9b5f659e5..000000000 --- a/docs/docs/doxygen-docs/android/search/pages_0.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['alexa_20auto_20sdk_20for_20android',['Alexa Auto SDK for Android',['../index.html',1,'']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/pages_1.html b/docs/docs/doxygen-docs/android/search/pages_1.html deleted file mode 100644 index aedb14ee2..000000000 --- a/docs/docs/doxygen-docs/android/search/pages_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/pages_1.js b/docs/docs/doxygen-docs/android/search/pages_1.js deleted file mode 100644 index 038da5410..000000000 --- a/docs/docs/doxygen-docs/android/search/pages_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/search.css b/docs/docs/doxygen-docs/android/search/search.css deleted file mode 100644 index 3cf9df94a..000000000 --- a/docs/docs/doxygen-docs/android/search/search.css +++ /dev/null @@ -1,271 +0,0 @@ -/*---------------- Search Box */ - -#FSearchBox { - float: left; -} - -#MSearchBox { - white-space : nowrap; - float: none; - margin-top: 8px; - right: 0px; - width: 170px; - height: 24px; - z-index: 102; -} - -#MSearchBox .left -{ - display:block; - position:absolute; - left:10px; - width:20px; - height:19px; - background:url('search_l.png') no-repeat; - background-position:right; -} - -#MSearchSelect { - display:block; - position:absolute; - width:20px; - height:19px; -} - -.left #MSearchSelect { - left:4px; -} - -.right #MSearchSelect { - right:5px; -} - -#MSearchField { - display:block; - position:absolute; - height:19px; - background:url('search_m.png') repeat-x; - border:none; - width:115px; - margin-left:20px; - padding-left:4px; - color: #909090; - outline: none; - font: 9pt Arial, Verdana, sans-serif; - -webkit-border-radius: 0px; -} - -#FSearchBox #MSearchField { - margin-left:15px; -} - -#MSearchBox .right { - display:block; - position:absolute; - right:10px; - top:8px; - width:20px; - height:19px; - background:url('search_r.png') no-repeat; - background-position:left; -} - -#MSearchClose { - display: none; - position: absolute; - top: 4px; - background : none; - border: none; - margin: 0px 4px 0px 0px; - padding: 0px 0px; - outline: none; -} - -.left #MSearchClose { - left: 6px; -} - -.right #MSearchClose { - right: 2px; -} - -.MSearchBoxActive #MSearchField { - color: #000000; -} - -/*---------------- Search filter selection */ - -#MSearchSelectWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #90A5CE; - background-color: #F9FAFC; - z-index: 10001; - padding-top: 4px; - padding-bottom: 4px; - -moz-border-radius: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -.SelectItem { - font: 8pt Arial, Verdana, sans-serif; - padding-left: 2px; - padding-right: 12px; - border: 0px; -} - -span.SelectionMark { - margin-right: 4px; - font-family: monospace; - outline-style: none; - text-decoration: none; -} - -a.SelectItem { - display: block; - outline-style: none; - color: #000000; - text-decoration: none; - padding-left: 6px; - padding-right: 12px; -} - -a.SelectItem:focus, -a.SelectItem:active { - color: #000000; - outline-style: none; - text-decoration: none; -} - -a.SelectItem:hover { - color: #FFFFFF; - background-color: #3D578C; - outline-style: none; - text-decoration: none; - cursor: pointer; - display: block; -} - -/*---------------- Search results window */ - -iframe#MSearchResults { - width: 60ex; - height: 15em; -} - -#MSearchResultsWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #000; - background-color: #EEF1F7; - z-index:10000; -} - -/* ----------------------------------- */ - - -#SRIndex { - clear:both; - padding-bottom: 15px; -} - -.SREntry { - font-size: 10pt; - padding-left: 1ex; -} - -.SRPage .SREntry { - font-size: 8pt; - padding: 1px 5px; -} - -body.SRPage { - margin: 5px 2px; -} - -.SRChildren { - padding-left: 3ex; padding-bottom: .5em -} - -.SRPage .SRChildren { - display: none; -} - -.SRSymbol { - font-weight: bold; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRScope { - display: block; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRSymbol:focus, a.SRSymbol:active, -a.SRScope:focus, a.SRScope:active { - text-decoration: underline; -} - -span.SRScope { - padding-left: 4px; -} - -.SRPage .SRStatus { - padding: 2px 5px; - font-size: 8pt; - font-style: italic; -} - -.SRResult { - display: none; -} - -DIV.searchresults { - margin-left: 10px; - margin-right: 10px; -} - -/*---------------- External search page results */ - -.searchresult { - background-color: #F0F3F8; -} - -.pages b { - color: white; - padding: 5px 5px 3px 5px; - background-image: url("../tab_a.png"); - background-repeat: repeat-x; - text-shadow: 0 1px 1px #000000; -} - -.pages { - line-height: 17px; - margin-left: 4px; - text-decoration: none; -} - -.hl { - font-weight: bold; -} - -#searchresults { - margin-bottom: 20px; -} - -.searchpages { - margin-top: 10px; -} - diff --git a/docs/docs/doxygen-docs/android/search/search.js b/docs/docs/doxygen-docs/android/search/search.js deleted file mode 100644 index dedce3bf0..000000000 --- a/docs/docs/doxygen-docs/android/search/search.js +++ /dev/null @@ -1,791 +0,0 @@ -function convertToId(search) -{ - var result = ''; - for (i=0;i do a search - { - this.Search(); - } - } - - this.OnSearchSelectKey = function(evt) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==40 && this.searchIndex0) // Up - { - this.searchIndex--; - this.OnSelectItem(this.searchIndex); - } - else if (e.keyCode==13 || e.keyCode==27) - { - this.OnSelectItem(this.searchIndex); - this.CloseSelectionWindow(); - this.DOMSearchField().focus(); - } - return false; - } - - // --------- Actions - - // Closes the results window. - this.CloseResultsWindow = function() - { - this.DOMPopupSearchResultsWindow().style.display = 'none'; - this.DOMSearchClose().style.display = 'none'; - this.Activate(false); - } - - this.CloseSelectionWindow = function() - { - this.DOMSearchSelectWindow().style.display = 'none'; - } - - // Performs a search. - this.Search = function() - { - this.keyTimeout = 0; - - // strip leading whitespace - var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); - - var code = searchValue.toLowerCase().charCodeAt(0); - var idxChar = searchValue.substr(0, 1).toLowerCase(); - if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair - { - idxChar = searchValue.substr(0, 2); - } - - var resultsPage; - var resultsPageWithSearch; - var hasResultsPage; - - var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); - if (idx!=-1) - { - var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; - resultsPageWithSearch = resultsPage+'?'+escape(searchValue); - hasResultsPage = true; - } - else // nothing available for this search term - { - resultsPage = this.resultsPath + '/nomatches.html'; - resultsPageWithSearch = resultsPage; - hasResultsPage = false; - } - - window.frames.MSearchResults.location = resultsPageWithSearch; - var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); - - if (domPopupSearchResultsWindow.style.display!='block') - { - var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; - if (this.insideFrame) - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - domPopupSearchResultsWindow.style.position = 'relative'; - domPopupSearchResultsWindow.style.display = 'block'; - var width = document.body.clientWidth - 8; // the -8 is for IE :-( - domPopupSearchResultsWindow.style.width = width + 'px'; - domPopupSearchResults.style.width = width + 'px'; - } - else - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; - var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; - domPopupSearchResultsWindow.style.display = 'block'; - left -= domPopupSearchResults.offsetWidth; - domPopupSearchResultsWindow.style.top = top + 'px'; - domPopupSearchResultsWindow.style.left = left + 'px'; - } - } - - this.lastSearchValue = searchValue; - this.lastResultsPage = resultsPage; - } - - // -------- Activation Functions - - // Activates or deactivates the search panel, resetting things to - // their default values if necessary. - this.Activate = function(isActive) - { - if (isActive || // open it - this.DOMPopupSearchResultsWindow().style.display == 'block' - ) - { - this.DOMSearchBox().className = 'MSearchBoxActive'; - - var searchField = this.DOMSearchField(); - - if (searchField.value == this.searchLabel) // clear "Search" term upon entry - { - searchField.value = ''; - this.searchActive = true; - } - } - else if (!isActive) // directly remove the panel - { - this.DOMSearchBox().className = 'MSearchBoxInactive'; - this.DOMSearchField().value = this.searchLabel; - this.searchActive = false; - this.lastSearchValue = '' - this.lastResultsPage = ''; - } - } -} - -// ----------------------------------------------------------------------- - -// The class that handles everything on the search results page. -function SearchResults(name) -{ - // The number of matches from the last run of . - this.lastMatchCount = 0; - this.lastKey = 0; - this.repeatOn = false; - - // Toggles the visibility of the passed element ID. - this.FindChildElement = function(id) - { - var parentElement = document.getElementById(id); - var element = parentElement.firstChild; - - while (element && element!=parentElement) - { - if (element.nodeName == 'DIV' && element.className == 'SRChildren') - { - return element; - } - - if (element.nodeName == 'DIV' && element.hasChildNodes()) - { - element = element.firstChild; - } - else if (element.nextSibling) - { - element = element.nextSibling; - } - else - { - do - { - element = element.parentNode; - } - while (element && element!=parentElement && !element.nextSibling); - - if (element && element!=parentElement) - { - element = element.nextSibling; - } - } - } - } - - this.Toggle = function(id) - { - var element = this.FindChildElement(id); - if (element) - { - if (element.style.display == 'block') - { - element.style.display = 'none'; - } - else - { - element.style.display = 'block'; - } - } - } - - // Searches for the passed string. If there is no parameter, - // it takes it from the URL query. - // - // Always returns true, since other documents may try to call it - // and that may or may not be possible. - this.Search = function(search) - { - if (!search) // get search word from URL - { - search = window.location.search; - search = search.substring(1); // Remove the leading '?' - search = unescape(search); - } - - search = search.replace(/^ +/, ""); // strip leading spaces - search = search.replace(/ +$/, ""); // strip trailing spaces - search = search.toLowerCase(); - search = convertToId(search); - - var resultRows = document.getElementsByTagName("div"); - var matches = 0; - - var i = 0; - while (i < resultRows.length) - { - var row = resultRows.item(i); - if (row.className == "SRResult") - { - var rowMatchName = row.id.toLowerCase(); - rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' - - if (search.length<=rowMatchName.length && - rowMatchName.substr(0, search.length)==search) - { - row.style.display = 'block'; - matches++; - } - else - { - row.style.display = 'none'; - } - } - i++; - } - document.getElementById("Searching").style.display='none'; - if (matches == 0) // no results - { - document.getElementById("NoMatches").style.display='block'; - } - else // at least one result - { - document.getElementById("NoMatches").style.display='none'; - } - this.lastMatchCount = matches; - return true; - } - - // return the first item with index index or higher that is visible - this.NavNext = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index++; - } - return focusItem; - } - - this.NavPrev = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index--; - } - return focusItem; - } - - this.ProcessKeys = function(e) - { - if (e.type == "keydown") - { - this.repeatOn = false; - this.lastKey = e.keyCode; - } - else if (e.type == "keypress") - { - if (!this.repeatOn) - { - if (this.lastKey) this.repeatOn = true; - return false; // ignore first keypress after keydown - } - } - else if (e.type == "keyup") - { - this.lastKey = 0; - this.repeatOn = false; - } - return this.lastKey!=0; - } - - this.Nav = function(evt,itemIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - var newIndex = itemIndex-1; - var focusItem = this.NavPrev(newIndex); - if (focusItem) - { - var child = this.FindChildElement(focusItem.parentNode.parentNode.id); - if (child && child.style.display == 'block') // children visible - { - var n=0; - var tmpElem; - while (1) // search for last child - { - tmpElem = document.getElementById('Item'+newIndex+'_c'+n); - if (tmpElem) - { - focusItem = tmpElem; - } - else // found it! - { - break; - } - n++; - } - } - } - if (focusItem) - { - focusItem.focus(); - } - else // return focus to search field - { - parent.document.getElementById("MSearchField").focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = itemIndex+1; - var focusItem; - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem && elem.style.display == 'block') // children visible - { - focusItem = document.getElementById('Item'+itemIndex+'_c0'); - } - if (!focusItem) focusItem = this.NavNext(newIndex); - if (focusItem) focusItem.focus(); - } - else if (this.lastKey==39) // Right - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'block'; - } - else if (this.lastKey==37) // Left - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'none'; - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } - - this.NavChild = function(evt,itemIndex,childIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - if (childIndex>0) - { - var newIndex = childIndex-1; - document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); - } - else // already at first child, jump to parent - { - document.getElementById('Item'+itemIndex).focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = childIndex+1; - var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); - if (!elem) // last child, jump to parent next parent - { - elem = this.NavNext(itemIndex+1); - } - if (elem) - { - elem.focus(); - } - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } -} - -function setKeyActions(elem,action) -{ - elem.setAttribute('onkeydown',action); - elem.setAttribute('onkeypress',action); - elem.setAttribute('onkeyup',action); -} - -function setClassAttr(elem,attr) -{ - elem.setAttribute('class',attr); - elem.setAttribute('className',attr); -} - -function createResults() -{ - var results = document.getElementById("SRResults"); - for (var e=0; e - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_0.js b/docs/docs/doxygen-docs/android/search/variables_0.js deleted file mode 100644 index 5a6a477eb..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_0.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['acl_5fclient_5frequest',['ACL_CLIENT_REQUEST',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a27dd6905ea8b269e891cb7af615349af',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['acl_5fdisabled',['ACL_DISABLED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#ae296bd017d5b9aff977a96b358ed31da',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['activated',['ACTIVATED',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#a4ec0c452a253a0356a36b1dcd3a77b21',1,'com::amazon::aace::apl::APL::ActivityEvent']]], - ['active',['ACTIVE',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#aa9b4b025bc49bd4401dad77874f9de55',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]], - ['ad',['AD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#a24f37c8aa07373cee1d9a8fdd7d30856',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.AD()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#ad56bcfa1342fa4481e1e0285ef626e49',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.AD()']]], - ['alerts_5fvolume',['ALERTS_VOLUME',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html#aa27994fa83f3c3d62612f2fa914f3fa5',1,'com::amazon::aace::alexa::AlexaSpeaker::SpeakerType']]], - ['alexa_5fvolume',['ALEXA_VOLUME',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_speaker_1_1_speaker_type.html#a6333f0226e8ab4184c927bd0e44aca62',1,'com::amazon::aace::alexa::AlexaSpeaker::SpeakerType']]], - ['am_5fradio',['AM_RADIO',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#ad8a3e837f873dfe4b9b8b15013d30a33',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['authorization_5fexpired',['AUTHORIZATION_EXPIRED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a922cdd5dfac17d3b06a2b19ec7bc87c6',1,'com.amazon.aace.alexa.AlexaClient.AuthError.AUTHORIZATION_EXPIRED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#ab27f6e2fc7524493c5d10fc32e806a98',1,'com.amazon.aace.alexa.AuthProvider.AuthError.AUTHORIZATION_EXPIRED()'],['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#ae7e324772c2135562a8caec1b7c06803',1,'com.amazon.aace.cbl.CBL.CBLStateChangedReason.AUTHORIZATION_EXPIRED()']]], - ['authorization_5ffailed',['AUTHORIZATION_FAILED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ab239854c195b04feb7b6e5548ad6d4ee',1,'com.amazon.aace.alexa.AlexaClient.AuthError.AUTHORIZATION_FAILED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a37dd844f07da9d1bbd756e0d1bdb51a0',1,'com.amazon.aace.alexa.AuthProvider.AuthError.AUTHORIZATION_FAILED()']]], - ['authorization_5fpending',['AUTHORIZATION_PENDING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a423bcf5d45f1bf81b84e08d8b113c654',1,'com.amazon.aace.alexa.AlexaClient.AuthError.AUTHORIZATION_PENDING()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#aafcfdbd2f90719857c1ea276bdab5540',1,'com.amazon.aace.alexa.AuthProvider.AuthError.AUTHORIZATION_PENDING()']]], - ['authorized',['AUTHORIZED',['../enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html#a37ceee7a75c30c4eca0ef794eca21bc3',1,'com::amazon::aace::authorization::Authorization::AuthorizationState']]], - ['authorizing',['AUTHORIZING',['../enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html#ae5924e162d7c27d155005fd113f94548',1,'com::amazon::aace::authorization::Authorization::AuthorizationState']]], - ['automotive_5fstartup',['AUTOMOTIVE_STARTUP',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html#a3dcf2ff6de0ae7473ec1ba3dba7965ff',1,'com::amazon::aace::alexa::MediaPlaybackRequestor::InvocationReason']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_1.html b/docs/docs/doxygen-docs/android/search/variables_1.html deleted file mode 100644 index 84237b6e7..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_1.js b/docs/docs/doxygen-docs/android/search/variables_1.js deleted file mode 100644 index 43c51e935..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_1.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['background',['BACKGROUND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html#a0705240859115be4fef17ddaf55d2a81',1,'com::amazon::aace::alexa::TemplateRuntime::FocusState']]], - ['bass',['BASS',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html#ab912928dd1ef3bee8dbbd6949b9f4f21',1,'com::amazon::aace::alexa::EqualizerController::EqualizerBand']]], - ['bluetooth',['BLUETOOTH',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a6727f90887ea62c4e2cc8df0fb3257b6',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['buffer_5funderrun',['BUFFER_UNDERRUN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#a947333e7e18f62ecb6cf1387c34a12f3',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.BUFFER_UNDERRUN()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a0034f77e833be6173541a1b5993b7321',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.BUFFER_UNDERRUN()']]], - ['buffering',['BUFFERING',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html#a9f93dc6ebc20250f7e88ba87c8d9d649',1,'com::amazon::aace::audio::AudioOutput::MediaState']]], - ['busy',['BUSY',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#ad5423ebda1428be66d0d2f5c44a63b6b',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallError']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_10.html b/docs/docs/doxygen-docs/android/search/variables_10.html deleted file mode 100644 index 548ac843e..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_10.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_10.js b/docs/docs/doxygen-docs/android/search/variables_10.js deleted file mode 100644 index f037bc33c..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_10.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['tap_5fto_5ftalk',['TAP_TO_TALK',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html#ab6d9209cde8969318853100e6369c088',1,'com::amazon::aace::alexa::SpeechRecognizer::Initiator']]], - ['thinking',['THINKING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#a1f39ece095c51cc56509604352264953',1,'com::amazon::aace::alexa::AlexaClient::DialogState']]], - ['thumbs_5fdown',['THUMBS_DOWN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#ac8764d3f4105f96c5b19210b7fa53bcf',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['thumbs_5fup',['THUMBS_UP',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#ae03c25bb16b59fb29f1c136b1b2f2c56',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['time_5funknown',['TIME_UNKNOWN',['../classcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player.html#aeedf104185c5b77717b01d8ebae74c9a',1,'com.amazon.aace.alexa.AudioPlayer.TIME_UNKNOWN()'],['../classcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output.html#a60658d83dc03b3999057ace2b2cabefd',1,'com.amazon.aace.audio.AudioOutput.TIME_UNKNOWN()']]], - ['timeout',['TIMEOUT',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#a1c1495251c637f827cdc04598ce2cb7c',1,'com::amazon::aace::cbl::CBL::CBLStateChangedReason']]], - ['track',['TRACK',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#a75b390afb82e0f8d95cff4cf06fec59e',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.TRACK()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#aefed7c68a06513cecf1d1830eea2a148',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.TRACK()']]], - ['treble',['TREBLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html#aaf1c6d5e0d780baab17a53763e2c4688',1,'com::amazon::aace::alexa::EqualizerController::EqualizerBand']]], - ['trim',['TRIM',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a52c0f39c73171713335cf2bb2306f799',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_11.html b/docs/docs/doxygen-docs/android/search/variables_11.html deleted file mode 100644 index d5be91451..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_11.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_11.js b/docs/docs/doxygen-docs/android/search/variables_11.js deleted file mode 100644 index a2a384e64..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_11.js +++ /dev/null @@ -1,15 +0,0 @@ -var searchData= -[ - ['unauthorized',['UNAUTHORIZED',['../enumcom_1_1amazon_1_1aace_1_1authorization_1_1_authorization_1_1_authorization_state.html#aaee87f5bbcea329c6fec281886880da4',1,'com::amazon::aace::authorization::Authorization::AuthorizationState']]], - ['unauthorized_5fclient',['UNAUTHORIZED_CLIENT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#af804dbfb32638e3c082d90efa3912a9b',1,'com.amazon.aace.alexa.AlexaClient.AuthError.UNAUTHORIZED_CLIENT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a0604dc08653947306fe2eade1c497ef9',1,'com.amazon.aace.alexa.AuthProvider.AuthError.UNAUTHORIZED_CLIENT()']]], - ['unexpected_5finformation_5freceived',['UNEXPECTED_INFORMATION_RECEIVED',['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html#a2a42ffe20854e593d1e15d1a60a78a28',1,'com::amazon::aace::customDomain::CustomDomain::ResultType']]], - ['unfavorite',['UNFAVORITE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a972a844ee00be9757f59e70af72f5d09',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.UNFAVORITE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a3ce434c3847d05357b242a35381db4bd',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.UNFAVORITE()']]], - ['unfavorited',['UNFAVORITED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html#a6eb5e1fa3c230f445c3ae1147bd67acd',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Favorites.UNFAVORITED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html#a07d0bc918d3898558be4025b12068c8a',1,'com.amazon.aace.alexa.LocalMediaSource.Favorites.UNFAVORITED()']]], - ['uninitialized',['UNINITIALIZED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html#a6a54b74d1219d6022a21d1493f607a6b',1,'com.amazon.aace.alexa.AlexaClient.AuthState.UNINITIALIZED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html#a9e8a6803b57d45467f047d3f412ceb27',1,'com.amazon.aace.alexa.AuthProvider.AuthState.UNINITIALIZED()']]], - ['unknown',['UNKNOWN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html#a440225fb9b82619cf3336073764c4e80',1,'com.amazon.aace.alexa.Notifications.IndicatorState.UNKNOWN()'],['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#affbb173f103e2dc6c9399dd6a3674902',1,'com.amazon.aace.apl.APL.ActivityEvent.UNKNOWN()'],['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#a6b44a8379299aa098271ca9a9b21ca9e',1,'com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.UNKNOWN()']]], - ['unknown_5ferror',['UNKNOWN_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a110946e49f9624a3823d1457f5efe57b',1,'com.amazon.aace.alexa.AlexaClient.AuthError.UNKNOWN_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#ab82213352bde9993de5bda26fbcf1486',1,'com.amazon.aace.alexa.AuthProvider.AuthError.UNKNOWN_ERROR()']]], - ['unrecoverable_5ferror',['UNRECOVERABLE_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html#a9395e797fd39967a690db2217114b43a',1,'com.amazon.aace.alexa.AlexaClient.AuthState.UNRECOVERABLE_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a24c07684a8aa086e8cab5c34e84ba245',1,'com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.UNRECOVERABLE_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html#a13dec4634da247a0a897f5e2da2ab7c1',1,'com.amazon.aace.alexa.AuthProvider.AuthState.UNRECOVERABLE_ERROR()']]], - ['unsupported_5fgrant_5ftype',['UNSUPPORTED_GRANT_TYPE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ae7f34009c855ab19054576a5cf8e5fb7',1,'com.amazon.aace.alexa.AlexaClient.AuthError.UNSUPPORTED_GRANT_TYPE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a791e3bdd8b3ef18b34dd57d39871fa1b',1,'com.amazon.aace.alexa.AuthProvider.AuthError.UNSUPPORTED_GRANT_TYPE()']]], - ['unsupported_5foperation',['UNSUPPORTED_OPERATION',['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html#a66381036fd78a9916bf5c45d587efdbb',1,'com::amazon::aace::customDomain::CustomDomain::ResultType']]], - ['usb',['USB',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a9eeb1241157772d62b8666ca203b59f8',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_12.html b/docs/docs/doxygen-docs/android/search/variables_12.html deleted file mode 100644 index b62e1ee13..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_12.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_12.js b/docs/docs/doxygen-docs/android/search/variables_12.js deleted file mode 100644 index 96da6133a..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_12.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['vehicle_5fidentifier',['VEHICLE_IDENTIFIER',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a2a256a365b83dd01f661e899b7198f8b',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['verbose',['VERBOSE',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#a704a568ee9d3f5deac0ae74a00c66072',1,'com::amazon::aace::logger::Logger::Level']]], - ['version',['VERSION',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a3e91ea0b1fa3b76c5823fa693a3327c1',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_13.html b/docs/docs/doxygen-docs/android/search/variables_13.html deleted file mode 100644 index 15437be23..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_13.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_13.js b/docs/docs/doxygen-docs/android/search/variables_13.js deleted file mode 100644 index aee39ac3d..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_13.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['wakeword',['WAKEWORD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html#a833b0dd549b0eba9ed3ed0e9edb0f059',1,'com::amazon::aace::alexa::SpeechRecognizer::Initiator']]], - ['warn',['WARN',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#acba58823cfc4c53d5aa824d447c6299f',1,'com::amazon::aace::logger::Logger::Level']]], - ['write_5ftimedout',['WRITE_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a00e8fa4aec24d97853ff838dac1d04c9',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_14.html b/docs/docs/doxygen-docs/android/search/variables_14.html deleted file mode 100644 index 3745fec35..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_14.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_14.js b/docs/docs/doxygen-docs/android/search/variables_14.js deleted file mode 100644 index 10b0472df..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_14.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['year',['YEAR',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a342546024e512fc1921bed67b23be129',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_2.html b/docs/docs/doxygen-docs/android/search/variables_2.html deleted file mode 100644 index 5c9de1aab..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_2.js b/docs/docs/doxygen-docs/android/search/variables_2.js deleted file mode 100644 index 16cc2ae2f..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_2.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['call_5fnot_5fin_5fprogress',['CALL_NOT_IN_PROGRESS',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html#aa8c8a58ea28b1198fe0123532db854d2',1,'com::amazon::aace::phonecontrol::PhoneCallController::DTMFError']]], - ['call_5freceived',['CALL_RECEIVED',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#ac64f764a5a9ab1ec83cc35eace0f6af2',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]], - ['channel',['CHANNEL',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html#aa5746e9aa630d7fd67ae69ad0020eaf9',1,'com::amazon::aace::alexa::LocalMediaSource::ContentSelector']]], - ['close',['CLOSE',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html#a82a79fd8eb91ca3acd066112cc5a9d2c',1,'com::amazon::aace::carControl::CarControlConfiguration::Action']]], - ['code_5fpair_5fexpired',['CODE_PAIR_EXPIRED',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#a86a569b7c1f83016602b6185828272df',1,'com::amazon::aace::cbl::CBL::CBLStateChangedReason']]], - ['code_5fpair_5freceived',['CODE_PAIR_RECEIVED',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#aa540173127387714f08eb7b73791ffe7',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['compact_5fdisc',['COMPACT_DISC',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#ae6297528fb7dfa6bc6694f459a14603e',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['completed',['COMPLETED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#aebf1b819f750e29c86659686a0954467',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['connected',['CONNECTED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html#a15164207832dc87be9a0a65c6b392505',1,'com.amazon.aace.alexa.AlexaClient.ConnectionStatus.CONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#a97d9dad7f8baf7699a3f62b183d26895',1,'com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.CONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html#af4769b42614d58097950c788a6dff321',1,'com.amazon.aace.messaging.Messaging.ConnectionState.CONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html#a334f503c8af9d5fd12170cdabff38900',1,'com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState.CONNECTED()']]], - ['connecting',['CONNECTING',['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#a4de3bfe4ee56fb043c20859fb8edd140',1,'com::amazon::aace::network::NetworkInfoProvider::NetworkStatus']]], - ['connection_5fthrottled',['CONNECTION_THROTTLED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a88e15eeebfd05bec30d111763e573278',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['connection_5ftimedout',['CONNECTION_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#ae8864e9473452f4cde574e103827afa1',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['contact',['CONTACT',['../enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html#a89a2f19b935235def607476414e00651',1,'com::amazon::aace::addressbook::AddressBook::AddressBookType']]], - ['critical',['CRITICAL',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#aca8f08c4026fa7df9a9ef4f05c4cae23',1,'com::amazon::aace::logger::Logger::Level']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_3.html b/docs/docs/doxygen-docs/android/search/variables_3.html deleted file mode 100644 index f95e34c60..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_3.js b/docs/docs/doxygen-docs/android/search/variables_3.js deleted file mode 100644 index 332947ab0..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_3.js +++ /dev/null @@ -1,16 +0,0 @@ -var searchData= -[ - ['dab',['DAB',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#ad79d251e0f05790ed49c38296e4604a3',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['deactivated',['DEACTIVATED',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#acaec8cc5392e3a6da590604f201c1caa',1,'com::amazon::aace::apl::APL::ActivityEvent']]], - ['default',['DEFAULT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html#a341b202427ebbd1a72b09440e1faae51',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Navigation.DEFAULT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#ad22ebb5ffc31363041023ff23e78dff9',1,'com.amazon.aace.alexa.LocalMediaSource.Source.DEFAULT()']]], - ['deleted',['DELETED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#ad649eccb44e9f6b6edc1c053b15a6f14',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['dialing',['DIALING',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#a219ecfbc86e942f09ab6762b9d04e7bd',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]], - ['disable_5frepeat',['DISABLE_REPEAT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#aff4cf547e98771825fc89613325225c1',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.DISABLE_REPEAT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a9ab2ede3ef1d0cf9000328adf5f7b33a',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.DISABLE_REPEAT()']]], - ['disable_5fshuffle',['DISABLE_SHUFFLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a19ac08c56f815c3ebb6768a302655f44',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.DISABLE_SHUFFLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#ac6f49ab238fc96bc47d69dbc9435be7c',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.DISABLE_SHUFFLE()']]], - ['disabled',['DISABLED',['../enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html#acfac7bfb9b9ea0f29d5c7e3aec3d4e6c',1,'com::amazon::aace::location::LocationProvider::LocationServiceAccess']]], - ['disconnected',['DISCONNECTED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html#a438c710b6951494260c66b5a84ee6770',1,'com.amazon.aace.alexa.AlexaClient.ConnectionStatus.DISCONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#ab346b77ac36eb370ec34fa18ccf57aee',1,'com.amazon.aace.network.NetworkInfoProvider.NetworkStatus.DISCONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_connection_state.html#abc48735905c358cf2b8012e02ba1d9a9',1,'com.amazon.aace.messaging.Messaging.ConnectionState.DISCONNECTED()'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_connection_state.html#a7c23dfd53e87f06c93734e4257028c62',1,'com.amazon.aace.phonecontrol.PhoneCallController.ConnectionState.DISCONNECTED()']]], - ['disconnecting',['DISCONNECTING',['../enumcom_1_1amazon_1_1aace_1_1network_1_1_network_info_provider_1_1_network_status.html#ae2986a50a60397d2a3b325c924c807f3',1,'com::amazon::aace::network::NetworkInfoProvider::NetworkStatus']]], - ['dns_5ftimedout',['DNS_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#acbe9865f13dcd3e988c8904c315df486',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['dtmf_5ffailed',['DTMF_FAILED',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_d_t_m_f_error.html#ab88088edb4bf67479cca64715ca74af5',1,'com::amazon::aace::phonecontrol::PhoneCallController::DTMFError']]], - ['dtmf_5fsupported',['DTMF_SUPPORTED',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_calling_device_configuration_property.html#aee40d256df727148c0b49dbc712cc1f9',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallingDeviceConfigurationProperty']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_4.html b/docs/docs/doxygen-docs/android/search/variables_4.html deleted file mode 100644 index d7db285ee..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_4.js b/docs/docs/doxygen-docs/android/search/variables_4.js deleted file mode 100644 index e94a7bb86..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_4.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['enable_5frepeat',['ENABLE_REPEAT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a2e80e52267f8a98a61bcab946fa2dc12',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.ENABLE_REPEAT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a3e7d49a2835f638cf02b1ad4e38a8ade',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.ENABLE_REPEAT()']]], - ['enable_5frepeat_5fone',['ENABLE_REPEAT_ONE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#ab28e78d85f3d5076ef448b2938628c8e',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.ENABLE_REPEAT_ONE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#acdd97bc64b6882c3b107d8bc625c00d3',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.ENABLE_REPEAT_ONE()']]], - ['enable_5fshuffle',['ENABLE_SHUFFLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#ae1837ad65d699f429ccf8def94f4b66b',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.ENABLE_SHUFFLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a3b1fd897ad28be840af4e37f91bf4f87',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.ENABLE_SHUFFLE()']]], - ['enabled',['ENABLED',['../enumcom_1_1amazon_1_1aace_1_1location_1_1_location_provider_1_1_location_service_access.html#a1e8ea59473f6a3641e10ab0458990572',1,'com::amazon::aace::location::LocationProvider::LocationServiceAccess']]], - ['engine_5ftype',['ENGINE_TYPE',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a73fbd2e69fe060036faa6263d8bb2758',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['error',['ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#aa4bac67714cd5337498975309d7b8697',1,'com.amazon.aace.alexa.Alerts.AlertState.ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html#a0e4fe7584fd563503eb1057d05581cb0',1,'com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus.ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#aa09cb70ab22d4605447f4b912d4e19b5',1,'com.amazon.aace.cbl.CBL.CBLStateChangedReason.ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#a6f924d669645c42896e9ed21ca5f841a',1,'com.amazon.aace.logger.Logger.Level.ERROR()']]], - ['expecting',['EXPECTING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#a6b27f81309e0ab581dc11ee7ef4c2ad7',1,'com::amazon::aace::alexa::AlexaClient::DialogState']]], - ['expired',['EXPIRED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html#a67ec22bd33c00410722b09ca7cdf7059',1,'com.amazon.aace.alexa.AlexaClient.AuthState.EXPIRED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html#a4c7fb3a58794927369b104bce1e1920e',1,'com.amazon.aace.alexa.AuthProvider.AuthState.EXPIRED()']]], - ['explicit_5fuser_5faction',['EXPLICIT_USER_ACTION',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_invocation_reason.html#ac08ce13bd4ad18c45cf533fc56df0250',1,'com::amazon::aace::alexa::MediaPlaybackRequestor::InvocationReason']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_5.html b/docs/docs/doxygen-docs/android/search/variables_5.html deleted file mode 100644 index 7bbceeb0d..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_5.js b/docs/docs/doxygen-docs/android/search/variables_5.js deleted file mode 100644 index 0b94beecb..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_5.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['fail',['FAIL',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html#aa3e40112639a2989afd103ba5117cf9b',1,'com.amazon.aace.alexa.DeviceSetup.StatusCode.FAIL()'],['../enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html#afc280c61f5d376ee8b3bdb5d94dbe361',1,'com.amazon.aace.connectivity.AlexaConnectivity.StatusCode.FAIL()']]], - ['failed',['FAILED',['../enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html#ac11ed124711872a3e9c60391fcf639a2',1,'com::amazon::aace::propertyManager::PropertyManager::PropertyState']]], - ['failed_5fcan_5fretry',['FAILED_CAN_RETRY',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html#ab35ea5d7136eee4e374bb124bbd53b89',1,'com::amazon::aace::alexa::MediaPlaybackRequestor::MediaPlaybackRequestStatus']]], - ['failed_5ftimeout',['FAILED_TIMEOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html#a528b532a8c94e2b90a00b62e27ad5860',1,'com::amazon::aace::alexa::MediaPlaybackRequestor::MediaPlaybackRequestStatus']]], - ['failure_5fprotocol_5ferror',['FAILURE_PROTOCOL_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#acb096ffb04882dde59e47a2336823072',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['fast_5fforward',['FAST_FORWARD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a5940da64a23acbb1d4ad06ebcd7d1ae0',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.FAST_FORWARD()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a8b249de0f2af740577cec549d85e9f6a',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.FAST_FORWARD()']]], - ['favorite',['FAVORITE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a4f3e5f738216980dcdc241ccfb8f7003',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.FAVORITE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a196249d60a7cb59cd94620b8f0e260f4',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.FAVORITE()']]], - ['favorited',['FAVORITED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html#a3018bbec0092449c3dc292361381da8d',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Favorites.FAVORITED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html#a5fd7cb41c0f679a7f8fc337366b24f1e',1,'com.amazon.aace.alexa.LocalMediaSource.Favorites.FAVORITED()']]], - ['finished',['FINISHED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#a51053e7c19f8f4db8d438dc487d79c8d',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.FINISHED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a755964b192b078e77c0d99fe5cb7b783',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.FINISHED()']]], - ['fm_5fradio',['FM_RADIO',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a43bb0a1cc755913e36e62826c46ef891',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['focus_5fentered_5fbackground',['FOCUS_ENTERED_BACKGROUND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a08664b1cbc2de62c1a869adad68b597d',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['focus_5fentered_5fforeground',['FOCUS_ENTERED_FOREGROUND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a830bdc4af1afbc94e49982b07db7000f',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['foreground',['FOREGROUND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html#a1855cd6202e7b373a3ed13e29490a59d',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Navigation.FOREGROUND()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html#ac411b26a2ce5ce526fa0459b3eba9a7e',1,'com.amazon.aace.alexa.TemplateRuntime.FocusState.FOREGROUND()']]], - ['frequency',['FREQUENCY',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html#a2b9cab3166640effa04f358f4e33fbb0',1,'com::amazon::aace::alexa::LocalMediaSource::ContentSelector']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_6.html b/docs/docs/doxygen-docs/android/search/variables_6.html deleted file mode 100644 index 4eb162d67..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_6.js b/docs/docs/doxygen-docs/android/search/variables_6.js deleted file mode 100644 index e49f68f5e..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_6.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['generic_5ffailure',['GENERIC_FAILURE',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html#a457eadf4ff380a8c32cc1e783c515e3a',1,'com::amazon::aace::messaging::Messaging::ErrorCode']]], - ['geography',['GEOGRAPHY',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a74aaae5e6c036dd4c85965d3258f7766',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_7.html b/docs/docs/doxygen-docs/android/search/variables_7.html deleted file mode 100644 index 040882958..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_7.js b/docs/docs/doxygen-docs/android/search/variables_7.js deleted file mode 100644 index 9ec55a316..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_7.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['hardware_5farch',['HARDWARE_ARCH',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#aa7311e116130a9d1cfdc4357cdc766d0',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['hold_5fto_5ftalk',['HOLD_TO_TALK',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_speech_recognizer_1_1_initiator.html#ad843706356e923f0dec4fc5187a2ad3a',1,'com::amazon::aace::alexa::SpeechRecognizer::Initiator']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_8.html b/docs/docs/doxygen-docs/android/search/variables_8.html deleted file mode 100644 index d54d09666..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_8.js b/docs/docs/doxygen-docs/android/search/variables_8.js deleted file mode 100644 index 0e78307ca..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_8.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['idle',['IDLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#a67e1c3dea06939755563594ab58a94cf',1,'com.amazon.aace.alexa.AlexaClient.DialogState.IDLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#ab67d81e3686ddb0543eb63e9847035e5',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.IDLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a6d05a7884ac68ad8c0fa773d188b99dd',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.IDLE()'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#a4f1faf3c53a546e7e9caa69f0db3596f',1,'com.amazon.aace.phonecontrol.PhoneCallController.CallState.IDLE()']]], - ['inbound_5fringing',['INBOUND_RINGING',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#af88f165ecbafbd552d80b6be51f2028c',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]], - ['info',['INFO',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#a7a263c82b708e691632845088197bce0',1,'com::amazon::aace::logger::Logger::Level']]], - ['internal_5ferror',['INTERNAL_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a93164b476534d8d5222e6561abd19f64',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INTERNAL_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a1b22429a7bd02c0b37b2300a69f7904d',1,'com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.INTERNAL_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#aa63e3e0b62ced63ab52ccd64774dfe16',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INTERNAL_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html#a8d7018a3c51f74305beed5af3b0920d7',1,'com.amazon.aace.customDomain.CustomDomain.ResultType.INTERNAL_ERROR()']]], - ['interrupt',['INTERRUPT',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#ac49f49099443eedfc9afe21d74672c36',1,'com::amazon::aace::apl::APL::ActivityEvent']]], - ['invalid_5fauth',['INVALID_AUTH',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#adda100720c508c85e79789231577dc53',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['invalid_5fcbl_5fclient_5fid',['INVALID_CBL_CLIENT_ID',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a1f3056441df8dcc989e111b0b96016e9',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_CBL_CLIENT_ID()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a6e7c0fa9886bf86a5a33143ea4ec1e3d',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_CBL_CLIENT_ID()']]], - ['invalid_5fcode_5fpair',['INVALID_CODE_PAIR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#af4cbf7b7daf5c08c6fcfb6ee17571d34',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_CODE_PAIR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#ac03243a2d29701c94db30e406942f5fb',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_CODE_PAIR()']]], - ['invalid_5frequest',['INVALID_REQUEST',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ab6accdb3d0f7a66cf60cecdaf453bae8',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_REQUEST()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a2b45e1388e8814930d49fb51abe08a38',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_REQUEST()']]], - ['invalid_5fvalue',['INVALID_VALUE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ab45ae7cf9d114422efc8209f4f943c4d',1,'com.amazon.aace.alexa.AlexaClient.AuthError.INVALID_VALUE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#ac75e969852f0fb136ea74743f76baf85',1,'com.amazon.aace.alexa.AuthProvider.AuthError.INVALID_VALUE()']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_9.html b/docs/docs/doxygen-docs/android/search/variables_9.html deleted file mode 100644 index 234dc60a4..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_9.js b/docs/docs/doxygen-docs/android/search/variables_9.js deleted file mode 100644 index 2cef6cf79..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_9.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['language',['LANGUAGE',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a5a6dd9c71de1668f6bbe6b9cc4e5c400',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['line_5fin',['LINE_IN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a23e73e0cbefe193d2370addd297178e5',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['listening',['LISTENING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#ac516ead6a7bee0daee38deca08f2274c',1,'com::amazon::aace::alexa::AlexaClient::DialogState']]], - ['loop',['LOOP',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#ae1c56e3222db7bc492ce0e13e132008c',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['lower',['LOWER',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html#a617b78dcb007cdf76be24cc4c01a14dd',1,'com::amazon::aace::carControl::CarControlConfiguration::Action']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_a.html b/docs/docs/doxygen-docs/android/search/variables_a.html deleted file mode 100644 index 089248815..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_a.js b/docs/docs/doxygen-docs/android/search/variables_a.js deleted file mode 100644 index 78206b831..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_a.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['make',['MAKE',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#ac47c1c6967b0b1226b477f6ae9dab54f',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['media_5ferror_5finternal_5fdevice_5ferror',['MEDIA_ERROR_INTERNAL_DEVICE_ERROR',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a6d6b1b860c3966f196751b2ae23c01bf',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['media_5ferror_5finternal_5fserver_5ferror',['MEDIA_ERROR_INTERNAL_SERVER_ERROR',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a4412bf5a8eeea95f2c66b28b401a436b',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['media_5ferror_5finvalid_5frequest',['MEDIA_ERROR_INVALID_REQUEST',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a359032b8af32d6a349319550653b2feb',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['media_5ferror_5fservice_5funavailable',['MEDIA_ERROR_SERVICE_UNAVAILABLE',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a33bcb76fcd749f7589150e839771a85b',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['media_5ferror_5funknown',['MEDIA_ERROR_UNKNOWN',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_error.html#a92154f383495a93ab4eb197218e83e62',1,'com::amazon::aace::audio::AudioOutput::MediaError']]], - ['metric',['METRIC',['../enumcom_1_1amazon_1_1aace_1_1logger_1_1_logger_1_1_level.html#a3fb8000c5538432243c47b03951b0aa3',1,'com::amazon::aace::logger::Logger::Level']]], - ['microphone',['MICROPHONE',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a86317253c5a92a11853d1192fd8459f9',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['midrange',['MIDRANGE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_equalizer_controller_1_1_equalizer_band.html#a8a95ff66b0429c976d07f5ee12269a00',1,'com::amazon::aace::alexa::EqualizerController::EqualizerBand']]], - ['model',['MODEL',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a5dfe79dfa6301ba1efaca475e7061b9e',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_b.html b/docs/docs/doxygen-docs/android/search/variables_b.html deleted file mode 100644 index ea46965c3..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_b.js b/docs/docs/doxygen-docs/android/search/variables_b.js deleted file mode 100644 index 052dbc287..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_b.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['navigation',['NAVIGATION',['../enumcom_1_1amazon_1_1aace_1_1addressbook_1_1_address_book_1_1_address_book_type.html#ad0ae1089ea7eddfe17308effbb3fa5a0',1,'com::amazon::aace::addressbook::AddressBook::AddressBookType']]], - ['next',['NEXT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a8d02b980e2e4694b452af422692e357a',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.NEXT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a66fd19cd8a45ffc05570bb396d59059f',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.NEXT()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#a9c78f75d9666b3fbcf8123c671750ec4',1,'com.amazon.aace.alexa.PlaybackController.PlaybackButton.NEXT()']]], - ['no_5fanswer',['NO_ANSWER',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#af9d6886ae649c361f57ca50415b0ab9e',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallError']]], - ['no_5fcarrier',['NO_CARRIER',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#ad6969582a7bc9c40bd2592bc2bf3a18b',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallError']]], - ['no_5fconnectivity',['NO_CONNECTIVITY',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html#a0aaaa05fb0d8e1eeeeb39a8f952dee30',1,'com::amazon::aace::messaging::Messaging::ErrorCode']]], - ['no_5ferror',['NO_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#a9c51f1b91b356219b9e49d53dd10d600',1,'com.amazon.aace.alexa.AlexaClient.AuthError.NO_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a6649ad016b5958c5a733c24bb5b6a130',1,'com.amazon.aace.alexa.AuthProvider.AuthError.NO_ERROR()']]], - ['no_5fnumber_5ffor_5fredial',['NO_NUMBER_FOR_REDIAL',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#a65e4bf416fa94982beeae4217b8ce0bd',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallError']]], - ['no_5fpermission',['NO_PERMISSION',['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_error_code.html#a9ac39c2b74cd598dfb3ab4aab43e3b69',1,'com::amazon::aace::messaging::Messaging::ErrorCode']]], - ['none',['NONE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#accdacec235ded90798b9740ae4097314',1,'com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.NONE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_navigation.html#afe308185b3b1c7122929da66157cee3c',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Navigation.NONE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_focus_state.html#ad650a4406ebfcf1afa285c11e73653ad',1,'com.amazon.aace.alexa.TemplateRuntime.FocusState.NONE()'],['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#a372a8805a2b75bc73309cee4b492c020',1,'com.amazon.aace.cbl.CBL.CBLStateChangedReason.NONE()']]], - ['not_5frated',['NOT_RATED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_favorites.html#ad23986edc16bf97960d98974991b8d61',1,'com.amazon.aace.alexa.ExternalMediaAdapter.Favorites.NOT_RATED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_favorites.html#a1fb259a6c41eaa17c2301c5b2fc19b1c',1,'com.amazon.aace.alexa.LocalMediaSource.Favorites.NOT_RATED()']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_c.html b/docs/docs/doxygen-docs/android/search/variables_c.html deleted file mode 100644 index 94bf1a67c..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_c.js b/docs/docs/doxygen-docs/android/search/variables_c.js deleted file mode 100644 index 59a3d2631..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_c.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['off',['OFF',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html#ab15913f94667fe6b8ba0c46d9c529248',1,'com.amazon.aace.alexa.Notifications.IndicatorState.OFF()'],['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html#a6aa5d4e5bcf4cb1dda51015b7b5ef86f',1,'com.amazon.aace.messaging.Messaging.PermissionState.OFF()']]], - ['on',['ON',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_notifications_1_1_indicator_state.html#ae173010b35749855d9e6f5e8045ef25c',1,'com.amazon.aace.alexa.Notifications.IndicatorState.ON()'],['../enumcom_1_1amazon_1_1aace_1_1messaging_1_1_messaging_1_1_permission_state.html#a78778d8ae3e8885e8e80331660111e55',1,'com.amazon.aace.messaging.Messaging.PermissionState.ON()']]], - ['one_5ftime',['ONE_TIME',['../enumcom_1_1amazon_1_1aace_1_1apl_1_1_a_p_l_1_1_activity_event.html#ab26e23c0c551eed1b1e374af9b670e4a',1,'com::amazon::aace::apl::APL::ActivityEvent']]], - ['open',['OPEN',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html#a75e9215d18075f95fc2bd858d4844092',1,'com::amazon::aace::carControl::CarControlConfiguration::Action']]], - ['operating_5fsystem',['OPERATING_SYSTEM',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#a1719f615fbf2cba865008ee76f4fc501',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]], - ['other',['OTHER',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#abb19404db0105d784b0f6707a9957022',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.OTHER()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#ac7c89ff94c79c391478f665e7a1e9b40',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.OTHER()'],['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_error.html#a36ca6a929897de7ba18fbc0950099150',1,'com.amazon.aace.phonecontrol.PhoneCallController.CallError.OTHER()']]], - ['outbound_5fringing',['OUTBOUND_RINGING',['../enumcom_1_1amazon_1_1aace_1_1phonecontrol_1_1_phone_call_controller_1_1_call_state.html#a2f8eae04a80520b32d6c775b7eda0238',1,'com::amazon::aace::phonecontrol::PhoneCallController::CallState']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_d.html b/docs/docs/doxygen-docs/android/search/variables_d.html deleted file mode 100644 index b9381e99e..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_d.js b/docs/docs/doxygen-docs/android/search/variables_d.js deleted file mode 100644 index 5b098ee09..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_d.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['past_5fdue',['PAST_DUE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a1fdf1b15b4d0d7d66f302d39226e1515',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['pause',['PAUSE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a9addd643ba90801649941240267b4548',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.PAUSE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a33d2fe80525779685db0b18e06d0d76a',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.PAUSE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#a0b8d2deb4dac2346a2cf7e0b5a5703ea',1,'com.amazon.aace.alexa.PlaybackController.PlaybackButton.PAUSE()']]], - ['paused',['PAUSED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#a920ec3f1af331593ebbd401617c7c59f',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.PAUSED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a4d17484b31b4b2c0cdf2a1bb19aafcc4',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.PAUSED()']]], - ['pending',['PENDING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_status.html#a02bc9909272fb03ad50912fb14adad3a',1,'com::amazon::aace::alexa::AlexaClient::ConnectionStatus']]], - ['ping_5ftimedout',['PING_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a21694df85e4806fb1312f0c1ef472f3d',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['play',['PLAY',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#aa13250d142489889e25587c5b6661ad6',1,'com::amazon::aace::alexa::PlaybackController::PlaybackButton']]], - ['playing',['PLAYING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#aea6407431975166091c7d54683049231',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.PLAYING()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a2fd771f5b73a9afa50491a635947125c',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.PLAYING()'],['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html#a2a7414158c5e062e01441d5d9dbadeb3',1,'com.amazon.aace.audio.AudioOutput.MediaState.PLAYING()']]], - ['podcast',['PODCAST',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#a9c25f98e8622ffd09f15703344d36d82',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.PODCAST()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#a26bcbd93a59deb6da184f0521292e149',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.PODCAST()']]], - ['preset',['PRESET',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_content_selector.html#a7e83aee7db7cdf5eca08d53eb1052379',1,'com::amazon::aace::alexa::LocalMediaSource::ContentSelector']]], - ['previous',['PREVIOUS',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a44db1e8b5ea188d0bdce37e12c02771f',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.PREVIOUS()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#aecc1638b0abfc3ffb15b11d213fd1d23',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.PREVIOUS()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#a1d26131b0550c3963bb75ce4e3299a22',1,'com.amazon.aace.alexa.PlaybackController.PlaybackButton.PREVIOUS()']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_e.html b/docs/docs/doxygen-docs/android/search/variables_e.html deleted file mode 100644 index 375ad705d..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_e.js b/docs/docs/doxygen-docs/android/search/variables_e.js deleted file mode 100644 index b0a283ef2..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_e.js +++ /dev/null @@ -1,16 +0,0 @@ -var searchData= -[ - ['raise',['RAISE',['../classcom_1_1amazon_1_1aace_1_1car_control_1_1_car_control_configuration_1_1_action.html#ade3c8e82b32e72b759eae990df0ac7df',1,'com::amazon::aace::carControl::CarControlConfiguration::Action']]], - ['read_5ftimedout',['READ_TIMEDOUT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a5a96c6d0e2f1565e8c1aa15efd0b4990',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['ready',['READY',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a808b9e372a43813f1cc465ca4cf2a558',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['refreshed',['REFRESHED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_state.html#abcd39f34f475ff1506abd332133e7ab9',1,'com.amazon.aace.alexa.AlexaClient.AuthState.REFRESHED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_state.html#ad0dacf1dbc99ddf4c923863a6ce3f038',1,'com.amazon.aace.alexa.AuthProvider.AuthState.REFRESHED()']]], - ['refreshing_5ftoken',['REFRESHING_TOKEN',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#afbb19a70e90574677a52d0e5ae13fb75',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['repeat',['REPEAT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#a5b6191bde99908b57e7a49f42a9c44d6',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['report_5fducking_5fstarted',['REPORT_DUCKING_STARTED',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html#a3ea741bc56b22245ebb3bcdf9099cae4',1,'com::amazon::aace::audio::AudioOutput::FocusAction']]], - ['report_5fducking_5fstopped',['REPORT_DUCKING_STOPPED',['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_focus_action.html#a0c24a334d4484e55b5c82f22481c208a',1,'com::amazon::aace::audio::AudioOutput::FocusAction']]], - ['requesting_5fcode_5fpair',['REQUESTING_CODE_PAIR',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#a80ff59d65698a4bbf3d1c00ade4a82a2',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['requesting_5ftoken',['REQUESTING_TOKEN',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#a555c83bcacee077d86e04dbf79524d09',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['resume',['RESUME',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a6d06315ba79d3fb13aa555ec7aca28e1',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.RESUME()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#ad70e7f79f9d67d5f567c3e45d2238ed2',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.RESUME()']]], - ['rewind',['REWIND',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a334205e90695622d10a0908c77cc9011',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.REWIND()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a27ef87ba4880ffe5a2bcd0e32431673c',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.REWIND()']]], - ['rse_5fembedded_5ffiretvs',['RSE_EMBEDDED_FIRETVS',['../enumcom_1_1amazon_1_1aace_1_1vehicle_1_1config_1_1_vehicle_configuration_1_1_vehicle_property_type.html#ad1c171df63cdcc40ad3a691710b1d2d4',1,'com::amazon::aace::vehicle::config::VehicleConfiguration::VehiclePropertyType']]] -]; diff --git a/docs/docs/doxygen-docs/android/search/variables_f.html b/docs/docs/doxygen-docs/android/search/variables_f.html deleted file mode 100644 index d37141866..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/android/search/variables_f.js b/docs/docs/doxygen-docs/android/search/variables_f.js deleted file mode 100644 index de479692a..000000000 --- a/docs/docs/doxygen-docs/android/search/variables_f.js +++ /dev/null @@ -1,26 +0,0 @@ -var searchData= -[ - ['sample',['SAMPLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#a7fee02f56ef0e9d1ffd5149e9dc842f5',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.SAMPLE()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#a78c91a721345dc4269259cbbae76e6ab',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.SAMPLE()']]], - ['satellite_5fradio',['SATELLITE_RADIO',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#a705bb0517f4c7206dd72e306d36ec3d2',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['scheduled_5ffor_5flater',['SCHEDULED_FOR_LATER',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a0a4f1b8ecfb1f4231f7ad6f59f63cf12',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['server_5fendpoint_5fchanged',['SERVER_ENDPOINT_CHANGED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#ab767eaff8bc2d71a89062e1c5249fdfa',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['server_5ferror',['SERVER_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#af65f0bf3eab44ba1dbf2769b3ed98285',1,'com.amazon.aace.alexa.AlexaClient.AuthError.SERVER_ERROR()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#adeac5ebb0f1c76c40ce8539be5e4c9d6',1,'com.amazon.aace.alexa.AuthProvider.AuthError.SERVER_ERROR()']]], - ['server_5finternal_5ferror',['SERVER_INTERNAL_ERROR',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a4f472b2c8988b1f58a39ddf6607b2b77',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['server_5fside_5fdisconnect',['SERVER_SIDE_DISCONNECT',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#ab91444ec409e9484d33a60f086d8e77f',1,'com::amazon::aace::alexa::AlexaClient::ConnectionChangedReason']]], - ['shuffle',['SHUFFLE',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_toggle.html#a5680b93330b3317f4a59603121d073a9',1,'com::amazon::aace::alexa::PlaybackController::PlaybackToggle']]], - ['sirius_5fxm',['SIRIUS_XM',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_source.html#af55fc5d2449846575cf009a06884fd3d',1,'com::amazon::aace::alexa::LocalMediaSource::Source']]], - ['skip_5fbackward',['SKIP_BACKWARD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#a85076b1290d63274d67152dc9fcd862f',1,'com::amazon::aace::alexa::PlaybackController::PlaybackButton']]], - ['skip_5fforward',['SKIP_FORWARD',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_playback_controller_1_1_playback_button.html#ab0d3846c0b91fe0ab2a5963d0d5a2263',1,'com::amazon::aace::alexa::PlaybackController::PlaybackButton']]], - ['slow_5fdown',['SLOW_DOWN',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_auth_error.html#ad590a57461aa38c0c73f96a51870f7dc',1,'com.amazon.aace.alexa.AlexaClient.AuthError.SLOW_DOWN()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_auth_provider_1_1_auth_error.html#a84d4d348d7722a582dc6aa6d854ca66c',1,'com.amazon.aace.alexa.AuthProvider.AuthError.SLOW_DOWN()']]], - ['snoozed',['SNOOZED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a698f2a451a59c115400be9b1a2df164f',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['speaking',['SPEAKING',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_dialog_state.html#aad3702bd7897fdd908285db31d7dec76',1,'com::amazon::aace::alexa::AlexaClient::DialogState']]], - ['start_5fover',['START_OVER',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#ad5f275dc58897b8c50771831275f437b',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.START_OVER()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#aa756d16ad5ea3b2d7cf851f95b605ce7',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.START_OVER()']]], - ['started',['STARTED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#ab47241e5088bd6ce3bb9bfbefa8f679c',1,'com::amazon::aace::alexa::Alerts::AlertState']]], - ['starting',['STARTING',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#a9e1ac933921d766207b455f3a2e7d9f1',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['station',['STATION',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_media_type.html#abaf69899cd9c1923e968b7f9ceb3abcd',1,'com.amazon.aace.alexa.ExternalMediaAdapter.MediaType.STATION()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_media_type.html#a952425c84c795ae0890d141f89943531',1,'com.amazon.aace.alexa.LocalMediaSource.MediaType.STATION()']]], - ['stop',['STOP',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_external_media_adapter_1_1_play_control_type.html#a8849e1e147ccccb1608e7546159550ed',1,'com.amazon.aace.alexa.ExternalMediaAdapter.PlayControlType.STOP()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_local_media_source_1_1_play_control_type.html#a4cce624af67a1cb61e357d4da036ac0f',1,'com.amazon.aace.alexa.LocalMediaSource.PlayControlType.STOP()']]], - ['stopped',['STOPPED',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alerts_1_1_alert_state.html#a00ef2e9f819a785f05c3254fc032954f',1,'com.amazon.aace.alexa.Alerts.AlertState.STOPPED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_audio_player_1_1_player_activity.html#a0bb54b0208ad695e194e484d0156b108',1,'com.amazon.aace.alexa.AudioPlayer.PlayerActivity.STOPPED()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_template_runtime_1_1_player_activity.html#a38c414c5c9a298d0fd08cb6bb6e4b60c',1,'com.amazon.aace.alexa.TemplateRuntime.PlayerActivity.STOPPED()'],['../enumcom_1_1amazon_1_1aace_1_1audio_1_1_audio_output_1_1_media_state.html#a798d30c76cd7f4d9af4e9bd4ca43a16d',1,'com.amazon.aace.audio.AudioOutput.MediaState.STOPPED()']]], - ['stopping',['STOPPING',['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state.html#a75da149e307bf18c96e2cc49186bf2da',1,'com::amazon::aace::cbl::CBL::CBLState']]], - ['succeeded',['SUCCEEDED',['../enumcom_1_1amazon_1_1aace_1_1property_manager_1_1_property_manager_1_1_property_state.html#ac142bdd5dc1e3f9bc8b2fd9a3e68d227',1,'com::amazon::aace::propertyManager::PropertyManager::PropertyState']]], - ['success',['SUCCESS',['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_alexa_client_1_1_connection_changed_reason.html#a850ede07c92d1e48f8d1eacddb190d58',1,'com.amazon.aace.alexa.AlexaClient.ConnectionChangedReason.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_device_setup_1_1_status_code.html#ac2d0dcf9eefeaee70043bfe77e74ae07',1,'com.amazon.aace.alexa.DeviceSetup.StatusCode.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1alexa_1_1_media_playback_requestor_1_1_media_playback_request_status.html#a957ddf77e72b4456ae2efbcf8eadaa9d',1,'com.amazon.aace.alexa.MediaPlaybackRequestor.MediaPlaybackRequestStatus.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1cbl_1_1_c_b_l_1_1_c_b_l_state_changed_reason.html#a66a2415ad2ff7ad5ffd78729316882d9',1,'com.amazon.aace.cbl.CBL.CBLStateChangedReason.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1connectivity_1_1_alexa_connectivity_1_1_status_code.html#ad8d12e8c11aa45968b7843367a488ada',1,'com.amazon.aace.connectivity.AlexaConnectivity.StatusCode.SUCCESS()'],['../enumcom_1_1amazon_1_1aace_1_1custom_domain_1_1_custom_domain_1_1_result_type.html#af41adb997c6de98cd900c5425f56d390',1,'com.amazon.aace.customDomain.CustomDomain.ResultType.SUCCESS()']]] -]; diff --git a/docs/docs/doxygen-docs/android/splitbar.png b/docs/docs/doxygen-docs/android/splitbar.png deleted file mode 100644 index fe895f2c5..000000000 Binary files a/docs/docs/doxygen-docs/android/splitbar.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/sync_off.png b/docs/docs/doxygen-docs/android/sync_off.png deleted file mode 100644 index 3b443fc62..000000000 Binary files a/docs/docs/doxygen-docs/android/sync_off.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/sync_on.png b/docs/docs/doxygen-docs/android/sync_on.png deleted file mode 100644 index e08320fb6..000000000 Binary files a/docs/docs/doxygen-docs/android/sync_on.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/tab_a.png b/docs/docs/doxygen-docs/android/tab_a.png deleted file mode 100644 index 3b725c41c..000000000 Binary files a/docs/docs/doxygen-docs/android/tab_a.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/tab_b.png b/docs/docs/doxygen-docs/android/tab_b.png deleted file mode 100644 index e2b4a8638..000000000 Binary files a/docs/docs/doxygen-docs/android/tab_b.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/tab_h.png b/docs/docs/doxygen-docs/android/tab_h.png deleted file mode 100644 index fd5cb7054..000000000 Binary files a/docs/docs/doxygen-docs/android/tab_h.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/tab_s.png b/docs/docs/doxygen-docs/android/tab_s.png deleted file mode 100644 index ab478c95b..000000000 Binary files a/docs/docs/doxygen-docs/android/tab_s.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/android/tabs.css b/docs/docs/doxygen-docs/android/tabs.css deleted file mode 100644 index a28614b8e..000000000 --- a/docs/docs/doxygen-docs/android/tabs.css +++ /dev/null @@ -1 +0,0 @@ -.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#doc-content{overflow:auto;display:block;padding:0;margin:0;-webkit-overflow-scrolling:touch}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/docs/docs/doxygen-docs/cpp.html b/docs/docs/doxygen-docs/cpp.html deleted file mode 100644 index 16bb6b305..000000000 --- a/docs/docs/doxygen-docs/cpp.html +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/docs/doxygen-docs/cpp/_a_p_l_8h_source.html b/docs/docs/doxygen-docs/cpp/_a_p_l_8h_source.html deleted file mode 100644 index b5f54db7e..000000000 --- a/docs/docs/doxygen-docs/cpp/_a_p_l_8h_source.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - -Alexa Auto SDK: APL.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        APL.h
        -
        -
        -
        1 /*
        2  * Copyright 2019-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_APL_APL_H
        17 #define AACE_APL_APL_H
        18 
        19 #include <chrono>
        20 
        21 #include <AACE/Core/PlatformInterface.h>
        22 
        23 #include "APLEngineInterface.h"
        24 
        27 namespace aace {
        28 namespace apl {
        29 
        43 protected:
        44  APL() = default;
        45 
        46 public:
        47  using ActivityEvent = aace::apl::APLEngineInterface::ActivityEvent;
        48 
        49  virtual ~APL();
        50 
        62  virtual void renderDocument(
        63  const std::string& jsonPayload,
        64  const std::string& token,
        65  const std::string& windowId) = 0;
        66 
        73  virtual void clearDocument(const std::string& token) = 0;
        74 
        81  virtual void executeCommands(const std::string& jsonPayload, const std::string& token) = 0;
        82 
        88  virtual void interruptCommandSequence(const std::string& token) = 0;
        89 
        100  virtual void dataSourceUpdate(
        101  const std::string& sourceType,
        102  const std::string& jsonPayload,
        103  const std::string& token) = 0;
        104 
        127  virtual void updateAPLRuntimeProperties(const std::string& properties) = 0;
        128 
        132  void clearCard();
        133 
        138 
        147  void sendUserEvent(const std::string& payload);
        148 
        159  void sendDataSourceFetchRequestEvent(const std::string& type, const std::string& payload);
        160 
        169  void sendRuntimeErrorEvent(const std::string& payload);
        170 
        176  void setAPLMaxVersion(const std::string& aplMaxVersion);
        177 
        185  void setDocumentIdleTimeout(std::chrono::milliseconds documentIdleTimeout);
        186 
        194  void renderDocumentResult(const std::string& token, const bool result, const std::string& error);
        195 
        203  void executeCommandsResult(const std::string& token, const bool result, const std::string& error);
        204 
        214  void processActivityEvent(const std::string& source, const ActivityEvent event);
        215 
        225  void sendDocumentState(const std::string& state);
        226 
        236  void sendDeviceWindowState(const std::string& state);
        237 
        256  void setPlatformProperty(const std::string& name, const std::string& value);
        257 
        264  void setEngineInterface(std::shared_ptr<APLEngineInterface> aplEngineInterface);
        265 
        266 private:
        267  std::shared_ptr<APLEngineInterface> m_aplEngineInterface;
        268 };
        269 
        270 } // namespace apl
        271 } // namespace aace
        272 
        273 #endif
        Definition: APL.h:42
        -
        void sendDataSourceFetchRequestEvent(const std::string &type, const std::string &payload)
        Definition: APL.cpp:45
        -
        void processActivityEvent(const std::string &source, const ActivityEvent event)
        Definition: APL.cpp:81
        -
        virtual void dataSourceUpdate(const std::string &sourceType, const std::string &jsonPayload, const std::string &token)=0
        -
        virtual void executeCommands(const std::string &jsonPayload, const std::string &token)=0
        -
        virtual void renderDocument(const std::string &jsonPayload, const std::string &token, const std::string &windowId)=0
        -
        void sendDocumentState(const std::string &state)
        Definition: APL.cpp:87
        -
        void sendRuntimeErrorEvent(const std::string &payload)
        Definition: APL.cpp:51
        -
        void clearAllExecuteCommands()
        Definition: APL.cpp:33
        -
        Definition: PlatformInterface.h:29
        -
        void clearCard()
        Definition: APL.cpp:27
        -
        void executeCommandsResult(const std::string &token, const bool result, const std::string &error)
        Definition: APL.cpp:75
        -
        Definition: AddressBook.h:26
        -
        void sendUserEvent(const std::string &payload)
        Definition: APL.cpp:39
        -
        virtual void interruptCommandSequence(const std::string &token)=0
        -
        void sendDeviceWindowState(const std::string &state)
        Definition: APL.cpp:93
        -
        virtual void updateAPLRuntimeProperties(const std::string &properties)=0
        -
        void setAPLMaxVersion(const std::string &aplMaxVersion)
        Definition: APL.cpp:57
        -
        void setDocumentIdleTimeout(std::chrono::milliseconds documentIdleTimeout)
        Definition: APL.cpp:63
        -
        virtual void clearDocument(const std::string &token)=0
        -
        void renderDocumentResult(const std::string &token, const bool result, const std::string &error)
        Definition: APL.cpp:69
        -
        void setPlatformProperty(const std::string &name, const std::string &value)
        Definition: APL.cpp:99
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_a_p_l_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_a_p_l_configuration_8h_source.html deleted file mode 100644 index ad99bfa8d..000000000 --- a/docs/docs/doxygen-docs/cpp/_a_p_l_configuration_8h_source.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: APLConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        APLConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2019-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_APL_APL_CONFIGURATION_H
        17 #define AACE_APL_APL_CONFIGURATION_H
        18 
        19 #include <fstream>
        20 #include <iostream>
        21 #include <string>
        22 #include <vector>
        23 #include <sstream>
        24 #include <memory>
        25 #include <chrono>
        26 
        27 #include <AACE/Core/EngineConfiguration.h>
        28 
        29 #include "AACE/APL/APLEngineInterface.h"
        30 
        33 namespace aace {
        34 namespace apl {
        35 namespace config {
        36 
        41 public:
        50  };
        51 
        55  using AlexaPresentationTimeout = std::pair<AlexaPresentationTimeoutType, std::chrono::milliseconds>;
        56 
        75  static std::shared_ptr<aace::core::config::EngineConfiguration> createAlexaPresentationTimeoutConfig(
        76  const std::vector<AlexaPresentationTimeout>& timeoutList);
        77 };
        78 
        79 } // namespace config
        80 } // namespace apl
        81 } // namespace aace
        82 
        83 #endif // AACE_APL_APL_CONFIGURATION_H
        Definition: APLConfiguration.h:40
        - -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createAlexaPresentationTimeoutConfig(const std::vector< AlexaPresentationTimeout > &timeoutList)
        -
        AlexaPresentationTimeoutType
        Definition: APLConfiguration.h:45
        -
        Definition: AddressBook.h:26
        -
        std::pair< AlexaPresentationTimeoutType, std::chrono::milliseconds > AlexaPresentationTimeout
        Definition: APLConfiguration.h:55
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_a_p_l_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_a_p_l_engine_interface_8h_source.html deleted file mode 100644 index c708dfa1b..000000000 --- a/docs/docs/doxygen-docs/cpp/_a_p_l_engine_interface_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: APLEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        APLEngineInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2019-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_APL_APL_ENGINE_INTERFACE_H
        17 #define AACE_APL_APL_ENGINE_INTERFACE_H
        18 
        19 #include <chrono>
        20 #include <string>
        21 
        22 namespace aace {
        23 namespace apl {
        24 
        25 class APLEngineInterface {
        26 public:
        27  virtual ~APLEngineInterface() = default;
        28 
        29  enum class ActivityEvent {
        30  // GUI switched to active state.
        31  ACTIVATED,
        32 
        33  // GUI become inactive.
        34  DEACTIVATED,
        35 
        36  // GUI processed one-time event (touch/scroll/etc).
        37  ONE_TIME,
        38 
        40  INTERRUPT,
        41 
        42  // Guard option for unknown received state.
        43  UNKNOWN
        44  };
        45 
        46  virtual void onClearCard() = 0;
        47  virtual void onClearAllExecuteCommands() = 0;
        48  virtual void onSendUserEvent(const std::string& payload) = 0;
        49  virtual void onSendDataSourceFetchRequestEvent(const std::string& type, const std::string& payload) = 0;
        50  virtual void onSendRuntimeErrorEvent(const std::string& payload) = 0;
        51  virtual void onSetAPLMaxVersion(const std::string& aplMaxVersion) = 0;
        52  virtual void onSetDocumentIdleTimeout(std::chrono::milliseconds documentIdleTimeout) = 0;
        53  virtual void onRenderDocumentResult(const std::string& token, bool result, const std::string& error) = 0;
        54  virtual void onExecuteCommandsResult(const std::string& token, bool result, const std::string& error) = 0;
        55  virtual void onProcessActivityEvent(const std::string& source, ActivityEvent event) = 0;
        56  virtual void onSendDocumentState(const std::string& state) = 0;
        57  virtual void onSendDeviceWindowState(const std::string& state) = 0;
        58  virtual void onSetPlatformProperty(const std::string& name, const std::string& value) = 0;
        59 };
        60 
        61 } // namespace apl
        62 } // namespace aace
        63 
        64 #endif
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_address_book_8h_source.html b/docs/docs/doxygen-docs/cpp/_address_book_8h_source.html deleted file mode 100644 index 0cca7522c..000000000 --- a/docs/docs/doxygen-docs/cpp/_address_book_8h_source.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: AddressBook.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AddressBook.h
        -
        -
        -
        1 /*
        2  * Copyright 2019-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ADDRESS_BOOK_ADDRESS_BOOK_H
        17 #define AACE_ADDRESS_BOOK_ADDRESS_BOOK_H
        18 
        21 #include <string>
        22 #include <iostream>
        23 
        24 #include "AACE/Core/PlatformInterface.h"
        25 
        26 namespace aace {
        27 namespace addressBook {
        28 
        29 class AddressBookEngineInterface;
        30 
        38 public:
        39  virtual ~AddressBook();
        40 
        41  enum class AddressBookType {
        42  // Contacts
        43  CONTACT,
        44 
        45  // Navigation Address
        46  NAVIGATION
        47  };
        48 
        54  public:
        55  virtual ~IAddressBookEntriesFactory() = default;
        65  virtual bool addName(const std::string& entryId, const std::string& name) = 0;
        66 
        77  virtual bool addName(const std::string& entryId, const std::string& firstName, const std::string& lastName) = 0;
        78 
        95  virtual bool addName(
        96  const std::string& entryId,
        97  const std::string& firstName,
        98  const std::string& lastName,
        99  const std::string& nickname,
        100  const std::string& phoneticFirstName = "",
        101  const std::string& phoneticLastName = "") = 0;
        102 
        116  virtual bool addPhone(const std::string& entryId, const std::string& label, const std::string& number) = 0;
        117 
        138  virtual bool addPostalAddress(
        139  const std::string& entryId,
        140  const std::string& label,
        141  const std::string& addressLine1,
        142  const std::string& addressLine2,
        143  const std::string& addressLine3,
        144  const std::string& city,
        145  const std::string& stateOrRegion,
        146  const std::string& districtOrCounty,
        147  const std::string& postalCode,
        148  const std::string& country,
        149  float latitudeInDegrees,
        150  float longitudeInDegrees,
        151  float accuracyInMeters) = 0;
        152 
        237  virtual bool addEntry(const std::string& payload) = 0;
        238  };
        239 
        248  bool addAddressBook(const std::string& addressBookSourceId, const std::string& name, AddressBookType type);
        249 
        256  bool removeAddressBook(const std::string& addressBookSourceId);
        257 
        267  virtual bool getEntries(
        268  const std::string& addressBookSourceId,
        269  std::weak_ptr<IAddressBookEntriesFactory> factory) = 0;
        270 
        277  void setEngineInterface(std::shared_ptr<aace::addressBook::AddressBookEngineInterface> engineInterface);
        278 
        279 private:
        280  std::shared_ptr<aace::addressBook::AddressBookEngineInterface> m_engineInterface;
        281 };
        282 
        283 inline std::ostream& operator<<(std::ostream& stream, const AddressBook::AddressBookType& type) {
        284  switch (type) {
        285  case AddressBook::AddressBookType::CONTACT:
        286  stream << "CONTACT";
        287  break;
        288  case AddressBook::AddressBookType::NAVIGATION:
        289  stream << "NAVIGATION";
        290  break;
        291  }
        292  return stream;
        293 }
        294 
        295 } // namespace addressBook
        296 } // namespace aace
        297 
        298 #endif // AACE_ADDRESS_BOOK_ADDRESS_BOOK_H
        Definition: PlatformInterface.h:29
        -
        bool addAddressBook(const std::string &addressBookSourceId, const std::string &name, AddressBookType type)
        Definition: AddressBook.cpp:29
        -
        virtual bool getEntries(const std::string &addressBookSourceId, std::weak_ptr< IAddressBookEntriesFactory > factory)=0
        - -
        Definition: AddressBook.h:26
        -
        bool removeAddressBook(const std::string &addressBookSourceId)
        Definition: AddressBook.cpp:39
        -
        Definition: AddressBook.h:37
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_address_book_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_address_book_configuration_8h_source.html deleted file mode 100644 index 2b27d81b5..000000000 --- a/docs/docs/doxygen-docs/cpp/_address_book_configuration_8h_source.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: AddressBookConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AddressBookConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ADDRESS_BOOK_ADDRESS_BOOK_CONFIGURATION_H
        17 #define AACE_ADDRESS_BOOK_ADDRESS_BOOK_CONFIGURATION_H
        18 
        19 #include "AACE/Core/EngineConfiguration.h"
        20 
        23 namespace aace {
        24 namespace addressBook {
        25 namespace config {
        26 
        31 public:
        47  static std::shared_ptr<aace::core::config::EngineConfiguration> createAddressBookConfig(
        48  bool cleanAllAddressBooksAtStart = true);
        49 };
        50 
        51 } // namespace config
        52 } // namespace addressBook
        53 } // namespace aace
        54 
        55 #endif
        static std::shared_ptr< aace::core::config::EngineConfiguration > createAddressBookConfig(bool cleanAllAddressBooksAtStart=true)
        -
        Definition: AddressBook.h:26
        -
        Definition: AddressBookConfiguration.h:30
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_address_book_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_address_book_engine_interface_8h_source.html deleted file mode 100644 index 77d090e0d..000000000 --- a/docs/docs/doxygen-docs/cpp/_address_book_engine_interface_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: AddressBookEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AddressBookEngineInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2019-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ADDRESS_BOOK_ADDRESS_BOOK_ENGINE_INTERFACE_H
        17 #define AACE_ADDRESS_BOOK_ADDRESS_BOOK_ENGINE_INTERFACE_H
        18 
        19 #include "AddressBook.h"
        20 
        21 namespace aace {
        22 namespace addressBook {
        23 
        24 class AddressBookEngineInterface {
        25 public:
        26  virtual ~AddressBookEngineInterface() = default;
        27 
        28  using AddressBookType = aace::addressBook::AddressBook::AddressBookType;
        29 
        30  virtual bool onAddAddressBook(
        31  const std::string& addressBookSourceId,
        32  const std::string& name,
        33  const AddressBookType type) = 0;
        34  virtual bool onRemoveAddressBook(const std::string& addressBookSourceId) = 0;
        35 };
        36 
        37 } // namespace addressBook
        38 } // namespace aace
        39 
        40 #endif // AACE_ADDRESS_BOOK_ADDRESS_BOOK_INTERFACE_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_alerts_8h_source.html b/docs/docs/doxygen-docs/cpp/_alerts_8h_source.html deleted file mode 100644 index 63a67377c..000000000 --- a/docs/docs/doxygen-docs/cpp/_alerts_8h_source.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - -Alexa Auto SDK: Alerts.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        Alerts.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_ALERTS_H
        17 #define AACE_ALEXA_ALERTS_H
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 #include "AlexaEngineInterfaces.h"
        21 
        24 namespace aace {
        25 namespace alexa {
        26 
        41 protected:
        42  Alerts() = default;
        43 
        44 public:
        45  virtual ~Alerts();
        46 
        50  enum class AlertState {
        51 
        55  READY,
        56 
        60  STARTED,
        61 
        65  STOPPED,
        66 
        70  SNOOZED,
        71 
        75  COMPLETED,
        76 
        80  PAST_DUE,
        81 
        86 
        91 
        95  ERROR,
        96 
        100  DELETED,
        101 
        106  };
        107 
        115  virtual void alertStateChanged(const std::string& alertToken, AlertState state, const std::string& reason) = 0;
        116 
        131  virtual void alertCreated(const std::string& alertToken, const std::string& detailedInfo) = 0;
        132 
        138  virtual void alertDeleted(const std::string& alertToken) = 0;
        139 
        143  void localStop();
        144 
        151  void removeAllAlerts();
        152 
        159  void setEngineInterface(std::shared_ptr<aace::alexa::AlertsEngineInterface> alertsEngineInterface);
        160 
        161 private:
        162  std::weak_ptr<aace::alexa::AlertsEngineInterface> m_alertsEngineInterface;
        163 };
        164 
        165 inline std::ostream& operator<<(std::ostream& stream, const Alerts::AlertState& state) {
        166  switch (state) {
        168  stream << "READY";
        169  break;
        171  stream << "STARTED";
        172  break;
        174  stream << "STOPPED";
        175  break;
        177  stream << "SNOOZED";
        178  break;
        180  stream << "COMPLETED";
        181  break;
        183  stream << "PAST_DUE";
        184  break;
        186  stream << "FOCUS_ENTERED_FOREGROUND";
        187  break;
        189  stream << "FOCUS_ENTERED_BACKGROUND";
        190  break;
        192  stream << "ERROR";
        193  break;
        195  stream << "DELETED";
        196  break;
        198  stream << "SCHEDULED_FOR_LATER";
        199  break;
        200  }
        201  return stream;
        202 }
        203 
        204 } // namespace alexa
        205 } // namespace aace
        206 
        207 #endif // AACE_ALEXA_ALERTS_H
        -
        virtual void alertDeleted(const std::string &alertToken)=0
        - -
        Definition: PlatformInterface.h:29
        - -
        AlertState
        Definition: Alerts.h:50
        - - -
        void removeAllAlerts()
        Definition: Alerts.cpp:29
        -
        Definition: AddressBook.h:26
        -
        virtual void alertCreated(const std::string &alertToken, const std::string &detailedInfo)=0
        - -
        Definition: Alerts.h:40
        -
        virtual void alertStateChanged(const std::string &alertToken, AlertState state, const std::string &reason)=0
        - -
        void localStop()
        Definition: Alerts.cpp:23
        - - - - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_alexa_client_8h_source.html b/docs/docs/doxygen-docs/cpp/_alexa_client_8h_source.html deleted file mode 100644 index e3520bdf3..000000000 --- a/docs/docs/doxygen-docs/cpp/_alexa_client_8h_source.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - -Alexa Auto SDK: AlexaClient.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AlexaClient.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_ALEXA_CLIENT_H
        17 #define AACE_ALEXA_ALEXA_CLIENT_H
        18 
        19 #include "AACE/Core/PlatformInterface.h"
        20 #include "AlexaEngineInterfaces.h"
        21 
        24 namespace aace {
        25 namespace alexa {
        26 
        36 protected:
        37  AlexaClient() = default;
        38 
        39 public:
        40  virtual ~AlexaClient();
        41 
        45  enum class DialogState {
        46 
        50  IDLE,
        51 
        55  LISTENING,
        56 
        60  EXPECTING,
        61 
        66  THINKING,
        67 
        71  SPEAKING
        72  };
        73 
        83  virtual void dialogStateChanged(DialogState state) {
        84  }
        85 
        88 
        95  virtual void authStateChanged(AuthState state, AuthError error) {
        96  }
        97 
        101  enum class ConnectionStatus {
        102 
        106  DISCONNECTED,
        107 
        111  PENDING,
        112 
        116  CONNECTED
        117  };
        118 
        123 
        127  NONE,
        128 
        132  SUCCESS,
        133 
        137  UNRECOVERABLE_ERROR,
        138 
        142  ACL_CLIENT_REQUEST,
        143 
        147  ACL_DISABLED,
        148 
        152  DNS_TIMEDOUT,
        153 
        157  CONNECTION_TIMEDOUT,
        158 
        162  CONNECTION_THROTTLED,
        163 
        167  INVALID_AUTH,
        168 
        172  PING_TIMEDOUT,
        173 
        177  WRITE_TIMEDOUT,
        178 
        182  READ_TIMEDOUT,
        183 
        187  FAILURE_PROTOCOL_ERROR,
        188 
        192  INTERNAL_ERROR,
        193 
        197  SERVER_INTERNAL_ERROR,
        198 
        202  SERVER_SIDE_DISCONNECT,
        203 
        207  SERVER_ENDPOINT_CHANGED
        208  };
        209 
        213  enum class ConnectionType {
        217  AVS,
        218 
        222  LOCAL
        223  };
        224 
        229  // Constructor
        231  ConnectionType connectionType,
        232  ConnectionStatus connectStatus,
        233  ConnectionChangedReason connectReason) :
        234  type{connectionType}, status{connectStatus}, reason{connectReason} {
        235  }
        236 
        237  ConnectionType type;
        238  ConnectionStatus status;
        240  };
        241 
        249  }
        250 
        259  ConnectionStatus status,
        261  std::vector<ConnectionStatusInfo> detailed) {
        262  }
        263 
        269  void stopForegroundActivity();
        270 
        277  void setEngineInterface(std::shared_ptr<aace::alexa::AlexaClientEngineInterface> alexaClientEngineInterface);
        278 
        279 private:
        280  std::weak_ptr<aace::alexa::AlexaClientEngineInterface> m_alexaClientEngineInterface;
        281 };
        282 
        283 inline std::ostream& operator<<(std::ostream& stream, const AlexaClient::DialogState& state) {
        284  switch (state) {
        286  stream << "IDLE";
        287  break;
        289  stream << "LISTENING";
        290  break;
        292  stream << "EXPECTING";
        293  break;
        295  stream << "THINKING";
        296  break;
        298  stream << "SPEAKING";
        299  break;
        300  }
        301  return stream;
        302 }
        303 
        304 inline std::ostream& operator<<(std::ostream& stream, const AlexaClient::ConnectionStatus& status) {
        305  switch (status) {
        307  stream << "DISCONNECTED";
        308  break;
        310  stream << "PENDING";
        311  break;
        313  stream << "CONNECTED";
        314  break;
        315  }
        316  return stream;
        317 }
        318 
        319 inline std::ostream& operator<<(std::ostream& stream, const AlexaClient::ConnectionChangedReason& reason) {
        320  switch (reason) {
        322  stream << "NONE";
        323  break;
        325  stream << "SUCCESS";
        326  break;
        328  stream << "UNRECOVERABLE_ERROR";
        329  break;
        331  stream << "ACL_CLIENT_REQUEST";
        332  break;
        334  stream << "ACL_DISABLED";
        335  break;
        337  stream << "DNS_TIMEDOUT";
        338  break;
        340  stream << "CONNECTION_TIMEDOUT";
        341  break;
        343  stream << "CONNECTION_THROTTLED";
        344  break;
        346  stream << "INVALID_AUTH";
        347  break;
        349  stream << "PING_TIMEDOUT";
        350  break;
        352  stream << "WRITE_TIMEDOUT";
        353  break;
        355  stream << "READ_TIMEDOUT";
        356  break;
        358  stream << "FAILURE_PROTOCOL_ERROR";
        359  break;
        361  stream << "INTERNAL_ERROR";
        362  break;
        364  stream << "SERVER_INTERNAL_ERROR";
        365  break;
        367  stream << "SERVER_SIDE_DISCONNECT";
        368  break;
        370  stream << "SERVER_ENDPOINT_CHANGED";
        371  break;
        372  }
        373  return stream;
        374 }
        375 
        376 inline bool operator==(
        377  const AlexaClient::ConnectionStatusInfo& connectionStatus1,
        378  const AlexaClient::ConnectionStatusInfo& connectionStatus2) {
        379  return connectionStatus1.type == connectionStatus2.type && connectionStatus1.status == connectionStatus2.status &&
        380  connectionStatus1.reason == connectionStatus2.reason;
        381 }
        382 
        383 } // namespace alexa
        384 } // namespace aace
        385 
        386 #endif // AACE_ALEXA_ALEXA_CLIENT_H
        -
        virtual void connectionStatusChanged(ConnectionStatus status, ConnectionChangedReason reason, std::vector< ConnectionStatusInfo > detailed)
        Definition: AlexaClient.h:258
        - - - - - -
        ConnectionStatus
        Definition: AlexaClient.h:101
        - -
        AuthState
        Definition: AlexaEngineInterfaces.h:258
        -
        Definition: PlatformInterface.h:29
        - -
        AuthError
        Definition: AlexaEngineInterfaces.h:284
        -
        DialogState
        Definition: AlexaClient.h:45
        -
        Definition: AddressBook.h:26
        - - - - -
        Definition: AlexaClient.h:35
        -
        virtual void dialogStateChanged(DialogState state)
        Definition: AlexaClient.h:83
        -
        virtual void connectionStatusChanged(ConnectionStatus status, ConnectionChangedReason reason)
        Definition: AlexaClient.h:248
        - - - -
        virtual void authStateChanged(AuthState state, AuthError error)
        Definition: AlexaClient.h:95
        -
        ConnectionType
        Definition: AlexaClient.h:213
        -
        ConnectionChangedReason
        Definition: AlexaClient.h:122
        - - - - - -
        void stopForegroundActivity()
        Definition: AlexaClient.cpp:28
        - - - - - - - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_alexa_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_alexa_configuration_8h_source.html deleted file mode 100644 index e638636d6..000000000 --- a/docs/docs/doxygen-docs/cpp/_alexa_configuration_8h_source.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - -Alexa Auto SDK: AlexaConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AlexaConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_ALEXA_CONFIGURATION_H
        17 #define AACE_ALEXA_ALEXA_CONFIGURATION_H
        18 
        19 #include <fstream>
        20 #include <iostream>
        21 #include <string>
        22 #include <vector>
        23 #include <sstream>
        24 #include <memory>
        25 #include <chrono>
        26 
        27 #include "AACE/Core/EngineConfiguration.h"
        28 #include "AlexaEngineInterfaces.h"
        29 
        32 namespace aace {
        33 namespace alexa {
        34 namespace config {
        35 
        40 public:
        65  static std::shared_ptr<aace::core::config::EngineConfiguration> createDeviceInfoConfig(
        66  const std::string& deviceSerialNumber,
        67  const std::string& clientId,
        68  const std::string& productId,
        69  const std::string& manufacturerName,
        70  const std::string& description);
        71 
        89  static std::shared_ptr<aace::core::config::EngineConfiguration> createAlertsConfig(
        90  const std::string& databaseFilePath);
        91 
        109  static std::shared_ptr<aace::core::config::EngineConfiguration> createNotificationsConfig(
        110  const std::string& databaseFilePath);
        111 
        129  static std::shared_ptr<aace::core::config::EngineConfiguration> createCertifiedSenderConfig(
        130  const std::string& databaseFilePath);
        131 
        149  static std::shared_ptr<aace::core::config::EngineConfiguration> createCapabilitiesDelegateConfig(
        150  const std::string& databaseFilePath);
        176  static std::shared_ptr<aace::core::config::EngineConfiguration> createCurlConfig(
        177  const std::string& certsPath,
        178  const std::string& iface = "",
        179  const std::string& proxy = "");
        180 
        204  static std::shared_ptr<aace::core::config::EngineConfiguration> createSettingsConfig(
        205  const std::string& databaseFilePath,
        206  const std::string& locale = "en-US");
        207 
        242  static std::shared_ptr<aace::core::config::EngineConfiguration> createDeviceSettingsConfig(
        243  const std::string& databaseFilePath,
        244  const std::vector<std::string>& locales = {"en-US",
        245  "en-GB",
        246  "de-DE",
        247  "en-IN",
        248  "en-CA",
        249  "ja-JP",
        250  "en-AU",
        251  "fr-FR",
        252  "it-IT",
        253  "es-ES",
        254  "es-MX",
        255  "fr-CA",
        256  "es-US",
        257  "hi-IN",
        258  "pt-BR"},
        259  const std::string& defaultLocale = "en-US",
        260  const std::string& defaultTimezone = "America/Vancouver",
        261  const std::vector<std::vector<std::string>>& localeCombinations = {});
        262 
        280  static std::shared_ptr<aace::core::config::EngineConfiguration> createMiscStorageConfig(
        281  const std::string& databaseFilePath);
        282 
        300  static std::shared_ptr<aace::core::config::EngineConfiguration> createSpeakerManagerConfig(bool enabled);
        301 
        319  static std::shared_ptr<aace::core::config::EngineConfiguration> createSystemConfig(uint32_t firmwareVersion);
        320 
        340  static std::shared_ptr<aace::core::config::EngineConfiguration> createSpeechRecognizerConfig(
        341  const std::string& encoderName);
        342 
        351 
        356 
        361 
        362  };
        363 
        367  using TemplateRuntimeTimeout = std::pair<TemplateRuntimeTimeoutType, std::chrono::milliseconds>;
        368 
        393  static std::shared_ptr<aace::core::config::EngineConfiguration> createTemplateRuntimeTimeoutConfig(
        394  const std::vector<TemplateRuntimeTimeout>& timeoutList);
        395 
        413  static std::shared_ptr<aace::core::config::EngineConfiguration> createExternalMediaPlayerConfig(
        414  const std::string& agent);
        415 
        422 
        430 
        488  static std::shared_ptr<aace::core::config::EngineConfiguration> createEqualizerControllerConfig(
        489  const std::vector<EqualizerBand>& supportedBands = {},
        490  int minLevel = -6,
        491  int maxLevel = 6,
        492  const std::vector<EqualizerBandLevel>& defaultBandLevels = {});
        493 
        511  static std::shared_ptr<aace::core::config::EngineConfiguration> createAuthProviderConfig(
        512  const std::vector<std::string>& providerNames);
        513 
        534  static std::shared_ptr<aace::core::config::EngineConfiguration> createDuckingConfig(bool duckingEnabled);
        535 };
        536 
        537 } // namespace config
        538 } // namespace alexa
        539 } // namespace aace
        540 
        541 #endif // AACE_ALEXA_ALEXA_CONFIGURATION_H
        Definition: AlexaConfiguration.h:39
        -
        TemplateRuntimeTimeoutType
        Definition: AlexaConfiguration.h:346
        - -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createMiscStorageConfig(const std::string &databaseFilePath)
        - -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createDeviceInfoConfig(const std::string &deviceSerialNumber, const std::string &clientId, const std::string &productId, const std::string &manufacturerName, const std::string &description)
        - -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createDuckingConfig(bool duckingEnabled)
        -
        aace::alexa::EqualizerControllerEngineInterface::EqualizerBandLevel EqualizerBandLevel
        Definition: AlexaConfiguration.h:429
        -
        Definition: AddressBook.h:26
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createExternalMediaPlayerConfig(const std::string &agent)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createAlertsConfig(const std::string &databaseFilePath)
        -
        std::pair< TemplateRuntimeTimeoutType, std::chrono::milliseconds > TemplateRuntimeTimeout
        Definition: AlexaConfiguration.h:367
        -
        std::pair< EqualizerBand, int > EqualizerBandLevel
        Definition: AlexaEngineInterfaces.h:528
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createSystemConfig(uint32_t firmwareVersion)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createTemplateRuntimeTimeoutConfig(const std::vector< TemplateRuntimeTimeout > &timeoutList)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createCurlConfig(const std::string &certsPath, const std::string &iface="", const std::string &proxy="")
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createSpeechRecognizerConfig(const std::string &encoderName)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createEqualizerControllerConfig(const std::vector< EqualizerBand > &supportedBands={}, int minLevel=-6, int maxLevel=6, const std::vector< EqualizerBandLevel > &defaultBandLevels={})
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createCertifiedSenderConfig(const std::string &databaseFilePath)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createSettingsConfig(const std::string &databaseFilePath, const std::string &locale="en-US")
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createAuthProviderConfig(const std::vector< std::string > &providerNames)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createSpeakerManagerConfig(bool enabled)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createDeviceSettingsConfig(const std::string &databaseFilePath, const std::vector< std::string > &locales={"en-US", "en-GB", "de-DE", "en-IN", "en-CA", "ja-JP", "en-AU", "fr-FR", "it-IT", "es-ES", "es-MX", "fr-CA", "es-US", "hi-IN", "pt-BR"}, const std::string &defaultLocale="en-US", const std::string &defaultTimezone="America/Vancouver", const std::vector< std::vector< std::string >> &localeCombinations={})
        -
        EqualizerBand
        Definition: AlexaEngineInterfaces.h:515
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createNotificationsConfig(const std::string &databaseFilePath)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createCapabilitiesDelegateConfig(const std::string &databaseFilePath)
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_alexa_connectivity_8h_source.html b/docs/docs/doxygen-docs/cpp/_alexa_connectivity_8h_source.html deleted file mode 100644 index 069a1ac6f..000000000 --- a/docs/docs/doxygen-docs/cpp/_alexa_connectivity_8h_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: AlexaConnectivity.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AlexaConnectivity.h
        -
        -
        -
        1 /*
        2  * Copyright 2020-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CONNECTIVITY_ALEXA_CONNECTIVITY_H
        17 #define AACE_CONNECTIVITY_ALEXA_CONNECTIVITY_H
        18 
        19 #include <memory>
        20 #include <string>
        21 
        22 #include <AACE/Core/PlatformInterface.h>
        23 
        24 #include "AACE/Connectivity/AlexaConnectivityEngineInterface.h"
        25 
        26 namespace aace {
        27 namespace connectivity {
        28 
        39 protected:
        40  AlexaConnectivity() = default;
        41 
        42 public:
        43  virtual ~AlexaConnectivity();
        44 
        46  using StatusCode = aace::connectivity::AlexaConnectivityEngineInterface::StatusCode;
        47 
        121  virtual std::string getConnectivityState() = 0;
        122 
        135  virtual std::string getIdentifier();
        136 
        144 
        191  void sendConnectivityEvent(const std::string& event, const std::string& token = "");
        192 
        200  virtual void connectivityEventResponse(const std::string& token, StatusCode statusCode){};
        201 
        208  void setEngineInterface(std::shared_ptr<AlexaConnectivityEngineInterface> alexaConnectivityEngineInterface);
        209 
        210 private:
        211  std::weak_ptr<AlexaConnectivityEngineInterface> m_alexaConnectivityEngineInterface;
        212 };
        213 
        214 } // namespace connectivity
        215 } // namespace aace
        216 
        217 #endif // AACE_CONNECTIVITY_ALEXA_CONNECTIVITY_H
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        Definition: AlexaConnectivity.h:38
        -
        virtual void connectivityEventResponse(const std::string &token, StatusCode statusCode)
        Definition: AlexaConnectivity.h:200
        -
        virtual std::string getConnectivityState()=0
        -
        virtual std::string getIdentifier()
        Definition: AlexaConnectivity.cpp:23
        -
        void sendConnectivityEvent(const std::string &event, const std::string &token="")
        Definition: AlexaConnectivity.cpp:34
        -
        bool connectivityStateChange()
        Definition: AlexaConnectivity.cpp:27
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_alexa_connectivity_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_alexa_connectivity_engine_interface_8h_source.html deleted file mode 100644 index 4fc534f4e..000000000 --- a/docs/docs/doxygen-docs/cpp/_alexa_connectivity_engine_interface_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: AlexaConnectivityEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AlexaConnectivityEngineInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CONNECTIVITY_ALEXA_CONNECTIVITY_ENGINE_INTERFACE_H
        17 #define AACE_CONNECTIVITY_ALEXA_CONNECTIVITY_ENGINE_INTERFACE_H
        18 
        19 #include <string>
        20 
        21 namespace aace {
        22 namespace connectivity {
        23 
        24 class AlexaConnectivityEngineInterface {
        25 public:
        26  virtual ~AlexaConnectivityEngineInterface() = default;
        27 
        31  enum class StatusCode {
        35  SUCCESS,
        36 
        40  FAIL
        41  };
        42 
        43  virtual bool onConnectivityStateChange() = 0;
        44  virtual void onSendConnectivityEvent(const std::string& event, const std::string& token) = 0;
        45 };
        46 
        47 } // namespace connectivity
        48 } // namespace aace
        49 
        50 #endif // AACE_CONNECTIVITY_ALEXA_CONNECTIVITY_ENGINE_INTERFACE_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_alexa_engine_interfaces_8h_source.html b/docs/docs/doxygen-docs/cpp/_alexa_engine_interfaces_8h_source.html deleted file mode 100644 index f87ba70fd..000000000 --- a/docs/docs/doxygen-docs/cpp/_alexa_engine_interfaces_8h_source.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - -Alexa Auto SDK: AlexaEngineInterfaces.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AlexaEngineInterfaces.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_ALEXA_ENGINE_INTERFACES_H
        17 #define AACE_ALEXA_ALEXA_ENGINE_INTERFACES_H
        18 
        19 #include <fstream>
        20 #include <iostream>
        21 #include <string>
        22 #include <vector>
        23 #include <memory>
        24 #include <limits>
        25 
        28 namespace aace {
        29 namespace alexa {
        30 
        35 public:
        36  virtual ~AlexaSpeakerEngineInterface() = default;
        37 
        41  enum class SpeakerType {
        42 
        47 
        52  };
        53 
        54  virtual void onLocalSetVolume(SpeakerType type, int8_t volume) = 0;
        55  virtual void onLocalAdjustVolume(SpeakerType type, int8_t delta) = 0;
        56  virtual void onLocalSetMute(SpeakerType type, bool mute) = 0;
        57 };
        58 
        59 inline std::ostream& operator<<(std::ostream& stream, const AlexaSpeakerEngineInterface::SpeakerType& type) {
        60  switch (type) {
        62  stream << "ALEXA_VOLUME";
        63  break;
        65  stream << "ALERTS_VOLUME";
        66  break;
        67  }
        68  return stream;
        69 }
        70 
        75 public:
        76  virtual ~SpeechRecognizerEngineInterface() = default;
        77 
        81  enum class Initiator {
        82 
        86  HOLD_TO_TALK,
        90  TAP_TO_TALK,
        94  WAKEWORD
        95  };
        96 
        97  /*
        98  * Defines an unspecified value for the speech recognizer's audio index.
        99  */
        100  static constexpr uint64_t UNSPECIFIED_INDEX = std::numeric_limits<uint64_t>::max();
        101 
        102  virtual bool onStartCapture(
        103  Initiator initiator,
        104  uint64_t keywordBegin,
        105  uint64_t keywordEnd,
        106  const std::string& keyword) = 0;
        107  virtual bool onStopCapture() = 0;
        108 };
        109 
        110 inline std::ostream& operator<<(std::ostream& stream, const SpeechRecognizerEngineInterface::Initiator& initiator) {
        111  switch (initiator) {
        113  stream << "HOLD_TO_TALK";
        114  break;
        116  stream << "TAP_TO_TALK";
        117  break;
        119  stream << "WAKEWORD";
        120  break;
        121  }
        122  return stream;
        123 }
        124 
        129 public:
        130  virtual ~AlertsEngineInterface() = default;
        131 
        132  virtual void onLocalStop() = 0;
        133  virtual void removeAllAlerts() = 0;
        134 };
        135 
        140 public:
        141  virtual ~PlaybackControllerEngineInterface() = default;
        142 
        146  enum class PlaybackButton {
        150  PLAY,
        154  PAUSE,
        158  NEXT,
        162  PREVIOUS,
        166  SKIP_FORWARD,
        170  SKIP_BACKWARD
        171  };
        172 
        176  enum class PlaybackToggle {
        180  SHUFFLE,
        184  LOOP,
        188  REPEAT,
        192  THUMBS_UP,
        196  THUMBS_DOWN
        197  };
        198 
        199  virtual void onButtonPressed(PlaybackButton button) = 0;
        200  virtual void onTogglePressed(PlaybackToggle toggle, bool action) = 0;
        201 };
        202 
        203 inline std::ostream& operator<<(std::ostream& stream, const PlaybackControllerEngineInterface::PlaybackToggle& toggle) {
        204  switch (toggle) {
        206  stream << "SHUFFLE";
        207  break;
        209  stream << "LOOP";
        210  break;
        212  stream << "REPEAT";
        213  break;
        215  stream << "THUMBS_UP";
        216  break;
        218  stream << "THUMBS_DOWN";
        219  break;
        220  }
        221  return stream;
        222 }
        223 
        224 inline std::ostream& operator<<(std::ostream& stream, const PlaybackControllerEngineInterface::PlaybackButton& button) {
        225  switch (button) {
        227  stream << "PLAY";
        228  break;
        230  stream << "PAUSE";
        231  break;
        233  stream << "NEXT";
        234  break;
        236  stream << "PREVIOUS";
        237  break;
        239  stream << "SKIP_FORWARD";
        240  break;
        242  stream << "SKIP_BACKWARD";
        243  break;
        244  }
        245  return stream;
        246 }
        247 
        252 public:
        253  virtual ~AuthProviderEngineInterface() = default;
        254 
        258  enum class AuthState {
        259 
        263  UNINITIALIZED,
        264 
        268  REFRESHED,
        269 
        273  EXPIRED,
        274 
        278  UNRECOVERABLE_ERROR
        279  };
        280 
        284  enum class AuthError {
        285 
        289  NO_ERROR,
        290 
        294  UNKNOWN_ERROR,
        295 
        299  AUTHORIZATION_FAILED,
        300 
        304  UNAUTHORIZED_CLIENT,
        305 
        309  SERVER_ERROR,
        310 
        314  INVALID_REQUEST,
        315 
        319  INVALID_VALUE,
        320 
        324  AUTHORIZATION_EXPIRED,
        325 
        329  UNSUPPORTED_GRANT_TYPE,
        330 
        334  INVALID_CODE_PAIR,
        335 
        339  AUTHORIZATION_PENDING,
        340 
        344  SLOW_DOWN,
        345 
        349  INTERNAL_ERROR,
        350 
        354  INVALID_CBL_CLIENT_ID
        355  };
        356 
        357  virtual void onAuthStateChanged(AuthState state, AuthError error) = 0;
        358 };
        359 
        360 inline std::ostream& operator<<(std::ostream& stream, const AuthProviderEngineInterface::AuthState& state) {
        361  switch (state) {
        363  stream << "UNINITIALIZED";
        364  break;
        366  stream << "REFRESHED";
        367  break;
        369  stream << "EXPIRED";
        370  break;
        372  stream << "UNRECOVERABLE_ERROR";
        373  break;
        374  }
        375  return stream;
        376 }
        377 
        378 inline std::ostream& operator<<(std::ostream& stream, const AuthProviderEngineInterface::AuthError& error) {
        379  switch (error) {
        381  stream << "NO_ERROR";
        382  break;
        384  stream << "UNKNOWN_ERROR";
        385  break;
        387  stream << "AUTHORIZATION_FAILED";
        388  break;
        390  stream << "UNAUTHORIZED_CLIENT";
        391  break;
        393  stream << "SERVER_ERROR";
        394  break;
        396  stream << "INVALID_REQUEST";
        397  break;
        399  stream << "INVALID_VALUE";
        400  break;
        402  stream << "AUTHORIZATION_EXPIRED";
        403  break;
        405  stream << "UNSUPPORTED_GRANT_TYPE";
        406  break;
        408  stream << "INVALID_CODE_PAIR";
        409  break;
        411  stream << "AUTHORIZATION_PENDING";
        412  break;
        414  stream << "SLOW_DOWN";
        415  break;
        417  stream << "INTERNAL_ERROR";
        418  break;
        420  stream << "INVALID_CBL_CLIENT_ID";
        421  break;
        422  }
        423  return stream;
        424 }
        425 
        430 public:
        431  virtual ~ExternalMediaAdapterEngineInterface() = default;
        432 
        437  public:
        439  std::string localPlayerId;
        441  std::string spiVersion;
        447  std::string validationMethod;
        453  std::vector<std::string> validationData;
        454  };
        455 
        456  virtual void onReportDiscoveredPlayers(const std::vector<DiscoveredPlayerInfo>& discoveredPlayers) = 0;
        457  virtual void onRequestToken(const std::string& localPlayerId) = 0;
        458  virtual void onLoginComplete(const std::string& localPlayerId) = 0;
        459  virtual void onLogoutComplete(const std::string& localPlayerId) = 0;
        460  virtual void onPlayerEvent(const std::string& localPlayerId, const std::string& eventName) = 0;
        461  virtual void onPlayerError(
        462  const std::string& localPlayerId,
        463  const std::string& errorName,
        464  long code,
        465  const std::string& description,
        466  bool fatal) = 0;
        467  virtual void onSetFocus(const std::string& playerId) = 0;
        468  virtual void onRemoveDiscoveredPlayer(const std::string& localPlayerId) = 0;
        469 };
        470 
        475 public:
        476  virtual ~LocalMediaSourceEngineInterface() = default;
        477 
        478  virtual void onPlayerEvent(const std::string& eventName, const std::string& sessionId) = 0;
        479  virtual void onPlayerError(
        480  const std::string& errorName,
        481  long code,
        482  const std::string& description,
        483  bool fatal,
        484  const std::string& sessionId) = 0;
        485  virtual void onSetFocus(bool focusAcquire = true) = 0;
        486 };
        487 
        492 public:
        493  virtual ~DoNotDisturbEngineInterface() = default;
        494 
        502  virtual bool onDoNotDisturbChanged(const bool doNotDisturb) = 0;
        503 };
        504 
        509 public:
        510  virtual ~EqualizerControllerEngineInterface() = default;
        511 
        515  enum class EqualizerBand {
        517  BASS,
        519  MIDRANGE,
        521  TREBLE
        522  };
        523 
        528  using EqualizerBandLevel = std::pair<EqualizerBand, int>;
        529 
        537  virtual void onLocalSetBandLevels(const std::vector<EqualizerBandLevel>& bandLevels) = 0;
        538 
        548  virtual void onLocalAdjustBandLevels(const std::vector<EqualizerBandLevel>& bandAdjustments) = 0;
        549 
        556  virtual void onLocalResetBands(const std::vector<EqualizerBand>& bands) = 0;
        557 };
        558 
        566  switch (band) {
        568  return "BASS";
        570  return "MIDRANGE";
        572  return "TREBLE";
        573  }
        574  return "UNKNOWN";
        575 }
        576 
        584 inline std::ostream& operator<<(std::ostream& stream, const EqualizerControllerEngineInterface::EqualizerBand& band) {
        585  stream << equalizerBandToString(band);
        586  return stream;
        587 }
        588 
        593 public:
        594  virtual ~AudioPlayerEngineInterface() = default;
        595 
        604  virtual int64_t onGetPlayerPosition() = 0;
        605 
        612  virtual int64_t onGetPlayerDuration() = 0;
        613 };
        614 
        619 public:
        620  virtual ~TemplateRuntimeEngineInterface() = default;
        621 
        626  virtual void onDisplayCardCleared() = 0;
        627 };
        628 
        633 public:
        634  virtual ~AlexaClientEngineInterface() = default;
        635 
        636  virtual void onStopForegroundActivity() = 0;
        637 };
        638 
        643 public:
        644  virtual ~DeviceSetupEngineInterface() = default;
        645 
        646  virtual void onSetupCompleted() = 0;
        647 };
        648 
        653 public:
        657  enum class InvocationReason {
        661  AUTOMOTIVE_STARTUP,
        662 
        668  EXPLICIT_USER_ACTION
        669  };
        670 
        678  SUCCESS,
        682  FAILED_CAN_RETRY,
        686  FAILED_TIMEOUT,
        690  ERROR
        691  };
        692 
        693 public:
        694  virtual void onRequestMediaPlayback(InvocationReason invocationReason, long long int elapsedBootTime) = 0;
        695 };
        696 
        703 inline std::string invocationReasonToString(
        705  switch (invocationReason) {
        707  return "AUTOMOTIVE_STARTUP";
        709  return "EXPLICIT_USER_ACTION";
        710  }
        711  return "UNKNOWN";
        712 }
        713 
        721 inline std::ostream& operator<<(
        722  std::ostream& stream,
        724  stream << invocationReasonToString(invocationReason);
        725  return stream;
        726 }
        727 
        732 public:
        733  virtual ~FeatureDiscoveryEngineInterface() = default;
        734 
        735  virtual bool onGetFeatures(const std::string& requestId, const std::string& discoveryRequests) = 0;
        736 };
        737 
        738 } // namespace alexa
        739 } // namespace aace
        740 
        741 #endif // AACE_ALEXA_ALEXA_ENGINE_INTERFACES_H
        Definition: AlexaEngineInterfaces.h:491
        - - - - -
        Definition: AlexaEngineInterfaces.h:632
        - - -
        Definition: AlexaEngineInterfaces.h:642
        - - -
        Definition: AlexaEngineInterfaces.h:474
        -
        Definition: AlexaEngineInterfaces.h:731
        -
        AuthState
        Definition: AlexaEngineInterfaces.h:258
        - -
        Definition: AlexaEngineInterfaces.h:74
        -
        Definition: AlexaEngineInterfaces.h:508
        -
        Definition: AlexaEngineInterfaces.h:128
        -
        AuthError
        Definition: AlexaEngineInterfaces.h:284
        -
        PlaybackButton
        Definition: AlexaEngineInterfaces.h:146
        -
        std::vector< std::string > validationData
        Definition: AlexaEngineInterfaces.h:453
        -
        Definition: AlexaEngineInterfaces.h:592
        - -
        MediaPlaybackRequestStatus
        Definition: AlexaEngineInterfaces.h:674
        - - - - -
        std::string equalizerBandToString(const EqualizerControllerEngineInterface::EqualizerBand &band)
        Definition: AlexaEngineInterfaces.h:565
        -
        Definition: AddressBook.h:26
        - - -
        Definition: AlexaEngineInterfaces.h:429
        -
        std::string localPlayerId
        The opaque token that uniquely identifies the local external player app.
        Definition: AlexaEngineInterfaces.h:439
        -
        Definition: AlexaEngineInterfaces.h:139
        - - -
        std::pair< EqualizerBand, int > EqualizerBandLevel
        Definition: AlexaEngineInterfaces.h:528
        - -
        std::string validationMethod
        Definition: AlexaEngineInterfaces.h:447
        - - - - - -
        PlaybackToggle
        Definition: AlexaEngineInterfaces.h:176
        - - -
        Definition: AlexaEngineInterfaces.h:618
        -
        std::string spiVersion
        The only spiVersion that currently exists is "1.0".
        Definition: AlexaEngineInterfaces.h:441
        - -
        Definition: AlexaEngineInterfaces.h:251
        - -
        SpeakerType
        Definition: AlexaEngineInterfaces.h:41
        - - -
        std::string invocationReasonToString(const MediaPlaybackRequestorEngineInterface::InvocationReason &invocationReason)
        Definition: AlexaEngineInterfaces.h:703
        -
        InvocationReason
        Definition: AlexaEngineInterfaces.h:657
        - - - - - - - -
        Initiator
        Definition: AlexaEngineInterfaces.h:81
        - - -
        Definition: AlexaEngineInterfaces.h:34
        -
        EqualizerBand
        Definition: AlexaEngineInterfaces.h:515
        -
        Definition: AlexaEngineInterfaces.h:652
        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_alexa_properties_8h_source.html b/docs/docs/doxygen-docs/cpp/_alexa_properties_8h_source.html deleted file mode 100644 index a33fb5d64..000000000 --- a/docs/docs/doxygen-docs/cpp/_alexa_properties_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: AlexaProperties.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AlexaProperties.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_PROPERTY_ALEXA_PROPERTIES_H
        17 #define AACE_ALEXA_PROPERTY_ALEXA_PROPERTIES_H
        18 
        21 namespace aace {
        22 namespace alexa {
        23 namespace property {
        24 
        31 static const std::string WAKEWORD_SUPPORTED = "aace.alexa.wakewordSupported";
        32 
        39 static const std::string FIRMWARE_VERSION = "aace.alexa.system.firmwareVersion";
        40 
        49 static const std::string LOCALE = "aace.alexa.setting.locale";
        50 
        56 static const std::string COUNTRY_SUPPORTED = "aace.alexa.countrySupported";
        57 
        66 static const std::string WAKEWORD_ENABLED = "aace.alexa.wakewordEnabled";
        67 
        75 static const std::string TIMEZONE = "aace.alexa.timezone";
        76 
        77 } // namespace property
        78 } // namespace alexa
        79 } // namespace aace
        80 
        81 #endif // AACE_ALEXA_PROPERTY_ALEXA_PROPERTIES_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_alexa_speaker_8h_source.html b/docs/docs/doxygen-docs/cpp/_alexa_speaker_8h_source.html deleted file mode 100644 index 46b929850..000000000 --- a/docs/docs/doxygen-docs/cpp/_alexa_speaker_8h_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: AlexaSpeaker.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AlexaSpeaker.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_ALEXA_SPEAKER_H
        17 #define AACE_ALEXA_ALEXA_SPEAKER_H
        18 
        19 #include <stdint.h>
        20 
        21 #include "AACE/Core/PlatformInterface.h"
        22 #include "AlexaEngineInterfaces.h"
        23 
        26 namespace aace {
        27 namespace alexa {
        28 
        38 protected:
        39  AlexaSpeaker() = default;
        40 
        41 public:
        42  virtual ~AlexaSpeaker();
        43 
        45 
        62  virtual void speakerSettingsChanged(SpeakerType type, bool local, int8_t volume, bool mute);
        63 
        74  void localSetVolume(SpeakerType type, int8_t volume);
        75 
        87  void localAdjustVolume(SpeakerType type, int8_t delta);
        88 
        99  void localSetMute(SpeakerType type, bool mute);
        100 
        107  void setEngineInterface(std::shared_ptr<aace::alexa::AlexaSpeakerEngineInterface> alexaSpeakerEngineInterface);
        108 
        109 private:
        110  std::weak_ptr<aace::alexa::AlexaSpeakerEngineInterface> m_alexaSpeakerEngineInterface;
        111 };
        112 
        113 } // namespace alexa
        114 } // namespace aace
        115 
        116 #endif // AACE_ALEXA_ALEXA_SPEAKER_H
        void localSetMute(SpeakerType type, bool mute)
        Definition: AlexaSpeaker.cpp:38
        -
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        void localSetVolume(SpeakerType type, int8_t volume)
        Definition: AlexaSpeaker.cpp:26
        -
        void localAdjustVolume(SpeakerType type, int8_t delta)
        Definition: AlexaSpeaker.cpp:32
        -
        SpeakerType
        Definition: AlexaEngineInterfaces.h:41
        -
        Definition: AlexaSpeaker.h:37
        -
        virtual void speakerSettingsChanged(SpeakerType type, bool local, int8_t volume, bool mute)
        Definition: AlexaSpeaker.cpp:23
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_audio_engine_interfaces_8h_source.html b/docs/docs/doxygen-docs/cpp/_audio_engine_interfaces_8h_source.html deleted file mode 100644 index 39eecf296..000000000 --- a/docs/docs/doxygen-docs/cpp/_audio_engine_interfaces_8h_source.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: AudioEngineInterfaces.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AudioEngineInterfaces.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_AUDIO_AUDIO_INTERFACES_H
        17 #define AACE_AUDIO_AUDIO_INTERFACES_H
        18 
        21 #include <iostream>
        22 
        23 namespace aace {
        24 namespace audio {
        25 
        26 class AudioInputEngineInterface {
        27 public:
        28  virtual ~AudioInputEngineInterface() = default;
        29 
        30  virtual ssize_t write(const int16_t* data, const size_t size) = 0;
        31 };
        32 
        33 class AudioOutputEngineInterface {
        34 public:
        35  virtual ~AudioOutputEngineInterface() = default;
        36 
        40  enum class MediaError {
        41 
        45  MEDIA_ERROR_UNKNOWN,
        46 
        50  MEDIA_ERROR_INVALID_REQUEST,
        51 
        55  MEDIA_ERROR_SERVICE_UNAVAILABLE,
        56 
        60  MEDIA_ERROR_INTERNAL_SERVER_ERROR,
        61 
        65  MEDIA_ERROR_INTERNAL_DEVICE_ERROR
        66  };
        67 
        71  enum class MediaState {
        72 
        76  STOPPED,
        77 
        81  PLAYING,
        82 
        86  BUFFERING
        87  };
        88 
        93  enum class FocusAction {
        98  REPORT_DUCKING_STARTED,
        103  REPORT_DUCKING_STOPPED
        104  };
        105 
        106  // media player interface
        107  virtual void onMediaStateChanged(MediaState state) = 0;
        108  virtual void onMediaError(MediaError error, const std::string& description) = 0;
        109  virtual void onAudioFocusEvent(FocusAction action) = 0;
        110 };
        111 
        112 inline std::ostream& operator<<(std::ostream& stream, const AudioOutputEngineInterface::MediaState& state) {
        113  switch (state) {
        114  case AudioOutputEngineInterface::MediaState::STOPPED:
        115  stream << "STOPPED";
        116  break;
        117  case AudioOutputEngineInterface::MediaState::PLAYING:
        118  stream << "PLAYING";
        119  break;
        120  case AudioOutputEngineInterface::MediaState::BUFFERING:
        121  stream << "BUFFERING";
        122  break;
        123  }
        124  return stream;
        125 }
        126 
        127 inline std::ostream& operator<<(std::ostream& stream, const AudioOutputEngineInterface::MediaError& error) {
        128  switch (error) {
        129  case AudioOutputEngineInterface::MediaError::MEDIA_ERROR_UNKNOWN:
        130  stream << "MEDIA_ERROR_UNKNOWN";
        131  break;
        132  case AudioOutputEngineInterface::MediaError::MEDIA_ERROR_INVALID_REQUEST:
        133  stream << "MEDIA_ERROR_INVALID_REQUEST";
        134  break;
        135  case AudioOutputEngineInterface::MediaError::MEDIA_ERROR_SERVICE_UNAVAILABLE:
        136  stream << "MEDIA_ERROR_SERVICE_UNAVAILABLE";
        137  break;
        138  case AudioOutputEngineInterface::MediaError::MEDIA_ERROR_INTERNAL_SERVER_ERROR:
        139  stream << "MEDIA_ERROR_INTERNAL_SERVER_ERROR";
        140  break;
        141  case AudioOutputEngineInterface::MediaError::MEDIA_ERROR_INTERNAL_DEVICE_ERROR:
        142  stream << "MEDIA_ERROR_INTERNAL_DEVICE_ERROR";
        143  break;
        144  }
        145  return stream;
        146 }
        147 
        148 } // namespace audio
        149 } // namespace aace
        150 
        151 #endif // AACE_AUDIO_AUDIO_INTERFACES_H
        -
        Definition: AddressBook.h:26
        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_audio_format_8h_source.html b/docs/docs/doxygen-docs/cpp/_audio_format_8h_source.html deleted file mode 100644 index cc1033355..000000000 --- a/docs/docs/doxygen-docs/cpp/_audio_format_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: AudioFormat.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AudioFormat.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_AUDIO_AUDIO_FORMAT_H
        17 #define AACE_AUDIO_AUDIO_FORMAT_H
        18 
        19 #include <iostream>
        20 #include <vector>
        21 #include <string>
        22 
        25 namespace aace {
        26 namespace audio {
        27 
        28 class AudioFormat {
        29 public:
        30  enum class Encoding { UNKNOWN, LPCM, MP3, OPUS };
        31 
        32  enum class SampleFormat { UNKNOWN, SIGNED, UNSIGNED, FLOAT };
        33 
        34  enum class Layout { UNKNOWN, NON_INTERLEAVED, INTERLEAVED };
        35 
        36  enum class Endianness { UNKNOWN, LITTLE, BIG };
        37 
        38  static AudioFormat UNKNOWN;
        39 
        40 public:
        41  AudioFormat(
        42  Encoding encoding = Encoding::UNKNOWN,
        43  SampleFormat sampleFormat = SampleFormat::UNKNOWN,
        44  Layout layout = Layout::UNKNOWN,
        45  Endianness endianness = Endianness::UNKNOWN,
        46  uint32_t sampleRate = 0,
        47  uint8_t sampleSize = 0,
        48  uint8_t channels = 0);
        49 
        56  Encoding getEncoding();
        57 
        58  SampleFormat getSampleFormat();
        59 
        60  Layout getLayout();
        61 
        62  Endianness getEndianness();
        63 
        64  uint32_t getSampleRate();
        65 
        66  uint8_t getSampleSize();
        67 
        68  uint8_t getNumChannels();
        69 
        70 private:
        71  Encoding m_encoding;
        72  SampleFormat m_sampleFormat;
        73  Layout m_layout;
        74  Endianness m_endianness;
        75  uint32_t m_sampleRate;
        76  uint8_t m_sampleSize;
        77  uint8_t m_channels;
        78 };
        79 
        80 inline std::ostream& operator<<(std::ostream& stream, const AudioFormat::Encoding& encoding) {
        81  switch (encoding) {
        82  case AudioFormat::Encoding::UNKNOWN:
        83  stream << "UNKNOWN";
        84  break;
        85  case AudioFormat::Encoding::LPCM:
        86  stream << "LPCM";
        87  break;
        88  case AudioFormat::Encoding::MP3:
        89  stream << "MP3";
        90  break;
        91  case AudioFormat::Encoding::OPUS:
        92  stream << "OPUS";
        93  break;
        94  }
        95  return stream;
        96 }
        97 
        98 inline std::ostream& operator<<(std::ostream& stream, const AudioFormat::SampleFormat& sampleFormat) {
        99  switch (sampleFormat) {
        100  case AudioFormat::SampleFormat::UNKNOWN:
        101  stream << "UNKNOWN";
        102  break;
        103  case AudioFormat::SampleFormat::SIGNED:
        104  stream << "SIGNED";
        105  break;
        106  case AudioFormat::SampleFormat::UNSIGNED:
        107  stream << "UNSIGNED";
        108  break;
        109  case AudioFormat::SampleFormat::FLOAT:
        110  stream << "FLOAT";
        111  break;
        112  }
        113  return stream;
        114 }
        115 
        116 inline std::ostream& operator<<(std::ostream& stream, const AudioFormat::Layout& layout) {
        117  switch (layout) {
        118  case AudioFormat::Layout::UNKNOWN:
        119  stream << "UNKNOWN";
        120  break;
        121  case AudioFormat::Layout::NON_INTERLEAVED:
        122  stream << "NON_INTERLEAVED";
        123  break;
        124  case AudioFormat::Layout::INTERLEAVED:
        125  stream << "INTERLEAVED";
        126  break;
        127  }
        128  return stream;
        129 }
        130 
        131 inline std::ostream& operator<<(std::ostream& stream, const AudioFormat::Endianness& endianness) {
        132  switch (endianness) {
        133  case AudioFormat::Endianness::UNKNOWN:
        134  stream << "UNKNOWN";
        135  break;
        136  case AudioFormat::Endianness::LITTLE:
        137  stream << "LITTLE";
        138  break;
        139  case AudioFormat::Endianness::BIG:
        140  stream << "BIG";
        141  break;
        142  }
        143  return stream;
        144 }
        145 
        146 } // namespace audio
        147 } // namespace aace
        148 
        149 #endif // AACE_AUDIO_AUDIO_FORMAT_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_audio_input_8h_source.html b/docs/docs/doxygen-docs/cpp/_audio_input_8h_source.html deleted file mode 100644 index 052cbfc29..000000000 --- a/docs/docs/doxygen-docs/cpp/_audio_input_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: AudioInput.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AudioInput.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_AUDIO_AUDIO_INPUT_H
        17 #define AACE_AUDIO_AUDIO_INPUT_H
        18 
        19 #include <memory>
        20 
        21 #include "AudioEngineInterfaces.h"
        22 
        25 namespace aace {
        26 namespace audio {
        27 
        28 class AudioInput {
        29 protected:
        30  AudioInput() = default;
        31 
        32 public:
        33  virtual ~AudioInput();
        34 
        49  ssize_t write(const int16_t* data, const size_t size);
        50 
        58  virtual bool startAudioInput() = 0;
        59 
        65  virtual bool stopAudioInput() = 0;
        66 
        73  void setEngineInterface(std::shared_ptr<aace::audio::AudioInputEngineInterface> audioInputEngineInterface);
        74 
        75 private:
        76  std::shared_ptr<aace::audio::AudioInputEngineInterface> m_audioInputEngineInterface;
        77 };
        78 
        79 } // namespace audio
        80 } // namespace aace
        81 
        82 #endif // AACE_AUDIO_AUDIO_INPUT_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_audio_input_provider_8h_source.html b/docs/docs/doxygen-docs/cpp/_audio_input_provider_8h_source.html deleted file mode 100644 index daa9f1990..000000000 --- a/docs/docs/doxygen-docs/cpp/_audio_input_provider_8h_source.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: AudioInputProvider.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AudioInputProvider.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_AUDIO_AUDIO_INPUT_PROVIDER_H
        17 #define AACE_AUDIO_AUDIO_INPUT_PROVIDER_H
        18 
        19 #include "AACE/Core/PlatformInterface.h"
        20 #include "AudioInput.h"
        21 
        24 namespace aace {
        25 namespace audio {
        26 
        34 protected:
        35  AudioInputProvider() = default;
        36 
        37 public:
        38  enum class AudioInputType { VOICE, COMMUNICATION, LOOPBACK };
        39 
        40  virtual ~AudioInputProvider();
        41 
        42  virtual std::shared_ptr<AudioInput> openChannel(const std::string& name, AudioInputType type) = 0;
        43 };
        44 
        45 inline std::ostream& operator<<(std::ostream& stream, const AudioInputProvider::AudioInputType& audioInputType) {
        46  switch (audioInputType) {
        47  case AudioInputProvider::AudioInputType::VOICE:
        48  stream << "VOICE";
        49  break;
        50  case AudioInputProvider::AudioInputType::COMMUNICATION:
        51  stream << "COMMUNICATION";
        52  break;
        53  case AudioInputProvider::AudioInputType::LOOPBACK:
        54  stream << "LOOPBACK";
        55  break;
        56  }
        57  return stream;
        58 }
        59 
        60 } // namespace audio
        61 } // namespace aace
        62 
        63 #endif // AACE_AUDIO_AUDIO_INPUT_PROVIDER_H
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        Definition: AudioInputProvider.h:33
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_audio_output_8h_source.html b/docs/docs/doxygen-docs/cpp/_audio_output_8h_source.html deleted file mode 100644 index a1ca75fe2..000000000 --- a/docs/docs/doxygen-docs/cpp/_audio_output_8h_source.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - -Alexa Auto SDK: AudioOutput.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AudioOutput.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_AUDIO_AUDIO_OUTPUT_H
        17 #define AACE_AUDIO_AUDIO_OUTPUT_H
        18 
        19 #include <memory>
        20 
        21 #include "AudioEngineInterfaces.h"
        22 #include "AudioStream.h"
        23 
        26 namespace aace {
        27 namespace audio {
        28 
        47 class AudioOutput {
        48 protected:
        49  AudioOutput() = default;
        50 
        51 public:
        56  using MediaState = aace::audio::AudioOutputEngineInterface::MediaState;
        57 
        62  using MediaError = aace::audio::AudioOutputEngineInterface::MediaError;
        63 
        68  using FocusAction = aace::audio::AudioOutputEngineInterface::FocusAction;
        69 
        73  static const int64_t TIME_UNKNOWN = -1;
        74 
        75  enum class MutedState {
        79  MUTED,
        80 
        84  UNMUTED
        85  };
        86 
        87  virtual ~AudioOutput();
        88 
        100  virtual bool prepare(std::shared_ptr<AudioStream> stream, bool repeating) = 0;
        101 
        112  virtual bool prepare(const std::string& url, bool repeating) = 0;
        113 
        120  virtual void mayDuck() = 0;
        121 
        130  virtual bool play() = 0;
        131 
        142  virtual bool stop() = 0;
        143 
        154  virtual bool pause() = 0;
        155 
        164  virtual bool resume() = 0;
        165 
        172  virtual bool startDucking() = 0;
        173 
        180  virtual bool stopDucking() = 0;
        181 
        190  virtual int64_t getPosition() = 0;
        191 
        200  virtual bool setPosition(int64_t position) = 0;
        201 
        208  virtual int64_t getDuration() = 0;
        209 
        215  virtual int64_t getNumBytesBuffered();
        216 
        226  virtual bool volumeChanged(float volume) = 0;
        227 
        237  virtual bool mutedStateChanged(MutedState state) = 0;
        238 
        246  void mediaStateChanged(MediaState state);
        247 
        255  void mediaError(MediaError error, const std::string& description = "");
        256 
        262  void audioFocusEvent(FocusAction action);
        263 
        270  void setEngineInterface(std::shared_ptr<aace::audio::AudioOutputEngineInterface> audioOutputEngineInterface);
        271 
        272 private:
        273  std::weak_ptr<aace::audio::AudioOutputEngineInterface> m_audioOutputEngineInterface;
        274 };
        275 
        276 inline std::ostream& operator<<(std::ostream& stream, const AudioOutput::MutedState& state) {
        277  switch (state) {
        279  stream << "MUTED";
        280  break;
        282  stream << "UNMUTED";
        283  break;
        284  }
        285  return stream;
        286 }
        287 
        288 inline std::ostream& operator<<(std::ostream& stream, const AudioOutput::FocusAction& action) {
        289  switch (action) {
        290  case AudioOutput::FocusAction::REPORT_DUCKING_STARTED:
        291  stream << "REPORT_DUCKING_STARTED";
        292  break;
        293  case AudioOutput::FocusAction::REPORT_DUCKING_STOPPED:
        294  stream << "REPORT_DUCKING_STOPPED";
        295  break;
        296  }
        297  return stream;
        298 }
        299 
        300 } // namespace audio
        301 } // namespace aace
        302 
        303 #endif // AACE_AUDIO_AUDIO_OUTPUT_H
        MutedState
        Definition: AudioOutput.h:75
        -
        virtual bool resume()=0
        -
        virtual bool prepare(std::shared_ptr< AudioStream > stream, bool repeating)=0
        - -
        virtual bool play()=0
        -
        virtual int64_t getNumBytesBuffered()
        Definition: AudioOutput.cpp:23
        -
        Definition: AudioOutput.h:47
        -
        void mediaError(MediaError error, const std::string &description="")
        Definition: AudioOutput.cpp:33
        -
        static const int64_t TIME_UNKNOWN
        Definition: AudioOutput.h:73
        -
        Definition: AddressBook.h:26
        -
        virtual void mayDuck()=0
        -
        virtual bool volumeChanged(float volume)=0
        -
        virtual bool pause()=0
        -
        virtual bool mutedStateChanged(MutedState state)=0
        -
        virtual bool stopDucking()=0
        -
        void mediaStateChanged(MediaState state)
        Definition: AudioOutput.cpp:27
        - -
        virtual bool setPosition(int64_t position)=0
        -
        virtual int64_t getDuration()=0
        -
        virtual bool stop()=0
        -
        virtual bool startDucking()=0
        -
        virtual int64_t getPosition()=0
        -
        void audioFocusEvent(FocusAction action)
        Definition: AudioOutput.cpp:44
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_audio_output_provider_8h_source.html b/docs/docs/doxygen-docs/cpp/_audio_output_provider_8h_source.html deleted file mode 100644 index 64efebea4..000000000 --- a/docs/docs/doxygen-docs/cpp/_audio_output_provider_8h_source.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: AudioOutputProvider.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AudioOutputProvider.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_AUDIO_AUDIO_OUTPUT_PROVIDER_H
        17 #define AACE_AUDIO_AUDIO_OUTPUT_PROVIDER_H
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 #include "AudioOutput.h"
        21 
        24 namespace aace {
        25 namespace audio {
        26 
        34 public:
        35  enum class AudioOutputType { TTS, MUSIC, NOTIFICATION, ALARM, EARCON, COMMUNICATION, RINGTONE };
        36 
        37 protected:
        38  AudioOutputProvider() = default;
        39 
        40 public:
        41  virtual ~AudioOutputProvider();
        42 
        43  virtual std::shared_ptr<AudioOutput> openChannel(const std::string& name, AudioOutputType type) = 0;
        44 };
        45 
        46 inline std::ostream& operator<<(std::ostream& stream, const AudioOutputProvider::AudioOutputType& audioOutputType) {
        47  switch (audioOutputType) {
        48  case AudioOutputProvider::AudioOutputType::TTS:
        49  stream << "TTS";
        50  break;
        51  case AudioOutputProvider::AudioOutputType::MUSIC:
        52  stream << "MUSIC";
        53  break;
        54  case AudioOutputProvider::AudioOutputType::NOTIFICATION:
        55  stream << "NOTIFICATION";
        56  break;
        57  case AudioOutputProvider::AudioOutputType::ALARM:
        58  stream << "ALARM";
        59  break;
        60  case AudioOutputProvider::AudioOutputType::EARCON:
        61  stream << "EARCON";
        62  break;
        63  case AudioOutputProvider::AudioOutputType::COMMUNICATION:
        64  stream << "COMMUNICATION";
        65  break;
        66  case AudioOutputProvider::AudioOutputType::RINGTONE:
        67  stream << "RINGTONE";
        68  break;
        69  }
        70  return stream;
        71 }
        72 
        73 } // namespace audio
        74 } // namespace aace
        75 
        76 #endif // AACE_AUDIO_AUDIO_OUTPUT_PROVIDER_H
        Definition: PlatformInterface.h:29
        -
        Definition: AudioOutputProvider.h:33
        -
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_audio_player_8h_source.html b/docs/docs/doxygen-docs/cpp/_audio_player_8h_source.html deleted file mode 100644 index ddb0ed891..000000000 --- a/docs/docs/doxygen-docs/cpp/_audio_player_8h_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: AudioPlayer.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AudioPlayer.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_AUDIO_PLAYER_H
        17 #define AACE_ALEXA_AUDIO_PLAYER_H
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 #include "AlexaEngineInterfaces.h"
        21 #include "PlayerActivity.h"
        22 
        25 namespace aace {
        26 namespace alexa {
        27 
        46 protected:
        47  AudioPlayer() = default;
        48 
        49 public:
        54 
        58  static const int64_t TIME_UNKNOWN = -1;
        59 
        60  virtual ~AudioPlayer();
        61 
        67  virtual void playerActivityChanged(PlayerActivity state) {
        68  }
        69 
        78  int64_t getPlayerPosition();
        79 
        86  int64_t getPlayerDuration();
        87 
        94  void setEngineInterface(std::shared_ptr<aace::alexa::AudioPlayerEngineInterface> audioPlayerEngineInterface);
        95 
        96 private:
        97  std::weak_ptr<aace::alexa::AudioPlayerEngineInterface> m_audioPlayerEngineInterface;
        98 };
        99 
        100 } // namespace alexa
        101 } // namespace aace
        102 
        103 #endif // AACE_ALEXA_AUDIO_PLAYER_H
        int64_t getPlayerDuration()
        Definition: AudioPlayer.cpp:31
        -
        int64_t getPlayerPosition()
        Definition: AudioPlayer.cpp:23
        -
        PlayerActivity
        Definition: PlayerActivity.h:36
        -
        Definition: AudioPlayer.h:45
        -
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        static const int64_t TIME_UNKNOWN
        Definition: AudioPlayer.h:58
        -
        virtual void playerActivityChanged(PlayerActivity state)
        Definition: AudioPlayer.h:67
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_audio_stream_8h_source.html b/docs/docs/doxygen-docs/cpp/_audio_stream_8h_source.html deleted file mode 100644 index 5fa157b4f..000000000 --- a/docs/docs/doxygen-docs/cpp/_audio_stream_8h_source.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: AudioStream.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AudioStream.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_AUDIO_AUDIO_STREAM_H
        17 #define AACE_AUDIO_AUDIO_STREAM_H
        18 
        19 #include <iostream>
        20 #include <vector>
        21 #include <string>
        22 
        23 #include "AudioFormat.h"
        24 
        27 namespace aace {
        28 namespace audio {
        29 
        30 class AudioStreamProperty;
        31 
        32 class AudioStream {
        33 public:
        34  using AudioFormat = aace::audio::AudioFormat;
        35  using Encoding = AudioFormat::Encoding;
        36 
        40  enum class MediaType {
        42  MPEG,
        43 
        45  WAV,
        46 
        48  UNKNOWN
        49  };
        50 
        51  virtual ~AudioStream();
        52 
        62  virtual ssize_t read(char* data, const size_t size) = 0;
        63 
        71  virtual bool isClosed() = 0;
        72 
        81  virtual Encoding getEncoding();
        82 
        88  virtual AudioFormat getAudioFormat();
        89 
        96  virtual MediaType getMediaType();
        97 
        103  virtual std::vector<AudioStreamProperty> getProperties();
        104 };
        105 
        110 public:
        117  AudioStreamProperty(const std::string& key, const std::string& value) : m_key{key}, m_value{value} {
        118  }
        119 
        126  *this = other;
        127  }
        128 
        134  AudioStreamProperty& operator=(const AudioStreamProperty& other) = default;
        135 
        139  std::string getKey() {
        140  return m_key;
        141  }
        142 
        146  std::string getValue() {
        147  return m_value;
        148  }
        149 
        150 private:
        151  std::string m_key;
        152  std::string m_value;
        153 };
        154 
        155 } // namespace audio
        156 } // namespace aace
        157 
        158 #endif // AACE_AUDIO_AUDIO_STREAM_H
        AudioStreamProperty(const std::string &key, const std::string &value)
        Definition: AudioStream.h:117
        -
        Definition: AudioStream.h:109
        -
        AudioStreamProperty(const AudioStreamProperty &other)
        Definition: AudioStream.h:125
        -
        Definition: AddressBook.h:26
        -
        std::string getValue()
        Definition: AudioStream.h:146
        -
        std::string getKey()
        Definition: AudioStream.h:139
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_auth_provider_8h_source.html b/docs/docs/doxygen-docs/cpp/_auth_provider_8h_source.html deleted file mode 100644 index 58ef01b79..000000000 --- a/docs/docs/doxygen-docs/cpp/_auth_provider_8h_source.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: AuthProvider.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AuthProvider.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_AUTH_PROVIDER_H
        17 #define AACE_ALEXA_AUTH_PROVIDER_H
        18 
        19 #include <string>
        20 
        21 #include "AACE/Core/PlatformInterface.h"
        22 #include "AlexaEngineInterfaces.h"
        23 
        26 namespace aace {
        27 namespace alexa {
        28 
        39 protected:
        40  AuthProvider() = default;
        41 
        42 public:
        50 
        58 
        59  virtual ~AuthProvider();
        60 
        68  virtual std::string getAuthToken() = 0;
        69 
        76  virtual AuthState getAuthState() = 0;
        77 
        86  virtual void authFailure(const std::string& token){};
        87 
        95  void authStateChanged(AuthState authState, AuthError authError);
        96 
        103  void setEngineInterface(std::shared_ptr<AuthProviderEngineInterface> authProviderEngineInterface);
        104 
        105 private:
        106  std::weak_ptr<AuthProviderEngineInterface> m_authProviderEngineInterface;
        107 };
        108 
        109 } // namespace alexa
        110 } // namespace aace
        111 
        112 #endif // AACE_ALEXA_AUTH_PROVIDER_H
        virtual std::string getAuthToken()=0
        -
        AuthState
        Definition: AlexaEngineInterfaces.h:258
        -
        Definition: PlatformInterface.h:29
        -
        AuthError
        Definition: AlexaEngineInterfaces.h:284
        -
        Definition: AddressBook.h:26
        -
        void authStateChanged(AuthState authState, AuthError authError)
        Definition: AuthProvider.cpp:23
        -
        virtual AuthState getAuthState()=0
        -
        Definition: AuthProvider.h:38
        -
        virtual void authFailure(const std::string &token)
        Definition: AuthProvider.h:86
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_authorization_8h_source.html b/docs/docs/doxygen-docs/cpp/_authorization_8h_source.html deleted file mode 100644 index 240feb5e4..000000000 --- a/docs/docs/doxygen-docs/cpp/_authorization_8h_source.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - -Alexa Auto SDK: Authorization.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        Authorization.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_AUTHORIZATION_AUTHORIZATION_H
        17 #define AACE_AUTHORIZATION_AUTHORIZATION_H
        18 
        19 #include <iostream>
        20 #include <string>
        21 
        22 #include <AACE/Core/PlatformInterface.h>
        23 
        24 #include "AuthorizationEngineInterface.h"
        27 namespace aace {
        28 namespace authorization {
        29 
        45 protected:
        46  Authorization() = default;
        47 
        48 public:
        51 
        58  virtual void eventReceived(const std::string& service, const std::string& event) = 0;
        59 
        66  virtual void authorizationStateChanged(const std::string& service, AuthorizationState state) = 0;
        67 
        75  virtual void authorizationError(
        76  const std::string& service,
        77  const std::string& error,
        78  const std::string& message) = 0;
        79 
        88  virtual std::string getAuthorizationData(const std::string& service, const std::string& key) = 0;
        89 
        98  virtual void setAuthorizationData(const std::string& service, const std::string& key, const std::string& data) = 0;
        99 
        108  void startAuthorization(const std::string& service, const std::string& data);
        109 
        116  void cancelAuthorization(const std::string& service);
        117 
        124  void sendEvent(const std::string& service, const std::string& event);
        125 
        132  void logout(const std::string& service);
        133 
        140  void setEngineInterface(std::shared_ptr<AuthorizationEngineInterface> authorizationEngineInterface);
        141 
        145  virtual ~Authorization();
        146 
        147 private:
        148  std::weak_ptr<AuthorizationEngineInterface> m_authorizationEngineInterface;
        149 };
        150 
        151 } // namespace authorization
        152 } // namespace aace
        153 
        154 #endif // AACE_AUTHORIZATION_AUTHORIZATION_H
        void logout(const std::string &service)
        Definition: Authorization.cpp:41
        -
        virtual void setAuthorizationData(const std::string &service, const std::string &key, const std::string &data)=0
        -
        Definition: PlatformInterface.h:29
        -
        Definition: Authorization.h:44
        -
        Definition: AddressBook.h:26
        -
        virtual std::string getAuthorizationData(const std::string &service, const std::string &key)=0
        -
        void cancelAuthorization(const std::string &service)
        Definition: Authorization.cpp:29
        -
        void startAuthorization(const std::string &service, const std::string &data)
        Definition: Authorization.cpp:23
        -
        AuthorizationState
        Describes the authorization states.
        Definition: AuthorizationEngineInterface.h:34
        -
        virtual void eventReceived(const std::string &service, const std::string &event)=0
        -
        virtual void authorizationError(const std::string &service, const std::string &error, const std::string &message)=0
        - -
        void sendEvent(const std::string &service, const std::string &event)
        Definition: Authorization.cpp:35
        -
        virtual void authorizationStateChanged(const std::string &service, AuthorizationState state)=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_authorization_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_authorization_engine_interface_8h_source.html deleted file mode 100644 index a9cbcf770..000000000 --- a/docs/docs/doxygen-docs/cpp/_authorization_engine_interface_8h_source.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - -Alexa Auto SDK: AuthorizationEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        AuthorizationEngineInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_AUTHORIZATION_AUTHORIZATION_ENGINE_INTERFACE_H
        17 #define AACE_AUTHORIZATION_AUTHORIZATION_ENGINE_INTERFACE_H
        18 
        21 #include <iostream>
        22 
        23 namespace aace {
        24 namespace authorization {
        25 
        30 public:
        31  virtual ~AuthorizationEngineInterface() = default;
        32 
        34  enum class AuthorizationState {
        37 
        40 
        42  AUTHORIZED,
        43  };
        44 
        54  virtual void onStartAuthorization(const std::string& service, const std::string& data) = 0;
        55 
        63  virtual void onCancelAuthorization(const std::string& service) = 0;
        64 
        71  virtual void onSendEvent(const std::string& service, const std::string& event) = 0;
        72 
        80  virtual void onLogout(const std::string& service) = 0;
        81 };
        82 
        83 inline std::ostream& operator<<(std::ostream& stream, const AuthorizationEngineInterface::AuthorizationState& status) {
        84  switch (status) {
        86  stream << "UNAUTHORIZED";
        87  break;
        89  stream << "AUTHORIZING";
        90  break;
        92  stream << "AUTHORIZED";
        93  break;
        94  }
        95  return stream;
        96 }
        97 
        98 } // namespace authorization
        99 } // namespace aace
        100 
        101 #endif // AACE_AUTHORIZATION_AUTHORIZATION_ENGINE_INTERFACE_H
        virtual void onSendEvent(const std::string &service, const std::string &event)=0
        - -
        virtual void onLogout(const std::string &service)=0
        -
        Definition: AddressBook.h:26
        - - -
        AuthorizationState
        Describes the authorization states.
        Definition: AuthorizationEngineInterface.h:34
        -
        virtual void onCancelAuthorization(const std::string &service)=0
        -
        Definition: AuthorizationEngineInterface.h:29
        -
        virtual void onStartAuthorization(const std::string &service, const std::string &data)=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_bluetooth_engine_interfaces_8h_source.html b/docs/docs/doxygen-docs/cpp/_bluetooth_engine_interfaces_8h_source.html deleted file mode 100644 index 68f43fde6..000000000 --- a/docs/docs/doxygen-docs/cpp/_bluetooth_engine_interfaces_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: BluetoothEngineInterfaces.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        BluetoothEngineInterfaces.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_BLUETOOTH_BLUETOOTH_ENGINE_INTERFACES_H
        17 #define AACE_BLUETOOTH_BLUETOOTH_ENGINE_INTERFACES_H
        18 
        19 #include <string>
        20 #include <memory>
        21 #include <vector>
        22 
        23 #include "ByteArray.h"
        24 
        25 namespace aace {
        26 namespace bluetooth {
        27 
        28 class GATTServerEngineInterface {
        29 public:
        30  virtual ~GATTServerEngineInterface() = default;
        31 
        32  enum class ConnectionState { CONNECTED, DISCONNECTED };
        33 
        34  virtual void onConnectionStateChanged(const std::string& device, ConnectionState state) = 0;
        35  virtual bool onRequestCharacteristic(
        36  const std::string& device,
        37  int requestId,
        38  const std::string& serviceId,
        39  const std::string& characteristicId,
        40  ByteArrayPtr data) = 0;
        41  virtual bool onRequestDescriptor(
        42  const std::string& device,
        43  int requestId,
        44  const std::string& serviceId,
        45  const std::string& characteristicId,
        46  const std::string& descriptorId,
        47  ByteArrayPtr data) = 0;
        48 };
        49 
        50 } // namespace bluetooth
        51 } // namespace aace
        52 
        53 #endif
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_bluetooth_provider_8h_source.html b/docs/docs/doxygen-docs/cpp/_bluetooth_provider_8h_source.html deleted file mode 100644 index 22a73b78e..000000000 --- a/docs/docs/doxygen-docs/cpp/_bluetooth_provider_8h_source.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: BluetoothProvider.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        BluetoothProvider.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_BLUETOOTH_PROVIDER_H
        17 #define AACE_BLUETOOTH_PROVIDER_H
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 
        21 #include "GATTServer.h"
        22 #include "BluetoothServerSocket.h"
        23 
        24 namespace aace {
        25 namespace bluetooth {
        26 
        31 protected:
        32  BluetoothProvider() = default;
        33 
        34 public:
        35  ~BluetoothProvider() override;
        36 
        42  virtual std::shared_ptr<GATTServer> createGATTServer();
        43 
        52  virtual std::shared_ptr<BluetoothServerSocket> listenUsingRfcomm(const std::string& name, const std::string& uuid);
        53 
        60  virtual std::shared_ptr<BluetoothServerSocket> listenUsingiAP2(const std::string& protocol);
        61 };
        62 
        63 } // namespace bluetooth
        64 } // namespace aace
        65 
        66 #endif
        virtual std::shared_ptr< BluetoothServerSocket > listenUsingRfcomm(const std::string &name, const std::string &uuid)
        Definition: BluetoothProvider.cpp:27
        -
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        virtual std::shared_ptr< BluetoothServerSocket > listenUsingiAP2(const std::string &protocol)
        Definition: BluetoothProvider.cpp:33
        -
        virtual std::shared_ptr< GATTServer > createGATTServer()
        Definition: BluetoothProvider.cpp:23
        -
        Definition: BluetoothProvider.h:30
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_bluetooth_server_socket_8h_source.html b/docs/docs/doxygen-docs/cpp/_bluetooth_server_socket_8h_source.html deleted file mode 100644 index d30fa72ab..000000000 --- a/docs/docs/doxygen-docs/cpp/_bluetooth_server_socket_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: BluetoothServerSocket.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        BluetoothServerSocket.h
        -
        -
        -
        1 /*
        2  * Copyright 2020-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_BLUETOOTH_BLUETOOTH_SERVER_SOCKET_H
        17 #define AACE_BLUETOOTH_BLUETOOTH_SERVER_SOCKET_H
        18 
        19 #include <memory>
        20 
        21 #include "BluetoothSocket.h"
        22 
        23 namespace aace {
        24 namespace bluetooth {
        25 
        26 class BluetoothServerSocket {
        27 protected:
        28  BluetoothServerSocket() = default;
        29 
        30 public:
        31  virtual ~BluetoothServerSocket() = default;
        32 
        38  virtual std::shared_ptr<BluetoothSocket> accept() = 0;
        39 
        43  virtual void close() = 0;
        44 };
        45 
        46 } // namespace bluetooth
        47 } // namespace aace
        48 
        49 #endif
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_bluetooth_socket_8h_source.html b/docs/docs/doxygen-docs/cpp/_bluetooth_socket_8h_source.html deleted file mode 100644 index 017ad7ddd..000000000 --- a/docs/docs/doxygen-docs/cpp/_bluetooth_socket_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: BluetoothSocket.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        BluetoothSocket.h
        -
        -
        -
        1 /*
        2  * Copyright 2020-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_BLUETOOTH_BLUETOOTH_SOCKET_H
        17 #define AACE_BLUETOOTH_BLUETOOTH_SOCKET_H
        18 
        19 #include <cstdint>
        20 #include <cstddef>
        21 
        22 namespace aace {
        23 namespace bluetooth {
        24 
        25 class BluetoothSocket {
        26 protected:
        27  BluetoothSocket() = default;
        28 
        29 public:
        30  virtual ~BluetoothSocket() = default;
        31 
        40  virtual int read(uint8_t* data, size_t off, size_t len) = 0;
        41 
        49  virtual void write(uint8_t* data, size_t off, size_t len) = 0;
        50 
        54  virtual void close() = 0;
        55 };
        56 
        57 } // namespace bluetooth
        58 } // namespace aace
        59 
        60 #endif
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_byte_array_8h_source.html b/docs/docs/doxygen-docs/cpp/_byte_array_8h_source.html deleted file mode 100644 index b8c94c18e..000000000 --- a/docs/docs/doxygen-docs/cpp/_byte_array_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: ByteArray.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        ByteArray.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_BLUETOOTH_BYTE_ARRAY_H
        17 #define AACE_BLUETOOTH_BYTE_ARRAY_H
        18 
        19 #include <vector>
        20 #include <memory>
        21 
        22 namespace aace {
        23 namespace bluetooth {
        24 
        25 using ByteArray = std::vector<uint8_t>;
        26 using ByteArrayPtr = std::unique_ptr<std::vector<uint8_t>>;
        27 
        28 ByteArrayPtr createByteArray(size_t size = 0, bool resize = true);
        29 
        30 } // namespace bluetooth
        31 } // namespace aace
        32 
        33 #endif
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_c_b_l_8h_source.html b/docs/docs/doxygen-docs/cpp/_c_b_l_8h_source.html deleted file mode 100644 index 7ad230857..000000000 --- a/docs/docs/doxygen-docs/cpp/_c_b_l_8h_source.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - -Alexa Auto SDK: CBL.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        CBL.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CBL_CBL_H
        17 #define AACE_CBL_CBL_H
        18 
        19 #include <iostream>
        20 #include "CBLEngineInterface.h"
        21 #include "AACE/Core/PlatformInterface.h"
        22 
        23 namespace aace {
        24 namespace cbl {
        25 
        35 protected:
        36  CBL() = default;
        37 
        38 public:
        44  enum class CBLState {
        45 
        49  STARTING,
        50 
        55 
        60 
        65 
        70 
        74  STOPPING
        75  };
        76 
        82  enum class CBLStateChangedReason {
        83 
        87  SUCCESS,
        88 
        92  ERROR,
        93 
        97  TIMEOUT,
        98 
        102  CODE_PAIR_EXPIRED,
        103 
        107  AUTHORIZATION_EXPIRED,
        108 
        112  NONE
        113  };
        114 
        115  virtual ~CBL();
        116 
        122  virtual void cblStateChanged(
        123  CBLState state,
        124  CBLStateChangedReason reason,
        125  const std::string& url,
        126  const std::string& code) = 0;
        127 
        133  virtual void clearRefreshToken() = 0;
        134 
        140  virtual void setRefreshToken(const std::string& refreshToken) = 0;
        141 
        147  virtual std::string getRefreshToken() = 0;
        148 
        155  virtual void setUserProfile(const std::string& name, const std::string& email) = 0;
        156 
        162  void start();
        163 
        169  void cancel();
        170 
        178  void reset();
        179 
        186  void setEngineInterface(std::shared_ptr<CBLEngineInterface> cblEngineInterface);
        187 
        188 private:
        189  std::shared_ptr<CBLEngineInterface> m_cblEngineInterface;
        190 };
        191 
        192 inline std::ostream& operator<<(std::ostream& stream, const CBL::CBLState& state) {
        193  switch (state) {
        195  stream << "STARTING";
        196  break;
        198  stream << "REQUESTING_CODE_PAIR";
        199  break;
        201  stream << "CODE_PAIR_RECEIVED";
        202  break;
        204  stream << "REFRESHING_TOKEN";
        205  break;
        207  stream << "REQUESTING_TOKEN";
        208  break;
        210  stream << "STOPPING";
        211  break;
        212  }
        213  return stream;
        214 }
        215 
        216 inline std::ostream& operator<<(std::ostream& stream, const CBL::CBLStateChangedReason& reason) {
        217  switch (reason) {
        219  stream << "SUCCESS";
        220  break;
        222  stream << "ERROR";
        223  break;
        225  stream << "TIMEOUT";
        226  break;
        228  stream << "CODE_PAIR_EXPIRED";
        229  break;
        231  stream << "AUTHORIZATION_EXPIRED";
        232  break;
        234  stream << "NONE";
        235  break;
        236  }
        237  return stream;
        238 }
        239 
        240 } // namespace cbl
        241 } // namespace aace
        242 
        243 #endif
        - - -
        virtual std::string getRefreshToken()=0
        -
        void cancel()
        Definition: CBL.cpp:33
        -
        CBLStateChangedReason
        Definition: CBL.h:82
        -
        virtual void cblStateChanged(CBLState state, CBLStateChangedReason reason, const std::string &url, const std::string &code)=0
        -
        Definition: PlatformInterface.h:29
        -
        virtual void clearRefreshToken()=0
        - -
        virtual void setRefreshToken(const std::string &refreshToken)=0
        - - - -
        Definition: AddressBook.h:26
        -
        virtual void setUserProfile(const std::string &name, const std::string &email)=0
        - -
        CBLState
        Definition: CBL.h:44
        - -
        void reset()
        Definition: CBL.cpp:39
        - - - -
        void start()
        Definition: CBL.cpp:27
        -
        Definition: CBL.h:34
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_c_b_l_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_c_b_l_configuration_8h_source.html deleted file mode 100644 index 97287b03c..000000000 --- a/docs/docs/doxygen-docs/cpp/_c_b_l_configuration_8h_source.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: CBLConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        CBLConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CBL_CBL_CONFIGURATION_H
        17 #define AACE_CBL_CBL_CONFIGURATION_H
        18 
        19 #include "AACE/Core/EngineConfiguration.h"
        20 
        23 namespace aace {
        24 namespace cbl {
        25 namespace config {
        26 
        31 public:
        49  static std::shared_ptr<aace::core::config::EngineConfiguration> createCBLConfig(
        50  const int seconds = 60,
        51  bool enableUserProfile = false);
        52 
        70  static std::shared_ptr<aace::core::config::EngineConfiguration> createCBLUserProfileConfig(bool enableUserProfile);
        71 };
        72 
        73 } // namespace config
        74 } // namespace cbl
        75 } // namespace aace
        76 
        77 #endif
        static std::shared_ptr< aace::core::config::EngineConfiguration > createCBLConfig(const int seconds=60, bool enableUserProfile=false)
        -
        Definition: AddressBook.h:26
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createCBLUserProfileConfig(bool enableUserProfile)
        -
        Definition: CBLConfiguration.h:30
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_c_b_l_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_c_b_l_engine_interface_8h_source.html deleted file mode 100644 index ed65215f2..000000000 --- a/docs/docs/doxygen-docs/cpp/_c_b_l_engine_interface_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: CBLEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        CBLEngineInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CBL_CBL_ENGINE_INTERFACE_H
        17 #define AACE_CBL_CBL_ENGINE_INTERFACE_H
        18 
        19 namespace aace {
        20 namespace cbl {
        21 
        22 class CBLEngineInterface {
        23 public:
        24  virtual ~CBLEngineInterface() = default;
        25 
        26  virtual void onStart() = 0;
        27  virtual void onCancel() = 0;
        28  virtual void onReset() = 0;
        29 };
        30 
        31 } // namespace cbl
        32 } // namespace aace
        33 
        34 #endif
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_car_control_8h_source.html b/docs/docs/doxygen-docs/cpp/_car_control_8h_source.html deleted file mode 100644 index de276a0e4..000000000 --- a/docs/docs/doxygen-docs/cpp/_car_control_8h_source.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - -Alexa Auto SDK: CarControl.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        CarControl.h
        -
        -
        -
        1 /*
        2  * Copyright 2019-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CAR_CONTROL_CAR_CONTROL_H
        17 #define AACE_CAR_CONTROL_CAR_CONTROL_H
        18 
        19 #include <iostream>
        20 
        21 #include "AACE/Core/PlatformInterface.h"
        22 
        25 namespace aace {
        26 namespace carControl {
        27 
        50 public:
        54  CarControl() = default;
        55 
        59  virtual ~CarControl();
        60 
        70  virtual bool turnPowerControllerOn(const std::string& endpointId);
        80  virtual bool turnPowerControllerOff(const std::string& endpointId);
        92  virtual bool isPowerControllerOn(const std::string& endpointId, bool& isOn);
        93 
        104  virtual bool turnToggleControllerOn(const std::string& endpointId, const std::string& controllerId);
        115  virtual bool turnToggleControllerOff(const std::string& endpointId, const std::string& controllerId);
        129  virtual bool isToggleControllerOn(const std::string& endpointId, const std::string& controllerId, bool& isOn);
        130 
        143  virtual bool setRangeControllerValue(const std::string& endpointId, const std::string& controllerId, double value);
        156  virtual bool adjustRangeControllerValue(
        157  const std::string& endpointId,
        158  const std::string& controllerId,
        159  double delta);
        172  virtual bool getRangeControllerValue(const std::string& endpointId, const std::string& controllerId, double& value);
        173 
        186  virtual bool setModeControllerValue(
        187  const std::string& endpointId,
        188  const std::string& controllerId,
        189  const std::string& value);
        202  virtual bool adjustModeControllerValue(const std::string& endpointId, const std::string& controllerId, int delta);
        215  virtual bool getModeControllerValue(
        216  const std::string& endpointId,
        217  const std::string& controllerId,
        218  std::string& value);
        219 };
        220 
        221 } // namespace carControl
        222 } // namespace aace
        223 
        224 #endif // AACE_CAR_CONTROL_CAR_CONTROL_H
        virtual bool setRangeControllerValue(const std::string &endpointId, const std::string &controllerId, double value)
        Definition: CarControl.cpp:56
        -
        virtual bool turnToggleControllerOff(const std::string &endpointId, const std::string &controllerId)
        Definition: CarControl.cpp:45
        -
        Definition: PlatformInterface.h:29
        -
        virtual bool adjustRangeControllerValue(const std::string &endpointId, const std::string &controllerId, double delta)
        Definition: CarControl.cpp:60
        -
        Definition: AddressBook.h:26
        -
        virtual bool getRangeControllerValue(const std::string &endpointId, const std::string &controllerId, double &value)
        Definition: CarControl.cpp:67
        -
        virtual bool getModeControllerValue(const std::string &endpointId, const std::string &controllerId, std::string &value)
        Definition: CarControl.cpp:85
        -
        virtual bool setModeControllerValue(const std::string &endpointId, const std::string &controllerId, const std::string &value)
        Definition: CarControl.cpp:74
        -
        virtual bool adjustModeControllerValue(const std::string &endpointId, const std::string &controllerId, int delta)
        Definition: CarControl.cpp:81
        - -
        Definition: CarControl.h:49
        - -
        virtual bool isPowerControllerOn(const std::string &endpointId, bool &isOn)
        Definition: CarControl.cpp:34
        -
        virtual bool turnPowerControllerOn(const std::string &endpointId)
        Definition: CarControl.cpp:26
        -
        virtual bool isToggleControllerOn(const std::string &endpointId, const std::string &controllerId, bool &isOn)
        Definition: CarControl.cpp:49
        -
        virtual bool turnPowerControllerOff(const std::string &endpointId)
        Definition: CarControl.cpp:30
        -
        virtual bool turnToggleControllerOn(const std::string &endpointId, const std::string &controllerId)
        Definition: CarControl.cpp:41
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_car_control_assets_8h_source.html b/docs/docs/doxygen-docs/cpp/_car_control_assets_8h_source.html deleted file mode 100644 index c25202770..000000000 --- a/docs/docs/doxygen-docs/cpp/_car_control_assets_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: CarControlAssets.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        CarControlAssets.h
        -
        -
        -
        1 /*
        2  * Copyright 2019-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CAR_CONTROL_CAR_CONTROL_ASSETS_H
        17 #define AACE_CAR_CONTROL_CAR_CONTROL_ASSETS_H
        18 
        21 #include <string>
        22 
        23 namespace aace {
        24 namespace carControl {
        25 namespace assets {
        26 namespace alexa {
        27 
        28 namespace device {
        29 static const std::string AIR_CONDITIONER = "Alexa.Automotive.DeviceName.AirConditioner";
        30 static const std::string AMBIENT_LIGHT = "Alexa.Automotive.DeviceName.AmbientLight";
        31 static const std::string AVM_CAMERA = "Alexa.Automotive.DeviceName.AVMCamera";
        32 static const std::string ARMREST = "Alexa.Automotive.DeviceName.Armrest";
        33 static const std::string CABIN_LIGHT = "Alexa.Automotive.DeviceName.CabinLight";
        34 static const std::string CAMERA_360 = "Alexa.Automotive.DeviceName.360Camera";
        35 static const std::string CAR = "Alexa.Automotive.DeviceName.Car";
        36 static const std::string CHARGE_DOOR = "Alexa.Automotive.DeviceName.ChargeDoor";
        37 static const std::string CLIMATE_CONTROL = "Alexa.Automotive.DeviceName.ClimateControl";
        38 static const std::string COOLER = "Alexa.Automotive.DeviceName.Cooler";
        39 static const std::string CUP_HOLDER = "Alexa.Automotive.DeviceName.CupHolder";
        40 static const std::string DISPLAY = "Alexa.Automotive.DeviceName.Display";
        41 static const std::string DISPLAY_SCREEN = "Alexa.Automotive.DeviceName.DisplayScreen";
        42 static const std::string DOME_LIGHT = "Alexa.Automotive.DeviceName.DomeLight";
        43 static const std::string FAN = "Alexa.Automotive.DeviceName.Fan";
        44 static const std::string FOG_LIGHT = "Alexa.Automotive.DeviceName.FogLight";
        45 static const std::string GAS_DOOR = "Alexa.Automotive.DeviceName.GasDoor";
        46 static const std::string HAZARD_LIGHTS = "Alexa.Automotive.DeviceName.HazardLights";
        47 static const std::string HEADLIGHT = "Alexa.Automotive.DeviceName.Headlight";
        48 static const std::string HEATER = "Alexa.Automotive.DeviceName.Heater";
        49 static const std::string HIGH_BEAM = "Alexa.Automotive.DeviceName.HighBeam";
        50 static const std::string HOOD = "Alexa.Automotive.DeviceName.Hood";
        51 static const std::string HUD = "Alexa.Automotive.DeviceName.HUD";
        52 static const std::string INFO_SCREEN = "Alexa.Automotive.DeviceName.InfoScreen";
        53 static const std::string LIGHT = "Alexa.Automotive.DeviceName.Light";
        54 static const std::string MOONROOF = "Alexa.Automotive.DeviceName.Moonroof";
        55 static const std::string PARKING_LIGHTS = "Alexa.Automotive.DeviceName.ParkingLights";
        56 static const std::string READING_LIGHT = "Alexa.Automotive.DeviceName.ReadingLight";
        57 static const std::string SEAT = "Alexa.Automotive.DeviceName.Seat";
        58 static const std::string SEAT_HEATER = "Alexa.Automotive.DeviceName.SeatHeater";
        59 static const std::string STEERING_WHEEL = "Alexa.Automotive.DeviceName.SteeringWheel";
        60 static const std::string SUNROOF = "Alexa.Automotive.DeviceName.Sunroof";
        61 static const std::string SUNSHADE = "Alexa.Automotive.DeviceName.Sunshade";
        62 static const std::string TAILGATE = "Alexa.Automotive.DeviceName.Tailgate";
        63 static const std::string TRUNK = "Alexa.Automotive.DeviceName.Trunk";
        64 static const std::string TRUNK_LIGHT = "Alexa.Automotive.DeviceName.TrunkLight";
        65 static const std::string VENT = "Alexa.Automotive.DeviceName.Vent";
        66 static const std::string WINDOW = "Alexa.Automotive.DeviceName.Window";
        67 static const std::string WINDSHIELD = "Alexa.Automotive.DeviceName.Windshield";
        68 static const std::string WINDSHIELD_WIPERS = "Alexa.Automotive.DeviceName.WindshieldWipers";
        69 } // namespace device
        70 
        71 namespace location {
        72 static const std::string ALL = "Alexa.Automotive.Location.All";
        73 static const std::string DRIVER = "Alexa.Automotive.Location.Driver";
        74 static const std::string DRIVER_ROW = "Alexa.Automotive.Location.DriverRow";
        75 static const std::string FIRST_ROW = "Alexa.Automotive.Location.FirstRow";
        76 static const std::string FOURTH_ROW = "Alexa.Automotive.Location.FourthRow";
        77 static const std::string FRONT = "Alexa.Automotive.Location.Front";
        78 static const std::string FRONT_LEFT = "Alexa.Automotive.Location.FrontLeft";
        79 static const std::string FRONT_RIGHT = "Alexa.Automotive.Location.FrontRight";
        80 static const std::string LEFT = "Alexa.Automotive.Location.Left";
        81 static const std::string PASSENGER = "Alexa.Automotive.Location.Passenger";
        82 static const std::string PASSENGER_ROW = "Alexa.Automotive.Location.PassengerRow";
        83 static const std::string REAR = "Alexa.Automotive.Location.Rear";
        84 static const std::string REAR_LEFT = "Alexa.Automotive.Location.RearLeft";
        85 static const std::string REAR_RIGHT = "Alexa.Automotive.Location.RearRight";
        86 static const std::string REAR_DRIVER = "Alexa.Automotive.Location.RearDriver";
        87 static const std::string REAR_PASSENGER = "Alexa.Automotive.Location.RearPassenger";
        88 static const std::string RIGHT = "Alexa.Automotive.Location.Right";
        89 static const std::string SECOND_ROW = "Alexa.Automotive.Location.SecondRow";
        90 static const std::string THIRD_ROW = "Alexa.Automotive.Location.ThirdRow";
        91 } // namespace location
        92 
        93 namespace setting {
        94 static const std::string AIR_RECIRCULATION = "Alexa.Automotive.Setting.AirRecirculation";
        95 static const std::string AUTO = "Alexa.Automotive.Setting.Auto";
        96 static const std::string AUTO_BRAKE_HOLD = "Alexa.Automotive.Setting.AutoBrakeHold";
        97 static const std::string BLUETOOTH_PAGE = "Alexa.Automotive.Setting.BluetoothPage";
        98 static const std::string BODY_VENTS = "Alexa.Automotive.Setting.BodyVents";
        99 static const std::string BRIGHTNESS = "Alexa.Automotive.Setting.Brightness";
        100 static const std::string CHILD_DOOR_LOCK = "Alexa.Automotive.Setting.ChildDoorLock";
        101 static const std::string CLIMATE_SYNC = "Alexa.Automotive.Setting.ClimateSync";
        102 static const std::string COLOR = "Alexa.Automotive.Setting.Color";
        103 static const std::string COOLING = "Alexa.Automotive.Setting.Cooling";
        104 static const std::string CRUISE_CONTROL = "Alexa.Automotive.Setting.CruiseControl";
        105 static const std::string DEFOG = "Alexa.Automotive.Setting.Defog";
        106 static const std::string DEFROST = "Alexa.Automotive.Setting.Defrost";
        107 static const std::string DIRECTION = "Alexa.Automotive.Setting.Direction";
        108 static const std::string DRIVE_MODE = "Alexa.Automotive.Setting.DriveMode";
        109 static const std::string ECONOMY = "Alexa.Automotive.Setting.Economy";
        110 static const std::string FAN_SPEED = "Alexa.Automotive.Setting.FanSpeed";
        111 static const std::string FLOOR_VENTS = "Alexa.Automotive.Setting.FloorVents";
        112 static const std::string HEAT = "Alexa.Automotive.Setting.Heat";
        113 static const std::string HEIGHT = "Alexa.Automotive.Setting.Height";
        114 static const std::string HILL_ASSIST = "Alexa.Automotive.Setting.HillAssist";
        115 static const std::string INFO_PAGE = "Alexa.Automotive.Setting.InfoPage";
        116 static const std::string INTENSITY = "Alexa.Automotive.Setting.Intensity";
        117 static const std::string LANE_ASSIST = "Alexa.Automotive.Setting.LaneAssist";
        118 static const std::string MANUAL = "Alexa.Automotive.Setting.Manual";
        119 static const std::string MAX_AIR_CONDITIONING = "Alexa.Automotive.Setting.MaxAirConditioning";
        120 static const std::string MIX_VENTS = "Alexa.Automotive.Setting.MixVents";
        121 static const std::string MODE = "Alexa.Automotive.Setting.Mode";
        122 static const std::string NAVIGATION_PAGE = "Alexa.Automotive.Setting.NavigationPage";
        123 static const std::string OPENNESS = "Alexa.Automotive.Setting.Openness";
        124 static const std::string PARKING_BRAKE = "Alexa.Automotive.Setting.ParkingBrake";
        125 static const std::string POSITION = "Alexa.Automotive.Setting.Position";
        126 static const std::string PRE_COLLISION_BRAKE = "Alexa.Automotive.Setting.PreCollisionBrake";
        127 static const std::string RADIO_PAGE = "Alexa.Automotive.Setting.RadioPage";
        128 static const std::string SATELLITE_RADIO_PAGE = "Alexa.Automotive.Setting.SatelliteRadioPage";
        129 static const std::string SERVICE_PAGE = "Alexa.Automotive.Setting.ServicePage";
        130 static const std::string SETTINGS_PAGE = "Alexa.Automotive.Setting.SettingsPage";
        131 static const std::string SPEED = "Alexa.Automotive.Setting.Speed";
        132 static const std::string STORED_POSITION = "Alexa.Automotive.Setting.StoredPosition";
        133 static const std::string SWAY_WARNING = "Alexa.Automotive.Setting.SwayWarning";
        134 static const std::string TEMPERATURE = "Alexa.Automotive.Setting.Temperature";
        135 static const std::string TOWING_MODE = "Alexa.Automotive.Setting.TowingMode";
        136 static const std::string TRACTION_CONTROL = "Alexa.Automotive.Setting.TractionControl";
        137 static const std::string WINDOW_LOCK = "Alexa.Automotive.Setting.WindowLock";
        138 static const std::string WINDSHIELD_VENTS = "Alexa.Automotive.Setting.WindshieldVents";
        139 } // namespace setting
        140 
        141 namespace unit {
        142 static const std::string CELSIUS = "Alexa.Unit.Temperature.Celsius";
        143 static const std::string FAHRENHEIT = "Alexa.Unit.Temperature.Fahrenheit";
        144 static const std::string PERCENT = "Alexa.Unit.Percent";
        145 } // namespace unit
        146 
        147 namespace color {
        148 static const std::string BLUE = "Alexa.Automotive.Value.Blue";
        149 static const std::string GREEN = "Alexa.Automotive.Value.Green";
        150 static const std::string INDIGO = "Alexa.Automotive.Value.Indigo";
        151 static const std::string ORANGE = "Alexa.Automotive.Value.Orange";
        152 static const std::string RED = "Alexa.Automotive.Value.Red";
        153 static const std::string VIOLET = "Alexa.Automotive.Value.Violet";
        154 static const std::string WHITE = "Alexa.Automotive.Value.White";
        155 static const std::string YELLOW = "Alexa.Automotive.Value.Yellow";
        156 } // namespace color
        157 
        158 namespace value {
        159 static const std::string ALERTS_PAGE = "Alexa.Automotive.Value.AlertsPage";
        160 static const std::string BLUETOOTH_PAGE = "Alexa.Automotive.Value.BluetoothPage";
        161 static const std::string CLOSED = "Alexa.Automotive.Value.Closed";
        162 static const std::string COMFORT = "Alexa.Automotive.Value.Comfort";
        163 static const std::string CONTACTS_PAGE = "Alexa.Automotive.Value.ContactsPage";
        164 static const std::string CONTROLS_PAGE = "Alexa.Automotive.Value.ControlsPage";
        165 static const std::string DRIVER_VIEW = "Alexa.Automotive.Value.DriverView";
        166 static const std::string DYNAMIC_COORDINATOR_PAGE = "Alexa.Automotive.Value.DynamicCoordinatorPage";
        167 static const std::string FOUR_WD_AUTO = "Alexa.Automotive.Value.4WDAuto";
        168 static const std::string FOUR_WD_HIGH = "Alexa.Automotive.Value.4WDHigh";
        169 static const std::string FOUR_WD_LOW = "Alexa.Automotive.Value.4WDLow";
        170 static const std::string FRONT_VIEW = "Alexa.Automotive.Value.FrontView";
        171 static const std::string FULL = "Alexa.Automotive.Value.Full";
        172 static const std::string GPS_PAGE = "Alexa.Automotive.Value.GPSPage";
        173 static const std::string HALF = "Alexa.Automotive.Value.Half";
        174 static const std::string HIGH = "Alexa.Automotive.Value.High";
        175 static const std::string HOME_PAGE = "Alexa.Automotive.Value.HomePage";
        176 static const std::string INFORMATION_PAGE = "Alexa.Automotive.Value.InformationPage";
        177 static const std::string INSIDE_AIR = "Alexa.Automotive.Value.InsideAir";
        178 static const std::string INTERMITTENT = "Alexa.Automotive.Value.Intermittent";
        179 static const std::string LOW = "Alexa.Automotive.Value.Low";
        180 static const std::string MAXIMUM = "Alexa.Automotive.Value.Maximum";
        181 static const std::string MEDIUM = "Alexa.Automotive.Value.Medium";
        182 static const std::string MINIMUM = "Alexa.Automotive.Value.Minimum";
        183 static const std::string MULTIMEDIA_PAGE = "Alexa.Automotive.Value.MultimediaPage";
        184 static const std::string MUSIC_PAGE = "Alexa.Automotive.Value.MusicPage";
        185 static const std::string NAVIGATION_PAGE = "Alexa.Automotive.Value.NavigationPage";
        186 static const std::string NORMAL = "Alexa.Automotive.Value.Normal";
        187 static const std::string NOTIFICATIONS_PAGE = "Alexa.Automotive.Value.NotificationsPage";
        188 static const std::string OPEN = "Alexa.Automotive.Value.Open";
        189 static const std::string OPTIMAL = "Alexa.Automotive.Value.Optimal";
        190 static const std::string OUTSIDE_AIR = "Alexa.Automotive.Value.OutsideAir";
        191 static const std::string PASSENGER_VIEW = "Alexa.Automotive.Value.PassengerView";
        192 static const std::string PERFORMANCE_PAGE = "Alexa.Automotive.Value.PerformancePage";
        193 static const std::string POSITION_ONE = "Alexa.Automotive.Value.PositionOne";
        194 static const std::string POSITION_THREE = "Alexa.Automotive.Value.PositionThree";
        195 static const std::string POSITION_TWO = "Alexa.Automotive.Value.PositionTwo";
        196 static const std::string RADIO_PAGE = "Alexa.Automotive.Value.RadioPage";
        197 static const std::string REAR_VIEW = "Alexa.Automotive.Value.RearView";
        198 static const std::string SATELLITE_RADIO_PAGE = "Alexa.Automotive.Value.SatelliteRadioPage";
        199 static const std::string SERVICE_PAGE = "Alexa.Automotive.Value.ServicePage";
        200 static const std::string SETTINGS_PAGE = "Alexa.Automotive.Value.SettingsPage";
        201 static const std::string SPORT = "Alexa.Automotive.Value.Sport";
        202 static const std::string SPORT_PLUS = "Alexa.Automotive.Value.SportPlus";
        203 static const std::string TELEPHONE_PAGE = "Alexa.Automotive.Value.TelephonePage";
        204 static const std::string VEHICLE_STATUS_PAGE = "Alexa.Automotive.Value.VehicleStatusPage";
        205 } // namespace value
        206 
        207 } // namespace alexa
        208 } // namespace assets
        209 } // namespace carControl
        210 } // namespace aace
        211 
        212 #endif // AACE_CAR_CONTROL_CAR_CONTROL_ASSETS_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_car_control_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_car_control_configuration_8h_source.html deleted file mode 100644 index cdd78ea8b..000000000 --- a/docs/docs/doxygen-docs/cpp/_car_control_configuration_8h_source.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: CarControlConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        CarControlConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2019-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CAR_CONTROL_CAR_CONTROL_CONFIGURATION_H
        17 #define AACE_CAR_CONTROL_CAR_CONTROL_CONFIGURATION_H
        18 
        21 #include <string>
        22 #include <vector>
        23 #include "AACE/CarControl/CarControl.h"
        24 #include "AACE/Core/EngineConfiguration.h"
        25 
        26 namespace aace {
        27 namespace carControl {
        28 namespace config {
        29 
        39 namespace action {
        41 static const std::string CLOSE = "Alexa.Actions.Close";
        43 static const std::string LOWER = "Alexa.Actions.Lower";
        45 static const std::string OPEN = "Alexa.Actions.Open";
        47 static const std::string RAISE = "Alexa.Actions.Raise";
        48 } // namespace action
        49 
        227 public:
        231  static std::shared_ptr<CarControlConfiguration> create();
        232 
        246  virtual CarControlConfiguration& createEndpoint(const std::string& endpointId) = 0;
        247 
        262  virtual CarControlConfiguration& addAssetId(const std::string& assetId) = 0;
        263 
        273  virtual CarControlConfiguration& addPowerController(bool retrievable) = 0;
        274 
        287  virtual CarControlConfiguration& addToggleController(const std::string& instanceId, bool retrievable) = 0;
        288 
        301  virtual CarControlConfiguration& addActionTurnOn(const std::vector<std::string>& actions) = 0;
        302 
        315  virtual CarControlConfiguration& addActionTurnOff(const std::vector<std::string>& actions) = 0;
        316 
        333  virtual CarControlConfiguration& addRangeController(
        334  const std::string& instanceId,
        335  bool retrievable,
        336  double minimum,
        337  double maximum,
        338  double precision,
        339  const std::string& unit = "") = 0;
        340 
        348  virtual CarControlConfiguration& addPreset(double value) = 0;
        349 
        364  virtual CarControlConfiguration& addActionSetRange(const std::vector<std::string>& actions, double value) = 0;
        365 
        380  virtual CarControlConfiguration& addActionAdjustRange(const std::vector<std::string>& actions, double delta) = 0;
        381 
        395  virtual CarControlConfiguration& addModeController(
        396  const std::string& instanceId,
        397  bool retrievable,
        398  bool ordered) = 0;
        399 
        408  virtual CarControlConfiguration& addValue(const std::string& value) = 0;
        409 
        424  virtual CarControlConfiguration& addActionSetMode(
        425  const std::vector<std::string>& actions,
        426  const std::string& value) = 0;
        427 
        444  virtual CarControlConfiguration& addActionAdjustMode(const std::vector<std::string>& actions, int delta) = 0;
        445 
        453  virtual CarControlConfiguration& createZone(const std::string& zoneId) = 0;
        454 
        464  virtual CarControlConfiguration& addMembers(const std::vector<std::string>& endpointIds) = 0;
        465 
        475  virtual CarControlConfiguration& setDefaultZone(const std::string& zoneId) = 0;
        476 
        489  virtual CarControlConfiguration& addDefaultAssetsPath(const std::string& path) = 0;
        490 
        498  virtual CarControlConfiguration& addCustomAssetsPath(const std::string& path) = 0;
        499 };
        500 
        501 } // namespace config
        502 } // namespace carControl
        503 } // namespace aace
        504 
        505 #endif // AACE_CAR_CONTROL_CAR_CONTROL_CONFIGURATION_H
        Definition: AddressBook.h:26
        -
        Definition: EngineConfiguration.h:35
        -
        Definition: CarControlConfiguration.h:226
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_core_properties_8h_source.html b/docs/docs/doxygen-docs/cpp/_core_properties_8h_source.html deleted file mode 100644 index d40f927c2..000000000 --- a/docs/docs/doxygen-docs/cpp/_core_properties_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: CoreProperties.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        CoreProperties.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CORE_PROPERTY_CORE_PROPERTIES_H
        17 #define AACE_CORE_PROPERTY_CORE_PROPERTIES_H
        18 
        21 namespace aace {
        22 namespace core {
        23 namespace property {
        24 
        30 static const std::string VERSION = "aace.core.version";
        31 
        32 } // namespace property
        33 } // namespace core
        34 } // namespace aace
        35 
        36 #endif // AACE_CORE_PROPERTY_CORE_PROPERTIES_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_custom_domain_8h_source.html b/docs/docs/doxygen-docs/cpp/_custom_domain_8h_source.html deleted file mode 100644 index 4de0777b6..000000000 --- a/docs/docs/doxygen-docs/cpp/_custom_domain_8h_source.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - -Alexa Auto SDK: CustomDomain.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        CustomDomain.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CUSTOMDOMAIN_CUSTOMDOMAIN_H
        17 #define AACE_CUSTOMDOMAIN_CUSTOMDOMAIN_H
        18 
        19 #include <string>
        20 
        21 #include "AACE/Core/PlatformInterface.h"
        22 #include "CustomDomainEngineInterface.h"
        23 
        24 namespace aace {
        25 namespace customDomain {
        26 
        27 class CustomDomain : public aace::core::PlatformInterface {
        28 protected:
        29  CustomDomain() = default;
        30 
        31 public:
        32  virtual ~CustomDomain();
        33 
        34  using ResultType = aace::customDomain::CustomDomainEngineInterface::ResultType;
        35 
        54  virtual void handleDirective(
        55  const std::string& directiveNamespace,
        56  const std::string& name,
        57  const std::string& payload,
        58  const std::string& correlationToken,
        59  const std::string& messageId) = 0;
        60 
        74  virtual void cancelDirective(
        75  const std::string& directiveNamespace,
        76  const std::string& name,
        77  const std::string& correlationToken,
        78  const std::string& messageId) = 0;
        79 
        112  virtual std::string getContext(const std::string& contextNamespace) = 0;
        113 
        122  void reportDirectiveHandlingResult(
        123  const std::string& directiveNamespace,
        124  const std::string& messageId,
        125  ResultType result);
        126 
        161  void sendEvent(
        162  const std::string& eventNamespace,
        163  const std::string& name,
        164  const std::string& payload,
        165  bool requiresContext,
        166  const std::string& correlationToken = "",
        167  const std::string& customContext = "");
        168 
        175  void setEngineInterface(std::shared_ptr<CustomDomainEngineInterface> customDomainEngineInterface);
        176 
        177 private:
        178  std::shared_ptr<CustomDomainEngineInterface> m_customDomainEngineInterface;
        179 };
        180 
        181 } // namespace customDomain
        182 } // namespace aace
        183 
        184 #endif // AACE_CUSTOMDOMAIN_CUSTOMDOMAIN_H
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_custom_domain_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_custom_domain_engine_interface_8h_source.html deleted file mode 100644 index 815f0d2f2..000000000 --- a/docs/docs/doxygen-docs/cpp/_custom_domain_engine_interface_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: CustomDomainEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        CustomDomainEngineInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CUSTOMDOMAIN_CUSTOMDOMAINENGINEINTERFACE_H
        17 #define AACE_CUSTOMDOMAIN_CUSTOMDOMAINENGINEINTERFACE_H
        18 
        19 namespace aace {
        20 namespace customDomain {
        21 
        22 class CustomDomainEngineInterface {
        23 public:
        27  enum class ResultType {
        31  UNEXPECTED_INFORMATION_RECEIVED,
        32 
        36  UNSUPPORTED_OPERATION,
        37 
        41  INTERNAL_ERROR,
        42 
        46  SUCCESS
        47  };
        48 
        49  virtual void onSendEvent(
        50  const std::string& eventNamespace,
        51  const std::string& name,
        52  const std::string& payload,
        53  bool requiresContext,
        54  const std::string& correlationToken,
        55  const std::string& customContext) = 0;
        56 
        57  virtual void onReportDirectiveHandlingResult(
        58  const std::string& directiveNamespace,
        59  const std::string& messageId,
        60  ResultType result) = 0;
        61 };
        62 
        63 } // namespace customDomain
        64 } // namespace aace
        65 
        66 #endif // AACE_CUSTOMDOMAIN_CUSTOMDOMAINENGINEINTERFACE_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_device_setup_8h_source.html b/docs/docs/doxygen-docs/cpp/_device_setup_8h_source.html deleted file mode 100644 index 11a7488fd..000000000 --- a/docs/docs/doxygen-docs/cpp/_device_setup_8h_source.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: DeviceSetup.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        DeviceSetup.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_DEVICESETUP_H_
        17 #define AACE_ALEXA_DEVICESETUP_H_
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 
        21 #include "AACE/Alexa/AlexaEngineInterfaces.h"
        22 
        25 namespace aace {
        26 namespace alexa {
        27 
        42 protected:
        43  DeviceSetup() = default;
        44 
        45 public:
        46  virtual ~DeviceSetup();
        47 
        51  enum class StatusCode {
        52 
        56  SUCCESS,
        57 
        61  FAIL
        62  };
        63 
        67  virtual void setupCompletedResponse(StatusCode statusCode) = 0;
        68 
        74  void setupCompleted();
        75 
        82  void setEngineInterface(std::shared_ptr<DeviceSetupEngineInterface> deviceSetupEngineInterface);
        83 
        84 private:
        85  std::weak_ptr<DeviceSetupEngineInterface> m_deviceSetupEngineInterface;
        86 };
        87 
        91 inline std::string deviceSetupStatusCodeToString(const DeviceSetup::StatusCode& statusCode) {
        92  switch (statusCode) {
        94  return "SUCCESS";
        96  return "FAIL";
        97  }
        98  return "UNKNOWN";
        99 }
        100 
        101 inline std::ostream& operator<<(std::ostream& stream, const DeviceSetup::StatusCode& statusCode) {
        102  stream << deviceSetupStatusCodeToString(statusCode);
        103  return stream;
        104 }
        105 
        106 } // namespace alexa
        107 } // namespace aace
        108 
        109 #endif // AACE_ALEXA_DEVICESETUP_H_
        -
        Definition: DeviceSetup.h:41
        -
        Definition: PlatformInterface.h:29
        -
        virtual void setupCompletedResponse(StatusCode statusCode)=0
        -
        Definition: AddressBook.h:26
        -
        std::string deviceSetupStatusCodeToString(const DeviceSetup::StatusCode &statusCode)
        Definition: DeviceSetup.h:91
        -
        StatusCode
        Definition: DeviceSetup.h:51
        - -
        void setupCompleted()
        Definition: DeviceSetup.cpp:23
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_device_usage_8h_source.html b/docs/docs/doxygen-docs/cpp/_device_usage_8h_source.html deleted file mode 100644 index d6fa87769..000000000 --- a/docs/docs/doxygen-docs/cpp/_device_usage_8h_source.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: DeviceUsage.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        DeviceUsage.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_DEVICEUSAGE_DEVICEUSAGE_H_
        17 #define AACE_DEVICEUSAGE_DEVICEUSAGE_H_
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 
        21 #include "AACE/DeviceUsage/DeviceUsageEngineInterfaces.h"
        22 
        25 namespace aace {
        26 namespace deviceUsage {
        27 
        34 protected:
        35  DeviceUsage() = default;
        36 
        37 public:
        38  virtual ~DeviceUsage();
        39 
        67  void reportNetworkDataUsage(const std::string& usage);
        68 
        75  void setEngineInterface(std::shared_ptr<DeviceUsageEngineInterface> deviceUsageEngineInterface);
        76 
        77 private:
        78  std::weak_ptr<DeviceUsageEngineInterface> m_deviceUsageEngineInterface;
        79 };
        80 
        81 } // namespace deviceUsage
        82 } // namespace aace
        83 
        84 #endif // AACE_DEVICEUSAGE_DEVICEUSAGE_H_
        Definition: PlatformInterface.h:29
        -
        Definition: DeviceUsage.h:33
        -
        Definition: AddressBook.h:26
        -
        void reportNetworkDataUsage(const std::string &usage)
        Definition: DeviceUsage.cpp:23
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_device_usage_engine_interfaces_8h_source.html b/docs/docs/doxygen-docs/cpp/_device_usage_engine_interfaces_8h_source.html deleted file mode 100644 index f436abed6..000000000 --- a/docs/docs/doxygen-docs/cpp/_device_usage_engine_interfaces_8h_source.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - -Alexa Auto SDK: DeviceUsageEngineInterfaces.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        DeviceUsageEngineInterfaces.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_DEVICEUSAGE_DEVICEUSAGEENGINEINTERFACES_H_
        17 #define AACE_DEVICEUSAGE_DEVICEUSAGEENGINEINTERFACES_H_
        18 
        19 #include <iostream>
        20 #include <string>
        21 
        24 namespace aace {
        25 namespace deviceUsage {
        26 
        31 public:
        32  virtual ~DeviceUsageEngineInterface() = default;
        33 
        34  virtual void onReportNetworkDataUsage(const std::string& usage) = 0;
        35 };
        36 
        37 } // namespace deviceUsage
        38 } // namespace aace
        39 
        40 #endif // AACE_DEVICEUSAGE_DEVICEUSAGEENGINEINTERFACES_H_
        Definition: DeviceUsageEngineInterfaces.h:30
        -
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_do_not_disturb_8h_source.html b/docs/docs/doxygen-docs/cpp/_do_not_disturb_8h_source.html deleted file mode 100644 index 370004a2f..000000000 --- a/docs/docs/doxygen-docs/cpp/_do_not_disturb_8h_source.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: DoNotDisturb.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        DoNotDisturb.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_DO_NOT_DISTURB_H
        17 #define AACE_ALEXA_DO_NOT_DISTURB_H
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 #include "AlexaEngineInterfaces.h"
        21 
        24 namespace aace {
        25 namespace alexa {
        26 
        39 protected:
        40  DoNotDisturb() = default;
        41 
        42 public:
        43  virtual ~DoNotDisturb();
        44 
        50  virtual void setDoNotDisturb(const bool doNotDisturb) = 0;
        51 
        58  bool doNotDisturbChanged(const bool doNotDisturb);
        59 
        66  void setEngineInterface(std::shared_ptr<aace::alexa::DoNotDisturbEngineInterface> doNotDisturbEngineInterface);
        67 
        68 private:
        69  std::weak_ptr<aace::alexa::DoNotDisturbEngineInterface> m_doNotDisturbEngineInterface;
        70 };
        71 
        72 } // namespace alexa
        73 } // namespace aace
        74 
        75 #endif // AACE_ALEXA_DO_NOT_DISTURB_H
        virtual void setDoNotDisturb(const bool doNotDisturb)=0
        -
        Definition: PlatformInterface.h:29
        -
        Definition: DoNotDisturb.h:38
        -
        Definition: AddressBook.h:26
        -
        bool doNotDisturbChanged(const bool doNotDisturb)
        Definition: DoNotDisturb.cpp:23
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_engine_8h_source.html b/docs/docs/doxygen-docs/cpp/_engine_8h_source.html deleted file mode 100644 index bd454e213..000000000 --- a/docs/docs/doxygen-docs/cpp/_engine_8h_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Engine.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        Engine.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CORE_ENGINE_H
        17 #define AACE_CORE_ENGINE_H
        18 
        19 #include <vector>
        20 #include <memory>
        21 
        22 #include "PlatformInterface.h"
        23 #include "EngineConfiguration.h"
        24 #include "MessageBroker.h"
        25 
        28 namespace aace {
        29 namespace core {
        30 
        37 class Engine {
        38 public:
        39  static std::shared_ptr<Engine> create();
        40 
        41  virtual ~Engine() = default;
        42 
        50  virtual bool configure(
        51  std::initializer_list<std::shared_ptr<aace::core::config::EngineConfiguration>> configurationList) = 0;
        52 
        60  virtual bool configure(std::vector<std::shared_ptr<aace::core::config::EngineConfiguration>> configurationList) = 0;
        61 
        68  virtual bool configure(std::shared_ptr<aace::core::config::EngineConfiguration> configuration) = 0;
        69 
        77  virtual bool start() = 0;
        78 
        86  virtual bool stop() = 0;
        87 
        93  virtual bool shutdown() = 0;
        94 
        105  virtual bool registerPlatformInterface(std::shared_ptr<aace::core::PlatformInterface> platformInterface) = 0;
        106 
        118  virtual bool registerPlatformInterface(
        119  std::initializer_list<std::shared_ptr<aace::core::PlatformInterface>> platformInterfaceList) = 0;
        120 
        124  virtual std::shared_ptr<MessageBroker> getMessageBroker() = 0;
        125 };
        126 
        127 } // namespace core
        128 } // namespace aace
        129 
        130 #endif // AACE_CORE_ENGINE_H
        virtual std::shared_ptr< MessageBroker > getMessageBroker()=0
        -
        virtual bool stop()=0
        -
        Definition: Engine.h:37
        -
        Definition: AddressBook.h:26
        -
        virtual bool configure(std::initializer_list< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)=0
        -
        virtual bool registerPlatformInterface(std::shared_ptr< aace::core::PlatformInterface > platformInterface)=0
        -
        virtual bool shutdown()=0
        -
        virtual bool start()=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_engine_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_engine_configuration_8h_source.html deleted file mode 100644 index 14f1380bb..000000000 --- a/docs/docs/doxygen-docs/cpp/_engine_configuration_8h_source.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: EngineConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        EngineConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CORE_CONFIG_ENGINE_CONFIGURATION_H
        17 #define AACE_CORE_CONFIG_ENGINE_CONFIGURATION_H
        18 
        19 #include <fstream>
        20 #include <iostream>
        21 #include <string>
        22 #include <vector>
        23 #include <sstream>
        24 #include <memory>
        25 
        28 namespace aace {
        29 namespace core {
        30 namespace config {
        31 
        36 public:
        37  virtual ~EngineConfiguration() = default;
        38 
        42  virtual std::shared_ptr<std::istream> getStream() = 0;
        43 };
        44 
        51 private:
        52  StreamConfiguration() = default;
        53 
        54 public:
        61  static std::shared_ptr<StreamConfiguration> create(std::shared_ptr<std::istream> stream);
        62 
        66  std::shared_ptr<std::istream> getStream() override;
        67 
        68 private:
        69  std::shared_ptr<std::istream> m_stream;
        70 };
        71 
        78 private:
        79  ConfigurationFile() = default;
        80 
        81 public:
        88  static std::shared_ptr<ConfigurationFile> create(const std::string& configFilePath);
        89 
        93  std::shared_ptr<std::istream> getStream() override;
        94 
        95 private:
        96  std::shared_ptr<std::istream> m_stream;
        97 };
        98 
        99 } // namespace config
        100 } // namespace core
        101 } // namespace aace
        102 
        103 #endif // AACE_CORE_CONFIG_ENGINE_CONFIGURATION_H
        Definition: EngineConfiguration.h:50
        -
        Definition: AddressBook.h:26
        -
        Definition: EngineConfiguration.h:77
        -
        Definition: EngineConfiguration.h:35
        -
        virtual std::shared_ptr< std::istream > getStream()=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_equalizer_controller_8h_source.html b/docs/docs/doxygen-docs/cpp/_equalizer_controller_8h_source.html deleted file mode 100644 index 34b4640a1..000000000 --- a/docs/docs/doxygen-docs/cpp/_equalizer_controller_8h_source.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - -Alexa Auto SDK: EqualizerController.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        EqualizerController.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_EQUALIZER_CONTROLLER_H
        17 #define AACE_ALEXA_EQUALIZER_CONTROLLER_H
        18 
        19 #include "AACE/Core/PlatformInterface.h"
        20 #include "AlexaEngineInterfaces.h"
        21 
        24 namespace aace {
        25 namespace alexa {
        26 
        49 protected:
        50  EqualizerController() = default;
        51 
        52 public:
        53  virtual ~EqualizerController();
        54 
        61 
        69 
        79  virtual void setBandLevels(const std::vector<EqualizerBandLevel>& bandLevels) = 0;
        80 
        87  virtual std::vector<EqualizerBandLevel> getBandLevels() = 0;
        88 
        95  void localSetBandLevels(const std::vector<EqualizerBandLevel>& bandLevels);
        96 
        105  void localAdjustBandLevels(const std::vector<EqualizerBandLevel>& bandAdjustments);
        106 
        112  void localResetBands(const std::vector<EqualizerBand>& bands = {});
        113 
        120  void setEngineInterface(
        121  std::shared_ptr<aace::alexa::EqualizerControllerEngineInterface> equalizerControllerEngineInterface);
        122 
        123 private:
        128  std::weak_ptr<aace::alexa::EqualizerControllerEngineInterface> m_equalizerControllerEngineInterface;
        129 };
        130 
        131 } // namespace alexa
        132 } // namespace aace
        133 
        134 #endif // AACE_ALEXA_EQUALIZER_CONTROLLER_H
        void localAdjustBandLevels(const std::vector< EqualizerBandLevel > &bandAdjustments)
        Definition: EqualizerController.cpp:29
        -
        Definition: PlatformInterface.h:29
        -
        void localSetBandLevels(const std::vector< EqualizerBandLevel > &bandLevels)
        Definition: EqualizerController.cpp:23
        -
        Definition: AddressBook.h:26
        -
        void localResetBands(const std::vector< EqualizerBand > &bands={})
        Definition: EqualizerController.cpp:35
        -
        virtual void setBandLevels(const std::vector< EqualizerBandLevel > &bandLevels)=0
        -
        std::pair< EqualizerBand, int > EqualizerBandLevel
        Definition: AlexaEngineInterfaces.h:528
        -
        Definition: EqualizerController.h:48
        -
        aace::alexa::EqualizerControllerEngineInterface::EqualizerBandLevel EqualizerBandLevel
        Definition: EqualizerController.h:68
        -
        virtual std::vector< EqualizerBandLevel > getBandLevels()=0
        -
        EqualizerBand
        Definition: AlexaEngineInterfaces.h:515
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_external_media_adapter_8h_source.html b/docs/docs/doxygen-docs/cpp/_external_media_adapter_8h_source.html deleted file mode 100644 index 593fb6445..000000000 --- a/docs/docs/doxygen-docs/cpp/_external_media_adapter_8h_source.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - -Alexa Auto SDK: ExternalMediaAdapter.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        ExternalMediaAdapter.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_EXTERNAL_MEDIA_ADAPTER_H
        17 #define AACE_ALEXA_EXTERNAL_MEDIA_ADAPTER_H
        18 
        19 #include <chrono>
        20 #include <string>
        21 
        22 #include "AACE/Core/PlatformInterface.h"
        23 #include "AACE/Audio/AudioOutput.h"
        24 
        25 #include "AlexaEngineInterfaces.h"
        26 
        29 namespace aace {
        30 namespace alexa {
        31 
        39 public:
        42 
        46  enum class PlayControlType {
        50  PAUSE,
        54  RESUME,
        58  STOP,
        62  NEXT,
        66  PREVIOUS,
        70  START_OVER,
        78  REWIND,
        102  FAVORITE,
        106  UNFAVORITE,
        111  PAUSE_RESUME_TOGGLE
        112  };
        113 
        121  PLAY,
        125  PAUSE,
        129  STOP,
        133  NEXT,
        137  PREVIOUS,
        141  START_OVER,
        145  FAST_FORWARD,
        149  REWIND,
        173  FAVORITE,
        177  UNFAVORITE,
        181  SEEK,
        185  ADJUST_SEEK
        186  };
        187 
        191  enum class Favorites {
        195  FAVORITED,
        199  UNFAVORITED,
        203  NOT_RATED
        204  };
        205 
        209  enum class MediaType {
        213  TRACK,
        217  PODCAST,
        221  STATION,
        225  AD,
        229  SAMPLE,
        233  OTHER
        234  };
        235 
        239  enum class Navigation {
        243  DEFAULT,
        247  NONE,
        251  FOREGROUND
        252  };
        253 
        257  class SessionState {
        258  public:
        262  SessionState();
        263 
        265  std::string endpointId;
        266 
        268  bool loggedIn;
        269 
        271  std::string userName;
        272 
        274  bool isGuest;
        275 
        277  bool launched;
        278 
        283  bool active;
        284 
        289  std::string accessToken;
        290 
        292  std::chrono::milliseconds tokenRefreshInterval;
        293 
        295  std::string playerCookie;
        296 
        298  std::string spiVersion;
        299  };
        300 
        305  public:
        307  PlaybackState();
        308 
        309  /* The state of the external media adapter.
        310  * "IDLE"/"STOPPED"/"PAUSED"/"PLAYING"/"FINISHED"/"FAST_FORWARDING"/"REWINDING"/"BUFFER_UNDERRUN". default "IDLE"
        311  */
        312  std::string state;
        313 
        315  std::vector<SupportedPlaybackOperation> supportedOperations;
        316 
        318  std::chrono::milliseconds trackOffset;
        319 
        322 
        325 
        328 
        331 
        333  std::string type;
        334 
        336  std::string playbackSource;
        337 
        340  std::string playbackSourceId;
        341 
        343  std::string trackName;
        344 
        346  std::string trackId;
        347 
        350  std::string trackNumber;
        351 
        353  std::string artistName;
        354 
        357  std::string artistId;
        358 
        360  std::string albumName;
        361 
        364  std::string albumId;
        365 
        367  std::string tinyURL;
        368 
        370  std::string smallURL;
        371 
        373  std::string mediumURL;
        374 
        376  std::string largeURL;
        377 
        380  std::string coverId;
        381 
        384  std::string mediaProvider;
        385 
        388 
        390  std::chrono::milliseconds duration;
        391  };
        392 
        397  public:
        400 
        403 
        406  };
        407 
        412  public:
        414  std::string localPlayerId;
        418  std::string defaultSkillToken;
        419  // The playerId that identifies this player
        420  std::string playerId;
        421  };
        422 
        423 protected:
        424  ExternalMediaAdapter() = default;
        425 
        426 public:
        427  virtual ~ExternalMediaAdapter();
        428 
        445  virtual bool login(
        446  const std::string& localPlayerId,
        447  const std::string& accessToken,
        448  const std::string& userName,
        449  bool forceLogin,
        450  std::chrono::milliseconds tokenRefreshInterval) = 0;
        451 
        460  virtual bool logout(const std::string& localPlayerId) = 0;
        461 
        480  virtual bool play(
        481  const std::string& localPlayerId,
        482  const std::string& playContextToken,
        483  int64_t index,
        484  std::chrono::milliseconds offset,
        485  bool preload,
        486  Navigation navigation) = 0;
        487 
        491  virtual bool play(
        492  const std::string& localPlayerId,
        493  const std::string& playContextToken,
        494  int64_t index,
        495  std::chrono::milliseconds offset,
        496  bool preload,
        497  Navigation navigation,
        498  const std::string& playbackSessionId,
        499  const std::string& skillToken);
        500 
        511  virtual bool playControl(const std::string& localPlayerId, PlayControlType controlType) = 0;
        512 
        523  virtual bool seek(const std::string& localPlayerId, std::chrono::milliseconds offset) = 0;
        524 
        535  virtual bool adjustSeek(const std::string& localPlayerId, std::chrono::milliseconds deltaOffset) = 0;
        536 
        551  virtual bool authorize(const std::vector<AuthorizedPlayerInfo>& authorizedPlayers) = 0;
        552 
        558  virtual std::chrono::milliseconds getOffset(const std::string& localPlayerId);
        559 
        569  virtual bool getState(const std::string& localPlayerId, ExternalMediaAdapterState& state) = 0;
        570 
        580  virtual bool volumeChanged(float volume) = 0;
        581 
        591  virtual bool mutedStateChanged(MutedState state) = 0;
        592 
        593  // ExternalMediaAdapterEngineInterface
        594 
        600  void reportDiscoveredPlayers(const std::vector<DiscoveredPlayerInfo>& discoveredPlayers);
        601 
        607  void requestToken(const std::string& localPlayerId);
        608 
        614  void loginComplete(const std::string& localPlayerId);
        615 
        621  void logoutComplete(const std::string& localPlayerId);
        622 
        638  void playerEvent(const std::string& localPlayerId, const std::string& eventName);
        639 
        669  void playerError(
        670  const std::string& localPlayerId,
        671  const std::string& errorName,
        672  long code,
        673  const std::string& description,
        674  bool fatal);
        675 
        681  void setFocus(const std::string& localPlayerId);
        682 
        683  void removeDiscoveredPlayer(const std::string& localPlayerId);
        684 
        691  void setEngineInterface(
        692  std::shared_ptr<aace::alexa::ExternalMediaAdapterEngineInterface> externalMediaAdapterEngineInterface);
        693 
        694 private:
        695  std::weak_ptr<aace::alexa::ExternalMediaAdapterEngineInterface> m_externalMediaAdapterEngineInterface;
        696 };
        697 
        698 inline std::ostream& operator<<(std::ostream& stream, const ExternalMediaAdapter::PlayControlType& requestType) {
        699  switch (requestType) {
        701  stream << "RESUME";
        702  break;
        704  stream << "PAUSE";
        705  break;
        707  stream << "STOP";
        708  break;
        710  stream << "NEXT";
        711  break;
        713  stream << "PREVIOUS";
        714  break;
        716  stream << "START_OVER";
        717  break;
        719  stream << "FAST_FORWARD";
        720  break;
        722  stream << "REWIND";
        723  break;
        725  stream << "ENABLE_REPEAT_ONE";
        726  break;
        728  stream << "ENABLE_REPEAT";
        729  break;
        731  stream << "DISABLE_REPEAT";
        732  break;
        734  stream << "ENABLE_SHUFFLE";
        735  break;
        737  stream << "DISABLE_SHUFFLE";
        738  break;
        740  stream << "FAVORITE";
        741  break;
        743  stream << "UNFAVORITE";
        744  break;
        745  // internal
        746  case ExternalMediaAdapter::PlayControlType::PAUSE_RESUME_TOGGLE:
        747  stream << "PAUSE_RESUME_TOGGLE";
        748  break;
        749  }
        750  return stream;
        751 }
        752 
        753 inline std::ostream& operator<<(
        754  std::ostream& stream,
        755  const ExternalMediaAdapter::SupportedPlaybackOperation& supportedPlaybackOperation) {
        756  switch (supportedPlaybackOperation) {
        758  stream << "PLAY";
        759  break;
        761  stream << "PAUSE";
        762  break;
        764  stream << "STOP";
        765  break;
        767  stream << "NEXT";
        768  break;
        770  stream << "PREVIOUS";
        771  break;
        773  stream << "START_OVER";
        774  break;
        776  stream << "FAST_FORWARD";
        777  break;
        779  stream << "REWIND";
        780  break;
        782  stream << "ENABLE_REPEAT";
        783  break;
        785  stream << "ENABLE_REPEAT_ONE";
        786  break;
        788  stream << "DISABLE_REPEAT";
        789  break;
        791  stream << "ENABLE_SHUFFLE";
        792  break;
        794  stream << "DISABLE_SHUFFLE";
        795  break;
        797  stream << "FAVORITE";
        798  break;
        800  stream << "UNFAVORITE";
        801  break;
        803  stream << "SEEK";
        804  break;
        806  stream << "ADJUST_SEEK";
        807  break;
        808  }
        809  return stream;
        810 }
        811 
        812 inline std::ostream& operator<<(std::ostream& stream, const ExternalMediaAdapter::Favorites& favorites) {
        813  switch (favorites) {
        815  stream << "FAVORITED";
        816  break;
        818  stream << "UNFAVORITED";
        819  break;
        821  stream << "NOT_RATED";
        822  break;
        823  }
        824  return stream;
        825 }
        826 
        827 inline std::ostream& operator<<(std::ostream& stream, const ExternalMediaAdapter::MediaType& mediaType) {
        828  switch (mediaType) {
        830  stream << "TRACK";
        831  break;
        833  stream << "PODCAST";
        834  break;
        836  stream << "STATION";
        837  break;
        839  stream << "AD";
        840  break;
        842  stream << "SAMPLE";
        843  break;
        845  stream << "OTHER";
        846  break;
        847  }
        848  return stream;
        849 }
        850 
        851 inline std::ostream& operator<<(std::ostream& stream, const ExternalMediaAdapter::Navigation& navigation) {
        852  switch (navigation) {
        854  stream << "DEFAULT";
        855  break;
        857  stream << "NONE";
        858  break;
        860  stream << "FOREGROUND";
        861  break;
        862  }
        863  return stream;
        864 }
        865 
        866 } // namespace alexa
        867 } // namespace aace
        868 
        869 #endif // AACE_ALEXA_EXTERNAL_MEDIA_ADAPTER_H
        MutedState
        Definition: AudioOutput.h:75
        -
        virtual bool playControl(const std::string &localPlayerId, PlayControlType controlType)=0
        - -
        std::string artistId
        Definition: ExternalMediaAdapter.h:357
        - - - - - -
        std::string albumName
        The display name of the currently playing album. default "".
        Definition: ExternalMediaAdapter.h:360
        -
        bool active
        Definition: ExternalMediaAdapter.h:283
        -
        std::string defaultSkillToken
        An opaque token for the domain or skill that is associated with this player.
        Definition: ExternalMediaAdapter.h:418
        -
        std::string trackId
        The arbitrary identifier for currently playing trackid of the track as per the music provider...
        Definition: ExternalMediaAdapter.h:346
        -
        std::chrono::milliseconds trackOffset
        The offset of the track in milliseconds. default 0.
        Definition: ExternalMediaAdapter.h:318
        - - -
        virtual bool login(const std::string &localPlayerId, const std::string &accessToken, const std::string &userName, bool forceLogin, std::chrono::milliseconds tokenRefreshInterval)=0
        - - - - -
        MediaType mediaType
        The Media type TRACK/PODCAST/STATION/AD/SAMPLE/OTHER . default OTHER.
        Definition: ExternalMediaAdapter.h:387
        -
        virtual bool play(const std::string &localPlayerId, const std::string &playContextToken, int64_t index, std::chrono::milliseconds offset, bool preload, Navigation navigation)=0
        -
        std::string playbackSourceId
        Definition: ExternalMediaAdapter.h:340
        -
        std::string userName
        The userName of the user currently logged in via a Login directive from the AVS. default ""...
        Definition: ExternalMediaAdapter.h:271
        - - -
        virtual std::chrono::milliseconds getOffset(const std::string &localPlayerId)
        Definition: ExternalMediaAdapter.cpp:80
        - -
        virtual bool seek(const std::string &localPlayerId, std::chrono::milliseconds offset)=0
        -
        void reportDiscoveredPlayers(const std::vector< DiscoveredPlayerInfo > &discoveredPlayers)
        Definition: ExternalMediaAdapter.cpp:88
        - -
        SupportedPlaybackOperation
        Definition: ExternalMediaAdapter.h:117
        - -
        Definition: PlatformInterface.h:29
        - -
        Definition: ExternalMediaAdapter.h:411
        -
        Definition: ExternalMediaAdapter.h:257
        - - -
        std::string mediaProvider
        Definition: ExternalMediaAdapter.h:384
        -
        virtual bool logout(const std::string &localPlayerId)=0
        -
        std::vector< SupportedPlaybackOperation > supportedOperations
        The set of states the default player can move into from its current state. default {}...
        Definition: ExternalMediaAdapter.h:315
        -
        void loginComplete(const std::string &localPlayerId)
        Definition: ExternalMediaAdapter.cpp:100
        - -
        std::string type
        The type of the media item should be "ExternalMediaAdapterMusicItem". default "ExternalMediaAdapterMu...
        Definition: ExternalMediaAdapter.h:333
        -
        bool launched
        Flag that identifies if an application has been launched or not. default true.
        Definition: ExternalMediaAdapter.h:277
        - - -
        std::string accessToken
        Definition: ExternalMediaAdapter.h:289
        -
        Favorites favorites
        The favorite status FAVORITED/UNFAVORITED/NOT_RATED. default NOT_RATED.
        Definition: ExternalMediaAdapter.h:330
        -
        Definition: AddressBook.h:26
        - -
        std::string artistName
        The display name for the currently playing artist. default "".
        Definition: ExternalMediaAdapter.h:353
        - -
        std::string tinyURL
        The URL for tiny cover art image resource. default "".
        Definition: ExternalMediaAdapter.h:367
        -
        Definition: ExternalMediaAdapter.h:38
        -
        bool loggedIn
        Flag that identifies if a user is currently logged in or not. default false.
        Definition: ExternalMediaAdapter.h:268
        -
        void playerEvent(const std::string &localPlayerId, const std::string &eventName)
        Definition: ExternalMediaAdapter.cpp:112
        - -
        std::string trackNumber
        Definition: ExternalMediaAdapter.h:350
        -
        bool repeatOneEnabled
        Bool to identify if repeating the track is enabled.
        Definition: ExternalMediaAdapter.h:327
        -
        std::string playbackSource
        The display name for current playback context, e.g. playlist name. default "".
        Definition: ExternalMediaAdapter.h:336
        -
        std::string endpointId
        The unique device endpoint. default "".
        Definition: ExternalMediaAdapter.h:265
        -
        PlayControlType
        Definition: ExternalMediaAdapter.h:46
        -
        std::chrono::milliseconds tokenRefreshInterval
        The validity period of the token in milliseconds. default 0.
        Definition: ExternalMediaAdapter.h:292
        -
        bool isGuest
        Flag that identifies if the user currently logged in is a guest or not. default false.
        Definition: ExternalMediaAdapter.h:274
        - -
        void playerError(const std::string &localPlayerId, const std::string &errorName, long code, const std::string &description, bool fatal)
        Definition: ExternalMediaAdapter.cpp:118
        - -
        std::string coverId
        Definition: ExternalMediaAdapter.h:380
        -
        SessionState sessionState
        Variable to hold the session state.
        Definition: ExternalMediaAdapter.h:402
        -
        std::string spiVersion
        The only spiVersion that currently exists is "1.0". default "1.0".
        Definition: ExternalMediaAdapter.h:298
        -
        PlaybackState playbackState
        Variable to hold the playback state.
        Definition: ExternalMediaAdapter.h:405
        - - -
        Definition: ExternalMediaAdapter.h:304
        -
        std::string largeURL
        The URL for large cover art image resource. default "".
        Definition: ExternalMediaAdapter.h:376
        - - - -
        void setFocus(const std::string &localPlayerId)
        Definition: ExternalMediaAdapter.cpp:129
        - - - - -
        std::string localPlayerId
        The opaque token that uniquely identifies the local external player app.
        Definition: ExternalMediaAdapter.h:414
        -
        void logoutComplete(const std::string &localPlayerId)
        Definition: ExternalMediaAdapter.cpp:106
        -
        virtual bool authorize(const std::vector< AuthorizedPlayerInfo > &authorizedPlayers)=0
        - - -
        virtual bool getState(const std::string &localPlayerId, ExternalMediaAdapterState &state)=0
        -
        std::string playerCookie
        A player may declare arbitrary information for itself. default "".
        Definition: ExternalMediaAdapter.h:295
        -
        virtual bool mutedStateChanged(MutedState state)=0
        - -
        bool shuffleEnabled
        Bool to identify if shuffling is enabled or not. default false.
        Definition: ExternalMediaAdapter.h:321
        - -
        virtual bool adjustSeek(const std::string &localPlayerId, std::chrono::milliseconds deltaOffset)=0
        -
        std::chrono::milliseconds duration
        Media item duration in milliseconds. default 0.
        Definition: ExternalMediaAdapter.h:390
        - - -
        std::string trackName
        The display name for the currently playing trackname of the track. default "".
        Definition: ExternalMediaAdapter.h:343
        -
        std::string smallURL
        The URL for small cover art image resource. default "".
        Definition: ExternalMediaAdapter.h:370
        -
        MediaType
        Definition: ExternalMediaAdapter.h:209
        -
        Navigation
        Definition: ExternalMediaAdapter.h:239
        -
        std::string mediumURL
        The URL for medium cover art image resource. default "".
        Definition: ExternalMediaAdapter.h:373
        -
        virtual bool volumeChanged(float volume)=0
        - -
        bool repeatEnabled
        Bool to identify if looping of songs is enabled or not. default false.
        Definition: ExternalMediaAdapter.h:324
        - - -
        std::string albumId
        Definition: ExternalMediaAdapter.h:364
        - - -
        Favorites
        Definition: ExternalMediaAdapter.h:191
        -
        void requestToken(const std::string &localPlayerId)
        Definition: ExternalMediaAdapter.cpp:94
        -
        bool authorized
        Authorization status.
        Definition: ExternalMediaAdapter.h:416
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_feature_discovery_8h_source.html b/docs/docs/doxygen-docs/cpp/_feature_discovery_8h_source.html deleted file mode 100644 index 8bbab473c..000000000 --- a/docs/docs/doxygen-docs/cpp/_feature_discovery_8h_source.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - -Alexa Auto SDK: FeatureDiscovery.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        FeatureDiscovery.h
        -
        -
        -
        1 /*
        2  * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_FEATURE_DISCOVERY_H_
        17 #define AACE_ALEXA_FEATURE_DISCOVERY_H_
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 
        21 #include "AACE/Alexa/AlexaEngineInterfaces.h"
        22 
        25 namespace aace {
        26 namespace alexa {
        27 
        28 class FeatureDiscovery : public aace::core::PlatformInterface {
        29 protected:
        30  FeatureDiscovery() = default;
        31 
        32 public:
        33  virtual ~FeatureDiscovery();
        34 
        58  void getFeatures(const std::string& requestId, const std::string& discoveryRequests);
        59 
        87  virtual void featuresReceived(const std::string& requestId, const std::string& discoveryResponses) = 0;
        88 
        95  void setEngineInterface(std::shared_ptr<FeatureDiscoveryEngineInterface> featureDiscoveryEngineInterface);
        96 
        97 private:
        98  std::weak_ptr<FeatureDiscoveryEngineInterface> m_featureDiscoveryEngineInterface;
        99 };
        100 
        101 } // namespace alexa
        102 } // namespace aace
        103 
        104 #endif // AACE_ALEXA_FEATURE_DISCOVERY_H_
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_focus_state_8h_source.html b/docs/docs/doxygen-docs/cpp/_focus_state_8h_source.html deleted file mode 100644 index 178781959..000000000 --- a/docs/docs/doxygen-docs/cpp/_focus_state_8h_source.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: FocusState.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        FocusState.h
        -
        -
        -
        1 /*
        2  * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_FOCUS_STATE_H
        17 #define AACE_ALEXA_FOCUS_STATE_H
        18 
        19 #include <iostream>
        20 
        26 namespace aace {
        27 
        31 namespace alexa {
        32 
        36 enum class FocusState {
        37 
        41  FOREGROUND,
        42 
        46  BACKGROUND,
        47 
        51  NONE
        52 };
        53 
        54 inline std::ostream& operator<<(std::ostream& stream, const FocusState& state) {
        55  switch (state) {
        57  stream << "FOREGROUND";
        58  break;
        60  stream << "BACKGROUND";
        61  break;
        62  case FocusState::NONE:
        63  stream << "NONE";
        64  break;
        65  }
        66  return stream;
        67 }
        68 
        69 } // namespace alexa
        70 } // namespace aace
        71 
        72 #endif // AACE_ALEXA_FOCUS_STATE_H
        - -
        Definition: AddressBook.h:26
        -
        FocusState
        Definition: FocusState.h:36
        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_g_a_t_t_server_8h_source.html b/docs/docs/doxygen-docs/cpp/_g_a_t_t_server_8h_source.html deleted file mode 100644 index 325d7444c..000000000 --- a/docs/docs/doxygen-docs/cpp/_g_a_t_t_server_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: GATTServer.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        GATTServer.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_BLUETOOTH_GATT_SERVER_H
        17 #define AACE_BLUETOOTH_GATT_SERVER_H
        18 
        19 #include "BluetoothEngineInterfaces.h"
        20 
        21 namespace aace {
        22 namespace bluetooth {
        23 
        24 class GATTServer {
        25 protected:
        26  GATTServer() = default;
        27 
        28 public:
        29  virtual ~GATTServer();
        30 
        31  using ConnectionState = aace::bluetooth::GATTServerEngineInterface::ConnectionState;
        32 
        33  virtual bool start(const std::string& configuration) = 0;
        34  virtual bool stop() = 0;
        35  virtual bool setCharacteristicValue(
        36  const std::string& serviceId,
        37  const std::string& characteristicId,
        38  ByteArrayPtr data) = 0;
        39 
        40  void connectionStateChanged(const std::string& device, ConnectionState state);
        41  bool requestCharacteristic(
        42  const std::string& device,
        43  int requestId,
        44  const std::string& serviceId,
        45  const std::string& characteristicId,
        46  ByteArrayPtr data);
        47  bool requestDescriptor(
        48  const std::string& device,
        49  int requestId,
        50  const std::string& serviceId,
        51  const std::string& characteristicId,
        52  const std::string& descriptorId,
        53  ByteArrayPtr data);
        54 
        61  void setEngineInterface(const std::shared_ptr<GATTServerEngineInterface>& gattServerEngineInterface);
        62 
        63 private:
        64  std::weak_ptr<GATTServerEngineInterface> m_gattServerEngineInterface;
        65 };
        66 
        67 } // namespace bluetooth
        68 } // namespace aace
        69 
        70 #endif
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_global_preset_8h_source.html b/docs/docs/doxygen-docs/cpp/_global_preset_8h_source.html deleted file mode 100644 index 31c896fe9..000000000 --- a/docs/docs/doxygen-docs/cpp/_global_preset_8h_source.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: GlobalPreset.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        GlobalPreset.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_GLOBAL_PRESET_H
        17 #define AACE_ALEXA_GLOBAL_PRESET_H
        18 
        19 #include <chrono>
        20 #include <string>
        21 
        22 #include "AACE/Core/PlatformInterface.h"
        23 #include "LocalMediaSource.h"
        24 
        27 namespace aace {
        28 namespace alexa {
        29 
        37 public:
        38 protected:
        39  GlobalPreset() = default;
        40 
        41 public:
        42  virtual ~GlobalPreset();
        43 
        49  virtual void setGlobalPreset(int preset) = 0;
        50 };
        51 
        52 } // namespace alexa
        53 } // namespace aace
        54 
        55 #endif // AACE_ALEXA_GLOBAL_PRESET_H
        Definition: GlobalPreset.h:36
        -
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        virtual void setGlobalPreset(int preset)=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_local_media_source_8h_source.html b/docs/docs/doxygen-docs/cpp/_local_media_source_8h_source.html deleted file mode 100644 index 2cda356a5..000000000 --- a/docs/docs/doxygen-docs/cpp/_local_media_source_8h_source.html +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - -Alexa Auto SDK: LocalMediaSource.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        LocalMediaSource.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_LOCAL_MEDIA_SOURCE_H
        17 #define AACE_ALEXA_LOCAL_MEDIA_SOURCE_H
        18 
        19 #include <chrono>
        20 #include <string>
        21 
        22 #include "AACE/Core/PlatformInterface.h"
        23 
        24 #include "ExternalMediaAdapter.h"
        25 
        28 namespace aace {
        29 namespace alexa {
        30 
        41 public:
        45  enum class Source {
        49  BLUETOOTH,
        53  USB,
        57  FM_RADIO,
        61  AM_RADIO,
        69  LINE_IN,
        77  SIRIUS_XM,
        81  DAB,
        85  DEFAULT
        86  };
        87 
        91  enum class ContentSelector {
        95  FREQUENCY,
        99  CHANNEL,
        103  PRESET
        104  };
        105 
        112 
        116  class SessionState {
        117  public:
        118  /*
        119  * Default Constructor.
        120  */
        121  SessionState();
        122 
        124  std::string endpointId;
        125 
        127  bool loggedIn;
        128 
        130  std::string userName;
        131 
        133  bool isGuest;
        134 
        136  bool launched;
        137 
        142  bool active;
        143 
        148  std::string accessToken;
        149 
        151  std::chrono::milliseconds tokenRefreshInterval;
        152 
        154  std::vector<ContentSelector> supportedContentSelectors;
        155 
        157  std::string spiVersion;
        158  };
        159 
        164  public:
        166  PlaybackState();
        167 
        168  /* The state of the local player.
        169  * "IDLE"/"STOPPED"/"PAUSED"/"PLAYING"/"FINISHED"/"FAST_FORWARDING"/"REWINDING"/"BUFFER_UNDERRUN". default "IDLE"
        170  */
        171  std::string state;
        172 
        174  std::vector<SupportedPlaybackOperation> supportedOperations;
        175 
        177  std::chrono::milliseconds trackOffset;
        178 
        181 
        184 
        187 
        190 
        192  std::string type;
        193 
        195  std::string playbackSource;
        196 
        199  std::string playbackSourceId;
        200 
        202  std::string trackName;
        203 
        205  std::string trackId;
        206 
        209  std::string trackNumber;
        210 
        212  std::string artistName;
        213 
        216  std::string artistId;
        217 
        219  std::string albumName;
        220 
        223  std::string albumId;
        224 
        226  std::string tinyURL;
        227 
        229  std::string smallURL;
        230 
        232  std::string mediumURL;
        233 
        235  std::string largeURL;
        236 
        239  std::string coverId;
        240 
        243  std::string mediaProvider;
        244 
        247 
        249  std::chrono::milliseconds duration;
        250  };
        251 
        256  public:
        259 
        262 
        265  };
        266 
        267 protected:
        268  LocalMediaSource(Source source);
        269 
        270 public:
        271  virtual ~LocalMediaSource();
        272 
        284  virtual bool play(ContentSelector contentSelectorType, const std::string& payload);
        285 
        295  virtual bool play(ContentSelector contentSelectorType, const std::string& payload, const std::string& sessionId);
        296 
        305  virtual bool playControl(PlayControlType controlType) = 0;
        306 
        315  virtual bool seek(std::chrono::milliseconds offset) = 0;
        316 
        325  virtual bool adjustSeek(std::chrono::milliseconds deltaOffset) = 0;
        326 
        330  virtual LocalMediaSourceState getState() = 0;
        331 
        341  virtual bool volumeChanged(float volume) = 0;
        342 
        352  virtual bool mutedStateChanged(MutedState state) = 0;
        353 
        357  Source getSource();
        358 
        359  // LocalMediaSourceEngineInterface
        360 
        374  void playerEvent(const std::string& eventName, const std::string& sessionId = "");
        375 
        390  void playerError(
        391  const std::string& errorName,
        392  long code,
        393  const std::string& description,
        394  bool fatal,
        395  const std::string& sessionId = "");
        396 
        402  void setFocus(bool focusAcquire = true);
        403 
        410  void setEngineInterface(
        411  std::shared_ptr<aace::alexa::LocalMediaSourceEngineInterface> localMediaSourceEngineInterface);
        412 
        413 private:
        414  std::weak_ptr<aace::alexa::LocalMediaSourceEngineInterface> m_localMediaSourceEngineInterface;
        415  Source m_source;
        416 };
        417 
        418 inline std::ostream& operator<<(std::ostream& stream, const LocalMediaSource::Source& source) {
        419  switch (source) {
        421  stream << "BLUETOOTH";
        422  break;
        424  stream << "USB";
        425  break;
        427  stream << "FM_RADIO";
        428  break;
        430  stream << "AM_RADIO";
        431  break;
        433  stream << "SATELLITE_RADIO";
        434  break;
        436  stream << "LINE_IN";
        437  break;
        439  stream << "COMPACT_DISC";
        440  break;
        442  stream << "SIRIUS_XM";
        443  break;
        445  stream << "DAB";
        446  break;
        448  stream << "DEFAULT";
        449  break;
        450  }
        451  return stream;
        452 }
        453 
        454 inline std::ostream& operator<<(std::ostream& stream, const LocalMediaSource::ContentSelector& contentSelectorType) {
        455  switch (contentSelectorType) {
        457  stream << "CHANNEL";
        458  break;
        460  stream << "FREQUENCY";
        461  break;
        463  stream << "PRESET";
        464  break;
        465  }
        466  return stream;
        467 }
        468 
        469 } // namespace alexa
        470 } // namespace aace
        471 
        472 #endif // AACE_ALEXA_LOCAL_MEDIA_SOURCE_H
        MutedState
        Definition: AudioOutput.h:75
        - -
        std::string artistId
        Definition: LocalMediaSource.h:216
        -
        std::string albumId
        Definition: LocalMediaSource.h:223
        -
        bool launched
        Flag that identifies if an source is currently enabled. default true.
        Definition: LocalMediaSource.h:136
        -
        PlaybackState playbackState
        Variable to hold the playback state.
        Definition: LocalMediaSource.h:264
        - -
        std::string tinyURL
        The URL for tiny cover art image resource. default "".
        Definition: LocalMediaSource.h:226
        - -
        bool repeatEnabled
        Bool to identify if looping of songs is enabled. default false.
        Definition: LocalMediaSource.h:183
        - -
        std::string coverId
        Definition: LocalMediaSource.h:239
        -
        virtual bool volumeChanged(float volume)=0
        - -
        std::string type
        The type of the media item should be "ExternalMediaAdapterMusicItem". default "ExternalMediaAdapterMu...
        Definition: LocalMediaSource.h:192
        -
        Source getSource()
        Definition: LocalMediaSource.cpp:73
        -
        SupportedPlaybackOperation
        Definition: ExternalMediaAdapter.h:117
        -
        std::string spiVersion
        The only spiVersion that currently exists is "1.0". default "1.0".
        Definition: LocalMediaSource.h:157
        -
        Definition: PlatformInterface.h:29
        - -
        std::chrono::milliseconds duration
        Media item duration in milliseconds. default 0.
        Definition: LocalMediaSource.h:249
        -
        std::string playbackSource
        The display name for current playback context, e.g. playlist name. default "".
        Definition: LocalMediaSource.h:195
        -
        virtual bool seek(std::chrono::milliseconds offset)=0
        -
        std::vector< SupportedPlaybackOperation > supportedOperations
        The set of states the default player can move into from its current state. default {}...
        Definition: LocalMediaSource.h:174
        -
        bool repeatOneEnabled
        Bool to identify if repeating the track is enabled. default false.
        Definition: LocalMediaSource.h:186
        -
        virtual bool mutedStateChanged(MutedState state)=0
        -
        std::string trackNumber
        Definition: LocalMediaSource.h:209
        -
        Definition: AddressBook.h:26
        -
        std::string playbackSourceId
        Definition: LocalMediaSource.h:199
        - -
        void playerError(const std::string &errorName, long code, const std::string &description, bool fatal, const std::string &sessionId="")
        Definition: LocalMediaSource.cpp:98
        - - -
        std::string artistName
        The display name for the currently playing artist. default "".
        Definition: LocalMediaSource.h:212
        -
        void setFocus(bool focusAcquire=true)
        Definition: LocalMediaSource.cpp:109
        -
        PlayControlType
        Definition: ExternalMediaAdapter.h:46
        -
        std::string smallURL
        The URL for small cover art image resource. default "".
        Definition: LocalMediaSource.h:229
        -
        bool isGuest
        Flag that identifies if the user currently logged in is a guest. default false.
        Definition: LocalMediaSource.h:133
        - - -
        std::string accessToken
        Definition: LocalMediaSource.h:148
        -
        MediaType mediaType
        The Media type TRACK/PODCAST/STATION/AD/SAMPLE/OTHER . default OTHER.
        Definition: LocalMediaSource.h:246
        -
        virtual bool playControl(PlayControlType controlType)=0
        - -
        std::string mediaProvider
        Definition: LocalMediaSource.h:243
        -
        void playerEvent(const std::string &eventName, const std::string &sessionId="")
        Definition: LocalMediaSource.cpp:92
        -
        std::string mediumURL
        The URL for medium cover art image resource. default "".
        Definition: LocalMediaSource.h:232
        -
        ContentSelector
        Definition: LocalMediaSource.h:91
        -
        bool active
        Definition: LocalMediaSource.h:142
        -
        std::string trackId
        The arbitrary identifier for currently playing trackid of the track as per the music provider...
        Definition: LocalMediaSource.h:205
        -
        Favorites favorites
        The favorite status FAVORITED/UNFAVORITED/NOT_RATED. default NOT_RATED.
        Definition: LocalMediaSource.h:189
        -
        std::chrono::milliseconds trackOffset
        The offset of the track in milliseconds. default 0.
        Definition: LocalMediaSource.h:177
        -
        SessionState sessionState
        Variable to hold the session state.
        Definition: LocalMediaSource.h:261
        -
        bool loggedIn
        Flag that identifies if a user is currently logged in. default false.
        Definition: LocalMediaSource.h:127
        -
        std::vector< ContentSelector > supportedContentSelectors
        Array of content selector types supported by the player. default {}.
        Definition: LocalMediaSource.h:154
        -
        bool shuffleEnabled
        Bool to identify if shuffling is enabled. default false.
        Definition: LocalMediaSource.h:180
        -
        std::chrono::milliseconds tokenRefreshInterval
        The validity period of the token in milliseconds. default 0.
        Definition: LocalMediaSource.h:151
        - -
        Definition: LocalMediaSource.h:116
        -
        virtual bool play(ContentSelector contentSelectorType, const std::string &payload)
        Definition: LocalMediaSource.cpp:77
        -
        Source
        Definition: LocalMediaSource.h:45
        -
        Definition: LocalMediaSource.h:40
        -
        std::string userName
        The username of the user currently logged in via a Login directive from Alexa. default ""...
        Definition: LocalMediaSource.h:130
        -
        std::string albumName
        The display name of the currently playing album. default "".
        Definition: LocalMediaSource.h:219
        -
        std::string trackName
        The display name for the currently playing trackname of the track. default "".
        Definition: LocalMediaSource.h:202
        -
        MediaType
        Definition: ExternalMediaAdapter.h:209
        -
        std::string endpointId
        The unique device endpoint. default "".
        Definition: LocalMediaSource.h:124
        - -
        std::string largeURL
        The URL for large cover art image resource. default "".
        Definition: LocalMediaSource.h:235
        -
        Favorites
        Definition: ExternalMediaAdapter.h:191
        -
        Definition: LocalMediaSource.h:163
        -
        virtual LocalMediaSourceState getState()=0
        -
        virtual bool adjustSeek(std::chrono::milliseconds deltaOffset)=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_location_8h_source.html b/docs/docs/doxygen-docs/cpp/_location_8h_source.html deleted file mode 100644 index b010977ce..000000000 --- a/docs/docs/doxygen-docs/cpp/_location_8h_source.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - -Alexa Auto SDK: Location.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        Location.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_LOCATION_LOCATION_H
        17 #define AACE_LOCATION_LOCATION_H
        18 
        19 #include <string>
        20 #include <chrono>
        21 
        24 namespace aace {
        25 namespace location {
        26 
        27 class Location;
        28 
        32 class Location {
        33 public:
        34  // used for undefined location values
        35  static constexpr double UNDEFINED = std::numeric_limits<double>::min();
        36 
        41  Location();
        42 
        52  Location(
        53  double latitude,
        54  double longitude,
        55  double altitude = UNDEFINED,
        56  double accuracy = UNDEFINED,
        57  std::chrono::system_clock::time_point time = std::chrono::system_clock::now());
        58 
        64  Location(const Location& location);
        65 
        71  bool isValid();
        72 
        78  double getLatitude();
        79 
        85  double getLongitude();
        86 
        92  double getAltitude();
        93 
        99  double getAccuracy();
        100 
        106  std::chrono::system_clock::time_point getTime();
        107 
        113  std::string getTimeAsString();
        114 
        115 private:
        116  double m_latitude;
        117  double m_longitude;
        118  double m_altitude;
        119  double m_accuracy;
        120  std::chrono::system_clock::time_point m_time;
        121 };
        122 
        123 } // namespace location
        124 } // namespace aace
        125 
        126 #endif // AACE_LOCATION_LOCATION_H
        Definition: Location.h:32
        -
        std::chrono::system_clock::time_point getTime()
        Definition: Location.cpp:72
        -
        double getLongitude()
        Definition: Location.cpp:60
        -
        Definition: AddressBook.h:26
        -
        std::string getTimeAsString()
        Definition: Location.cpp:76
        -
        double getAccuracy()
        Definition: Location.cpp:68
        -
        double getAltitude()
        Definition: Location.cpp:64
        -
        Location()
        Definition: Location.cpp:23
        -
        double getLatitude()
        Definition: Location.cpp:56
        -
        bool isValid()
        Definition: Location.cpp:52
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_location_provider_8h_source.html b/docs/docs/doxygen-docs/cpp/_location_provider_8h_source.html deleted file mode 100644 index 32952f829..000000000 --- a/docs/docs/doxygen-docs/cpp/_location_provider_8h_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: LocationProvider.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        LocationProvider.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_LOCATION_LOCATION_PROVIDER_H
        17 #define AACE_LOCATION_LOCATION_PROVIDER_H
        18 
        19 #include <string>
        20 #include <chrono>
        21 
        22 #include "AACE/Core/PlatformInterface.h"
        23 #include "LocationProviderEngineInterface.h"
        24 
        25 #include "Location.h"
        26 
        29 namespace aace {
        30 namespace location {
        31 
        41 protected:
        42  LocationProvider() = default;
        43 
        44 public:
        46 
        47  virtual ~LocationProvider();
        48 
        55 
        62  virtual std::string getCountry();
        63 
        72 
        79  void setEngineInterface(std::shared_ptr<LocationProviderEngineInterface> locationProviderEngineInterface);
        80 
        81 private:
        82  std::shared_ptr<LocationProviderEngineInterface> m_locationProviderEngineInterface;
        83 };
        84 
        85 } // namespace location
        86 } // namespace aace
        87 
        88 #endif // AACE_LOCATION_LOCATION_PROVIDER_H
        Definition: Location.h:32
        -
        void locationServiceAccessChanged(LocationServiceAccess access)
        Definition: LocationProvider.cpp:27
        -
        Definition: PlatformInterface.h:29
        -
        Definition: LocationProvider.h:40
        -
        Definition: AddressBook.h:26
        -
        virtual std::string getCountry()
        Definition: LocationProvider.cpp:23
        -
        virtual aace::location::Location getLocation()=0
        -
        LocationServiceAccess
        Definition: LocationProviderEngineInterface.h:36
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_location_provider_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_location_provider_engine_interface_8h_source.html deleted file mode 100644 index 5ffb8a675..000000000 --- a/docs/docs/doxygen-docs/cpp/_location_provider_engine_interface_8h_source.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: LocationProviderEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        LocationProviderEngineInterface.h
        -
        -
        -
        1 /*
        2 * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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 * A copy of the License is located at
        7 *
        8 * http://aws.amazon.com/apache2.0/
        9 *
        10 * or in the "license" file accompanying this file. This file is distributed
        11 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12 * express or implied. See the License for the specific language governing
        13 * permissions and limitations under the License.
        14 */
        15 
        16 #ifndef AACE_LOCATION_LOCATION_PROVIDER_ENGINE_INTERFACE_H
        17 #define AACE_LOCATION_LOCATION_PROVIDER_ENGINE_INTERFACE_H
        18 
        21 #include <iostream>
        22 
        23 namespace aace {
        24 namespace location {
        25 
        30 public:
        31  virtual ~LocationProviderEngineInterface() = default;
        32 
        36  enum class LocationServiceAccess {
        37 
        41  DISABLED,
        45  ENABLED
        46  };
        47 
        48  virtual void onLocationServiceAccessChanged(LocationServiceAccess access) = 0;
        49 };
        50 
        51 inline std::ostream& operator<<(
        52  std::ostream& stream,
        54  switch (access) {
        56  stream << "DISABLED";
        57  break;
        59  stream << "ENABLED";
        60  break;
        61  }
        62  return stream;
        63 }
        64 
        65 } // namespace location
        66 } // namespace aace
        67 
        68 #endif //AACE_LOCATION_LOCATION_PROVIDER_ENGINE_INTERFACE_H
        Definition: AddressBook.h:26
        -
        Definition: LocationProviderEngineInterface.h:29
        - - -
        LocationServiceAccess
        Definition: LocationProviderEngineInterface.h:36
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_logger_8h_source.html b/docs/docs/doxygen-docs/cpp/_logger_8h_source.html deleted file mode 100644 index 52d459a92..000000000 --- a/docs/docs/doxygen-docs/cpp/_logger_8h_source.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Logger.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        Logger.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_LOGGER_LOGGER_H
        17 #define AACE_LOGGER_LOGGER_H
        18 
        19 #include <string>
        20 #include <chrono>
        21 
        22 #include "AACE/Core/PlatformInterface.h"
        23 #include "LoggerEngineInterfaces.h"
        24 
        27 namespace aace {
        28 namespace logger {
        29 
        39 protected:
        40  Logger() = default;
        41 
        42 public:
        43  virtual ~Logger();
        44 
        50 
        61  virtual bool logEvent(
        63  std::chrono::system_clock::time_point time,
        64  const std::string& source,
        65  const std::string& message);
        66 
        75  void log(Level level, const std::string& tag, const std::string& message);
        76 
        83  void setEngineInterface(std::shared_ptr<aace::logger::LoggerEngineInterface> loggerEngineInterface);
        84 
        85 private:
        86  std::shared_ptr<aace::logger::LoggerEngineInterface> m_loggerEngineInterface;
        87 };
        88 
        89 } // namespace logger
        90 } // namespace aace
        91 
        92 #endif // AACE_LOGGER_LOGGER_H
        Definition: Logger.h:38
        -
        Level
        Definition: LoggerEngineInterfaces.h:37
        -
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        virtual bool logEvent(aace::logger::Logger::Level level, std::chrono::system_clock::time_point time, const std::string &source, const std::string &message)
        Definition: Logger.cpp:23
        -
        void log(Level level, const std::string &tag, const std::string &message)
        Definition: Logger.cpp:31
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_logger_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_logger_configuration_8h_source.html deleted file mode 100644 index 4b5f089df..000000000 --- a/docs/docs/doxygen-docs/cpp/_logger_configuration_8h_source.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: LoggerConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        LoggerConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_LOGGER_LOGGER_CONFIGURATION_H
        17 #define AACE_LOGGER_LOGGER_CONFIGURATION_H
        18 
        19 #include <utility>
        20 
        21 #include "AACE/Core/EngineConfiguration.h"
        22 #include "LoggerEngineInterfaces.h"
        23 
        26 namespace aace {
        27 namespace logger {
        28 namespace config {
        29 
        30 class SinkConfiguration;
        31 class RuleConfiguration;
        32 
        62 public:
        68 
        92  static std::shared_ptr<aace::core::config::EngineConfiguration> createConsoleSinkConfig(
        93  const std::string& id,
        94  Level level);
        95 
        119  static std::shared_ptr<aace::core::config::EngineConfiguration> createSyslogSinkConfig(
        120  const std::string& id,
        121  Level level);
        122 
        158  static std::shared_ptr<aace::core::config::EngineConfiguration> createFileSinkConfig(
        159  const std::string& id,
        160  Level level,
        161  const std::string& path,
        162  const std::string& prefix = "aace",
        163  uint32_t maxSize = 5242880,
        164  uint32_t maxFiles = 3,
        165  bool append = true);
        166 
        195  static std::shared_ptr<aace::core::config::EngineConfiguration> createLoggerRuleConfig(
        196  const std::string& sink,
        197  Level level,
        198  const std::string& sourceFilter = "",
        199  const std::string& tagFilter = "",
        200  const std::string& messageFilter = "");
        201 };
        202 
        203 } // namespace config
        204 } // namespace logger
        205 } // namespace aace
        206 
        207 #endif // AACE_LOGGER_LOGGER_CONFIGURATION_H
        Level
        Definition: LoggerEngineInterfaces.h:37
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createSyslogSinkConfig(const std::string &id, Level level)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createLoggerRuleConfig(const std::string &sink, Level level, const std::string &sourceFilter="", const std::string &tagFilter="", const std::string &messageFilter="")
        -
        Definition: AddressBook.h:26
        -
        Definition: LoggerConfiguration.h:61
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createFileSinkConfig(const std::string &id, Level level, const std::string &path, const std::string &prefix="aace", uint32_t maxSize=5242880, uint32_t maxFiles=3, bool append=true)
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createConsoleSinkConfig(const std::string &id, Level level)
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_logger_engine_interfaces_8h_source.html b/docs/docs/doxygen-docs/cpp/_logger_engine_interfaces_8h_source.html deleted file mode 100644 index 967be469b..000000000 --- a/docs/docs/doxygen-docs/cpp/_logger_engine_interfaces_8h_source.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: LoggerEngineInterfaces.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        LoggerEngineInterfaces.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_LOGGER_LOGGER_ENGINE_INTERFACES_H
        17 #define AACE_LOGGER_LOGGER_ENGINE_INTERFACES_H
        18 
        19 #include <string>
        20 #include <iostream>
        21 
        24 namespace aace {
        25 namespace logger {
        26 
        31 public:
        32  virtual ~LoggerEngineInterface() = default;
        33 
        37  enum class Level {
        38 
        42  VERBOSE,
        43 
        47  INFO,
        48 
        52  METRIC,
        53 
        57  WARN,
        58 
        62  ERROR,
        63 
        67  CRITICAL
        68  };
        69 
        70  virtual void log(Level level, const std::string& tag, const std::string& message) = 0;
        71 };
        72 
        73 inline std::ostream& operator<<(std::ostream& stream, const LoggerEngineInterface::Level& level) {
        74  switch (level) {
        76  stream << "VERBOSE";
        77  break;
        79  stream << "INFO";
        80  break;
        82  stream << "METRIC";
        83  break;
        85  stream << "WARN";
        86  break;
        88  stream << "ERROR";
        89  break;
        91  stream << "CRITICAL";
        92  break;
        93  }
        94  return stream;
        95 }
        96 
        97 } // namespace logger
        98 } // namespace aace
        99 
        100 #endif // AACE_LOGGER_LOGGER_ENGINE_INTERFACES_H
        - -
        Level
        Definition: LoggerEngineInterfaces.h:37
        - -
        Definition: AddressBook.h:26
        - - -
        Definition: LoggerEngineInterfaces.h:30
        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_media_playback_requestor_8h_source.html b/docs/docs/doxygen-docs/cpp/_media_playback_requestor_8h_source.html deleted file mode 100644 index f8a219c87..000000000 --- a/docs/docs/doxygen-docs/cpp/_media_playback_requestor_8h_source.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - -Alexa Auto SDK: MediaPlaybackRequestor.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        MediaPlaybackRequestor.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_MEDIAPLAYBACKREQUESTOR_H_
        17 #define AACE_ALEXA_MEDIAPLAYBACKREQUESTOR_H_
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 
        21 #include "AACE/Alexa/AlexaEngineInterfaces.h"
        22 
        25 namespace aace {
        26 namespace alexa {
        27 
        34 protected:
        35  MediaPlaybackRequestor() = default;
        36 
        37 public:
        38  virtual ~MediaPlaybackRequestor();
        39 
        42 
        46  virtual void mediaPlaybackResponse(MediaPlaybackRequestStatus mediaPlaybackRequestStatus) = 0;
        47 
        59  long long int elapsedBootTime = 0);
        60 
        67  void setEngineInterface(
        68  std::shared_ptr<MediaPlaybackRequestorEngineInterface> mediaPlaybackRequestorEngineInterface);
        69 
        70 private:
        71  std::weak_ptr<MediaPlaybackRequestorEngineInterface> m_mediaPlaybackRequestorEngineInterface;
        72 };
        73 
        78  const MediaPlaybackRequestor::MediaPlaybackRequestStatus& mediaPlaybackRequestStatus) {
        79  switch (mediaPlaybackRequestStatus) {
        81  return "SUCCESS";
        83  return "FAILED_CAN_RETRY";
        85  return "FAILED_TIMEOUT";
        87  return "ERROR";
        88  }
        89  return "UNKNOWN";
        90 }
        91 
        92 inline std::ostream& operator<<(
        93  std::ostream& stream,
        94  const MediaPlaybackRequestor::MediaPlaybackRequestStatus& mediaPlaybackRequestStatus) {
        95  stream << mediaPlaybackRequestorMediaPlaybackRequestStatusToString(mediaPlaybackRequestStatus);
        96  return stream;
        97 }
        98 
        99 } // namespace alexa
        100 } // namespace aace
        101 
        102 #endif // AACE_ALEXA_MEDIAPLAYBACKREQUESTOR_H_
        -
        Definition: PlatformInterface.h:29
        - -
        MediaPlaybackRequestStatus
        Definition: AlexaEngineInterfaces.h:674
        -
        Definition: AddressBook.h:26
        - -
        Definition: MediaPlaybackRequestor.h:33
        -
        InvocationReason
        Definition: AlexaEngineInterfaces.h:657
        - -
        std::string mediaPlaybackRequestorMediaPlaybackRequestStatusToString(const MediaPlaybackRequestor::MediaPlaybackRequestStatus &mediaPlaybackRequestStatus)
        Definition: MediaPlaybackRequestor.h:77
        -
        virtual void mediaPlaybackResponse(MediaPlaybackRequestStatus mediaPlaybackRequestStatus)=0
        -
        void requestMediaPlayback(InvocationReason invocationReason=InvocationReason::AUTOMOTIVE_STARTUP, long long int elapsedBootTime=0)
        Definition: MediaPlaybackRequestor.cpp:23
        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_message_broker_8h_source.html b/docs/docs/doxygen-docs/cpp/_message_broker_8h_source.html deleted file mode 100644 index 25e5134a6..000000000 --- a/docs/docs/doxygen-docs/cpp/_message_broker_8h_source.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: MessageBroker.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        MessageBroker.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CORE_MESSAGE_BROKER_H
        17 #define AACE_CORE_MESSAGE_BROKER_H
        18 
        19 #include <string>
        20 #include <functional>
        21 
        22 #include "MessageStream.h"
        23 
        24 namespace aace {
        25 namespace core {
        26 
        32 public:
        33  using MessageHandler = std::function<void(const std::string& message)>;
        34 
        40  virtual void publish(const std::string& message) = 0;
        41 
        49  virtual void subscribe(MessageHandler handler, const std::string& topic = "", const std::string& action = "") = 0;
        50 
        57  virtual std::shared_ptr<MessageStream> openStream(const std::string& streamId, MessageStream::Mode mode) = 0;
        58 };
        59 
        60 } // namespace core
        61 } // namespace aace
        62 
        63 #endif
        Definition: MessageBroker.h:31
        -
        Definition: AddressBook.h:26
        -
        virtual std::shared_ptr< MessageStream > openStream(const std::string &streamId, MessageStream::Mode mode)=0
        -
        virtual void subscribe(MessageHandler handler, const std::string &topic="", const std::string &action="")=0
        -
        virtual void publish(const std::string &message)=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_message_stream_8h_source.html b/docs/docs/doxygen-docs/cpp/_message_stream_8h_source.html deleted file mode 100644 index 12efd6493..000000000 --- a/docs/docs/doxygen-docs/cpp/_message_stream_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: MessageStream.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        MessageStream.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CORE_MESSAGE_STREAM_H
        17 #define AACE_CORE_MESSAGE_STREAM_H
        18 
        19 #include <iostream>
        20 
        23 namespace aace {
        24 namespace core {
        25 
        26 class MessageStream {
        27 public:
        28  enum class Mode { READ, WRITE, READ_WRITE };
        29 
        30  virtual ~MessageStream() = default;
        31 
        41  virtual ssize_t read(char* data, const size_t size) = 0;
        42 
        51  virtual ssize_t write(const char* data, const size_t size) = 0;
        52 
        59  virtual bool isClosed() = 0;
        60 
        66  virtual MessageStream::Mode getMode() = 0;
        67 };
        68 
        69 inline std::ostream& operator<<(std::ostream& stream, const MessageStream::Mode& mode) {
        70  switch (mode) {
        71  case MessageStream::Mode::READ:
        72  stream << "READ";
        73  break;
        74  case MessageStream::Mode::WRITE:
        75  stream << "WRITE";
        76  break;
        77  case MessageStream::Mode::READ_WRITE:
        78  stream << "READ_WRITE";
        79  break;
        80  }
        81  return stream;
        82 }
        83 
        84 } // namespace core
        85 } // namespace aace
        86 
        87 #endif // AACE_CORE_MESSAGE_STREAM_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_message_utils_8h_source.html b/docs/docs/doxygen-docs/cpp/_message_utils_8h_source.html deleted file mode 100644 index 79dad8e62..000000000 --- a/docs/docs/doxygen-docs/cpp/_message_utils_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: MessageUtils.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        MessageUtils.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AASB_UTILS_MESSAGE_UTILS_H_
        17 #define AASB_UTILS_MESSAGE_UTILS_H_
        18 
        19 #include <string>
        20 
        21 namespace aasb {
        22 namespace utils {
        23 
        24 namespace uuid {
        34 std::string generateUUID();
        35 } // namespace uuid
        36 
        37 namespace string {
        41 bool equal(const std::string& str1, const std::string& str2, bool caseSensitive = true);
        42 } // namespace string
        43 
        44 } // namespace utils
        45 } // namespace aasb
        46 
        47 #endif // AASB_UTILS_MESSAGE_UTILS_H_
        Definition: MessageUtils.h:21
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_messaging_8h_source.html b/docs/docs/doxygen-docs/cpp/_messaging_8h_source.html deleted file mode 100644 index ac2adc120..000000000 --- a/docs/docs/doxygen-docs/cpp/_messaging_8h_source.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - -Alexa Auto SDK: Messaging.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        Messaging.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_MESSAGING_MESSAGING_H
        17 #define AACE_MESSAGING_MESSAGING_H
        18 
        19 #include <memory>
        20 #include <string>
        21 
        22 #include "AACE/Core/PlatformInterface.h"
        23 #include "MessagingEngineInterface.h"
        24 
        25 namespace aace {
        26 namespace messaging {
        27 
        47 protected:
        48  Messaging() = default;
        49 
        50 public:
        54  using ErrorCode = MessagingEngineInterface::ErrorCode;
        55 
        59  using ConnectionState = MessagingEngineInterface::ConnectionState;
        60 
        64  using PermissionState = MessagingEngineInterface::PermissionState;
        65 
        66  virtual ~Messaging();
        67 
        90  virtual void sendMessage(const std::string& token, const std::string& message, const std::string& recipients) = 0;
        91 
        100  virtual void uploadConversations(const std::string& token) = 0;
        101 
        121  virtual void updateMessagesStatus(
        122  const std::string& token,
        123  const std::string& conversationId,
        124  const std::string& status) = 0;
        125 
        131  void sendMessageSucceeded(const std::string& token);
        132 
        140  void sendMessageFailed(const std::string& token, ErrorCode code, const std::string& message = "");
        141 
        200  void conversationsReport(const std::string& token, const std::string& conversations);
        201 
        207  void updateMessagesStatusSucceeded(const std::string& token);
        208 
        216  void updateMessagesStatusFailed(const std::string& token, ErrorCode code, const std::string& message = "");
        217 
        227  ConnectionState connectionState,
        228  PermissionState sendPermission,
        229  PermissionState readPermission);
        230 
        237  void setEngineInterface(std::shared_ptr<MessagingEngineInterface> messagingEngineInterface);
        238 
        239 private:
        240  std::shared_ptr<MessagingEngineInterface> m_messagingEngineInterface;
        241 };
        242 
        249 inline std::string errorCodeToString(Messaging::ErrorCode code) {
        250  switch (code) {
        251  case Messaging::ErrorCode::GENERIC_FAILURE:
        252  return "GENERIC_FAILURE";
        253  case Messaging::ErrorCode::NO_CONNECTIVITY:
        254  return "NO_CONNECTIVITY";
        255  case Messaging::ErrorCode::NO_PERMISSION:
        256  return "NO_PERMISSION";
        257  }
        258 
        259  return "UNKNOWN";
        260 }
        261 
        268 inline std::string connectionStateToString(Messaging::ConnectionState connection) {
        269  switch (connection) {
        270  case Messaging::ConnectionState::CONNECTED:
        271  return "CONNECTED";
        272  case Messaging::ConnectionState::DISCONNECTED:
        273  return "DISCONNECTED";
        274  }
        275 
        276  return "UNKNOWN";
        277 }
        278 
        285 inline std::string permissionStateToString(Messaging::PermissionState permission) {
        286  switch (permission) {
        287  case Messaging::PermissionState::ON:
        288  return "ON";
        289  case Messaging::PermissionState::OFF:
        290  return "OFF";
        291  }
        292 
        293  return "UNKNOWN";
        294 }
        295 
        296 } // namespace messaging
        297 } // namespace aace
        298 
        299 #endif // AACE_MESSAGING_MESSAGING_H
        virtual void sendMessage(const std::string &token, const std::string &message, const std::string &recipients)=0
        -
        void updateMessagesStatusSucceeded(const std::string &token)
        Definition: Messaging.cpp:45
        -
        Definition: PlatformInterface.h:29
        -
        void sendMessageFailed(const std::string &token, ErrorCode code, const std::string &message="")
        Definition: Messaging.cpp:27
        -
        Definition: AddressBook.h:26
        -
        virtual void updateMessagesStatus(const std::string &token, const std::string &conversationId, const std::string &status)=0
        -
        virtual void uploadConversations(const std::string &token)=0
        -
        void conversationsReport(const std::string &token, const std::string &conversations)
        Definition: Messaging.cpp:21
        -
        void sendMessageSucceeded(const std::string &token)
        Definition: Messaging.cpp:33
        -
        void updateMessagesStatusFailed(const std::string &token, ErrorCode code, const std::string &message="")
        Definition: Messaging.cpp:39
        -
        void updateMessagingEndpointState(ConnectionState connectionState, PermissionState sendPermission, PermissionState readPermission)
        Definition: Messaging.cpp:51
        -
        Definition: Messaging.h:46
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_messaging_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_messaging_engine_interface_8h_source.html deleted file mode 100644 index 2134a9028..000000000 --- a/docs/docs/doxygen-docs/cpp/_messaging_engine_interface_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: MessagingEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        MessagingEngineInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_MESSAGING_MESSAGINGENGINEINTERFACE_H
        17 #define AACE_MESSAGING_MESSAGINGENGINEINTERFACE_H
        18 
        19 namespace aace {
        20 namespace messaging {
        21 
        22 class MessagingEngineInterface {
        23 public:
        24  virtual ~MessagingEngineInterface() = default;
        25 
        29  enum class ErrorCode {
        31  GENERIC_FAILURE,
        32 
        34  NO_CONNECTIVITY,
        35 
        37  NO_PERMISSION
        38  };
        39 
        43  enum class ConnectionState {
        45  DISCONNECTED,
        46 
        48  CONNECTED
        49  };
        50 
        54  enum class PermissionState {
        56  OFF,
        57 
        59  ON
        60  };
        61 
        62  virtual void onConversationsReport(const std::string& token, const std::string& conversations) = 0;
        63  virtual void onSendMessageFailed(const std::string& token, ErrorCode code, const std::string& message) = 0;
        64  virtual void onSendMessageSucceeded(const std::string& token) = 0;
        65  virtual void onUpdateMessagesStatusFailed(const std::string& token, ErrorCode code, const std::string& message) = 0;
        66  virtual void onUpdateMessagesStatusSucceeded(const std::string& token) = 0;
        67  virtual void onUpdateMessagingEndpointState(
        68  ConnectionState connectionState,
        69  PermissionState sendPermission,
        70  PermissionState readPermission) = 0;
        71 };
        72 
        73 } // namespace messaging
        74 } // namespace aace
        75 
        76 #endif // AACE_MESSAGING_MESSAGINGENGINEINTERFACE_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_metrics_uploader_8h_source.html b/docs/docs/doxygen-docs/cpp/_metrics_uploader_8h_source.html deleted file mode 100644 index d5b1a1cd8..000000000 --- a/docs/docs/doxygen-docs/cpp/_metrics_uploader_8h_source.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: MetricsUploader.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        MetricsUploader.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_METRICS_METRICS_UPLOADER_H
        17 #define AACE_METRICS_METRICS_UPLOADER_H
        18 
        19 #include "AACE/Core/PlatformInterface.h"
        20 #include <unordered_map>
        21 #include <string>
        22 #include <vector>
        23 
        26 namespace aace {
        27 namespace metrics {
        28 
        38 public:
        42  enum class DatapointType {
        46  TIMER,
        50  STRING,
        54  COUNTER
        55  };
        56 
        60  class Datapoint {
        61  public:
        62  Datapoint(DatapointType type, std::string name, std::string value, int count);
        63  DatapointType getType() const {
        64  return m_type;
        65  }
        66  std::string getName() const {
        67  return m_name;
        68  }
        69  std::string getValue() const {
        70  return m_value;
        71  }
        72  int getCount() const {
        73  return m_count;
        74  }
        75 
        76  private:
        77  DatapointType m_type;
        78  std::string m_name;
        79  std::string m_value;
        80  int m_count;
        81  };
        82 
        83 protected:
        84  MetricsUploader() = default;
        85 
        86 public:
        87  virtual ~MetricsUploader();
        88 
        98  virtual bool record(
        99  const std::vector<Datapoint>& datapoints,
        100  const std::unordered_map<std::string, std::string>& metadata,
        101  bool buffer,
        102  bool unique) = 0;
        103 };
        104 
        105 } // namespace metrics
        106 } // namespace aace
        107 
        108 #endif // AACE_METRICS_METRICS_UPLOADER_H
        -
        Definition: PlatformInterface.h:29
        -
        virtual bool record(const std::vector< Datapoint > &datapoints, const std::unordered_map< std::string, std::string > &metadata, bool buffer, bool unique)=0
        -
        Definition: AddressBook.h:26
        -
        Definition: MetricsUploader.h:37
        - -
        Definition: MetricsUploader.h:60
        - -
        DatapointType
        Definition: MetricsUploader.h:42
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_navigation_8h_source.html b/docs/docs/doxygen-docs/cpp/_navigation_8h_source.html deleted file mode 100644 index b099b6239..000000000 --- a/docs/docs/doxygen-docs/cpp/_navigation_8h_source.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - -Alexa Auto SDK: Navigation.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        Navigation.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_NAVIGATION_NAVIGATION_H
        17 #define AACE_NAVIGATION_NAVIGATION_H
        18 
        19 #include <iostream>
        20 #include <string>
        21 #include <vector>
        22 #include "AACE/Core/PlatformInterface.h"
        23 #include "NavigationEngineInterfaces.h"
        24 
        27 namespace aace {
        28 namespace navigation {
        29 
        39 protected:
        40  Navigation() = default;
        41 
        42 public:
        43  using EventName = aace::navigation::NavigationEngineInterface::EventName;
        44 
        45  using ErrorType = aace::navigation::NavigationEngineInterface::ErrorType;
        46 
        47  using ErrorCode = aace::navigation::NavigationEngineInterface::ErrorCode;
        48 
        49  using AlternateRouteType = aace::navigation::NavigationEngineInterface::AlternateRouteType;
        50 
        51  virtual ~Navigation();
        52 
        53  enum class ControlDisplay {
        54 
        59 
        64 
        68  ZOOM_IN,
        69 
        73  ZOOM_OUT,
        74 
        79 
        84 
        89 
        93  SCROLL_UP,
        94 
        99 
        103  SCROLL_RIGHT,
        104 
        108  SCROLL_SOUTH,
        109 
        113  SCROLL_DOWN,
        114 
        118  SCROLL_WEST,
        119 
        123  SCROLL_LEFT,
        124 
        129 
        134  };
        135 
        136  // user requested road regulation type
        137  enum class RoadRegulation { SPEED_LIMIT, CARPOOL_RULES };
        138 
        139  /*
        140  * Notifies the platform implementation to display list of previous waypoints
        141  */
        142  virtual void showPreviousWaypoints() = 0;
        143 
        144  /*
        145  * Notifies the platform implementation to start navigation to the previous waypoint
        146  */
        147  virtual void navigateToPreviousWaypoint() = 0;
        148 
        149  /*
        150  * Notifies the platform implementation to show alternative routes
        151  *
        152  * @param [in] alternateRouteType The type of alternate route requested
        153  */
        154  virtual void showAlternativeRoutes(AlternateRouteType alternateRouteType) = 0;
        155 
        156  /*
        157  * Notifies the platform implementation to perform user interaction with the onscreen map application
        158  * @param [in] controlDisplay the user requested map control
        159  */
        160  virtual void controlDisplay(ControlDisplay controlDisplay) = 0;
        161 
        168  virtual bool cancelNavigation() = 0;
        169 
        252  virtual std::string getNavigationState() = 0;
        253 
        341  virtual void startNavigation(const std::string& payload) = 0;
        342 
        379  virtual void announceManeuver(const std::string& payload) = 0;
        380 
        386  virtual void announceRoadRegulation(RoadRegulation roadRegulation) = 0;
        387 
        402  void navigationEvent(EventName event);
        403 
        421  void navigationError(ErrorType type, ErrorCode code, const std::string& description);
        422 
        449  void showAlternativeRoutesSucceeded(const std::string& payload);
        450 
        451  void setEngineInterface(std::shared_ptr<NavigationEngineInterface> navigationEngineInterface);
        452 
        453 private:
        454  std::shared_ptr<NavigationEngineInterface> m_navigationEngineInterface;
        455 };
        456 
        457 inline std::ostream& operator<<(std::ostream& stream, const Navigation::EventName& eventName) {
        458  switch (eventName) {
        459  case NavigationEngineInterface::EventName::NAVIGATION_STARTED:
        460  stream << "NAVIGATION_STARTED";
        461  break;
        462  case NavigationEngineInterface::EventName::PREVIOUS_WAYPOINTS_SHOWN:
        463  stream << "PREVIOUS_WAYPOINTS_SHOWN";
        464  break;
        465  case NavigationEngineInterface::EventName::PREVIOUS_NAVIGATION_STARTED:
        466  stream << "PREVIOUS_NAVIGATION_STARTED";
        467  break;
        468  case NavigationEngineInterface::EventName::ROUTE_OVERVIEW_SHOWN:
        469  stream << "ROUTE_OVERVIEW_SHOWN";
        470  break;
        471  case NavigationEngineInterface::EventName::DIRECTIONS_LIST_SHOWN:
        472  stream << "DIRECTIONS_LIST_SHOWN";
        473  break;
        474  case NavigationEngineInterface::EventName::ZOOMED_IN:
        475  stream << "ZOOMED_IN";
        476  break;
        477  case NavigationEngineInterface::EventName::ZOOMED_OUT:
        478  stream << "ZOOMED_OUT";
        479  break;
        480  case NavigationEngineInterface::EventName::MAP_CENTERED:
        481  stream << "MAP_CENTERED";
        482  break;
        483  case NavigationEngineInterface::EventName::ORIENTED_NORTH:
        484  stream << "ORIENTED_NORTH";
        485  break;
        486  case NavigationEngineInterface::EventName::SCROLLED_NORTH:
        487  stream << "SCROLLED_NORTH";
        488  break;
        489  case NavigationEngineInterface::EventName::SCROLLED_UP:
        490  stream << "SCROLLED_UP";
        491  break;
        492  case NavigationEngineInterface::EventName::SCROLLED_EAST:
        493  stream << "SCROLLED_EAST";
        494  break;
        495  case NavigationEngineInterface::EventName::SCROLLED_RIGHT:
        496  stream << "SCROLLED_RIGHT";
        497  break;
        498  case NavigationEngineInterface::EventName::SCROLLED_SOUTH:
        499  stream << "SCROLLED_SOUTH";
        500  break;
        501  case NavigationEngineInterface::EventName::SCROLLED_DOWN:
        502  stream << "SCROLLED_DOWN";
        503  break;
        504  case NavigationEngineInterface::EventName::SCROLLED_WEST:
        505  stream << "SCROLLED_WEST";
        506  break;
        507  case NavigationEngineInterface::EventName::SCROLLED_LEFT:
        508  stream << "SCROLLED_LEFT";
        509  break;
        510  case NavigationEngineInterface::EventName::ROUTE_GUIDANCE_MUTED:
        511  stream << "ROUTE_GUIDANCE_MUTED";
        512  break;
        513  case NavigationEngineInterface::EventName::ROUTE_GUIDANCE_UNMUTED:
        514  stream << "ROUTE_GUIDANCE_UNMUTED";
        515  break;
        516  case NavigationEngineInterface::EventName::DEFAULT_ALTERNATE_ROUTES_SHOWN:
        517  stream << "DEFAULT_ALTERNATE_ROUTES_SHOWN";
        518  break;
        519  case NavigationEngineInterface::EventName::SHORTER_TIME_ROUTES_SHOWN:
        520  stream << "SHORTER_TIME_ROUTES_SHOWN";
        521  break;
        522  case NavigationEngineInterface::EventName::SHORTER_DISTANCE_ROUTES_SHOWN:
        523  stream << "SHORTER_TIME_ROUTES_SHOWN";
        524  break;
        525  case NavigationEngineInterface::EventName::TURN_GUIDANCE_ANNOUNCED:
        526  stream << "TURN_GUIDANCE_ANNOUNCED";
        527  break;
        528  case NavigationEngineInterface::EventName::EXIT_GUIDANCE_ANNOUNCED:
        529  stream << "EXIT_GUIDANCE_ANNOUNCED";
        530  break;
        531  case NavigationEngineInterface::EventName::ENTER_GUIDANCE_ANNOUNCED:
        532  stream << "ENTER_GUIDANCE_ANNOUNCED";
        533  break;
        534  case NavigationEngineInterface::EventName::MERGE_GUIDANCE_ANNOUNCED:
        535  stream << "MERGE_GUIDANCE_ANNOUNCED";
        536  break;
        537  case NavigationEngineInterface::EventName::LANE_GUIDANCE_ANNOUNCED:
        538  stream << "LANE_GUIDANCE_ANNOUNCED";
        539  break;
        540  case NavigationEngineInterface::EventName::SPEED_LIMIT_REGULATION_ANNOUNCED:
        541  stream << "SPEED_LIMIT_REGULATION_ANNOUNCED";
        542  break;
        543  case NavigationEngineInterface::EventName::CARPOOL_RULES_REGULATION_ANNOUNCED:
        544  stream << "CARPOOL_RULES_REGULATION_ANNOUNCED";
        545  break;
        546  }
        547  return stream;
        548 }
        549 
        550 inline std::ostream& operator<<(std::ostream& stream, const Navigation::ErrorType& errorType) {
        551  switch (errorType) {
        552  case NavigationEngineInterface::ErrorType::NAVIGATION_START_FAILED:
        553  stream << "NAVIGATION_START_FAILED";
        554  break;
        555  case NavigationEngineInterface::ErrorType::SHOW_PREVIOUS_WAYPOINTS_FAILED:
        556  stream << "SHOW_PREVIOUS_WAYPOINTS_FAILED";
        557  break;
        558  case NavigationEngineInterface::ErrorType::PREVIOUS_NAVIGATION_START_FAILED:
        559  stream << "PREVIOUS_NAVIGATION_START_FAILED";
        560  break;
        561  case NavigationEngineInterface::ErrorType::ROUTE_OVERVIEW_FAILED:
        562  stream << "ROUTE_OVERVIEW_FAILED";
        563  break;
        564  case NavigationEngineInterface::ErrorType::DIRECTIONS_LIST_FAILED:
        565  stream << "DIRECTIONS_LIST_FAILED";
        566  break;
        567  case NavigationEngineInterface::ErrorType::ZOOM_IN_FAILED:
        568  stream << "ZOOM_IN_FAILED";
        569  break;
        570  case NavigationEngineInterface::ErrorType::ZOOM_OUT_FAILED:
        571  stream << "ZOOM_OUT_FAILED";
        572  break;
        573  case NavigationEngineInterface::ErrorType::CENTER_FAILED:
        574  stream << "CENTER_FAILED";
        575  break;
        576  case NavigationEngineInterface::ErrorType::ORIENT_NORTH_FAILED:
        577  stream << "ORIENT_NORTH_FAILED";
        578  break;
        579  case NavigationEngineInterface::ErrorType::SCROLL_NORTH_FAILED:
        580  stream << "SCROLL_NORTH_FAILED";
        581  break;
        582  case NavigationEngineInterface::ErrorType::SCROLL_UP_FAILED:
        583  stream << "SCROLL_UP_FAILED";
        584  break;
        585  case NavigationEngineInterface::ErrorType::SCROLL_EAST_FAILED:
        586  stream << "SCROLL_EAST_FAILED";
        587  break;
        588  case NavigationEngineInterface::ErrorType::SCROLL_RIGHT_FAILED:
        589  stream << "SCROLL_RIGHT_FAILED";
        590  break;
        591  case NavigationEngineInterface::ErrorType::SCROLL_SOUTH_FAILED:
        592  stream << "SCROLL_SOUTH_FAILED";
        593  break;
        594  case NavigationEngineInterface::ErrorType::SCROLL_DOWN_FAILED:
        595  stream << "SCROLL_DOWN_FAILED";
        596  break;
        597  case NavigationEngineInterface::ErrorType::SCROLL_WEST_FAILED:
        598  stream << "SCROLL_WEST_FAILED";
        599  break;
        600  case NavigationEngineInterface::ErrorType::SCROLL_LEFT_FAILED:
        601  stream << "SCROLL_LEFT_FAILED";
        602  break;
        603  case NavigationEngineInterface::ErrorType::MUTED_ROUTE_GUIDANCE_FAILED:
        604  stream << "MUTED_ROUTE_GUIDANCE_FAILED";
        605  break;
        606  case NavigationEngineInterface::ErrorType::UNMUTED_ROUTE_GUIDANCE_FAILED:
        607  stream << "UNMUTED_ROUTE_GUIDANCE_FAILED";
        608  break;
        609  case NavigationEngineInterface::ErrorType::DEFAULT_ALTERNATE_ROUTES_FAILED:
        610  stream << "DEFAULT_ALTERNATE_ROUTES_FAILED";
        611  break;
        612  case NavigationEngineInterface::ErrorType::SHORTER_TIME_ROUTES_FAILED:
        613  stream << "DEFAULT_ALTERNATE_ROUTES_FAILED";
        614  break;
        615  case NavigationEngineInterface::ErrorType::SHORTER_DISTANCE_ROUTES_FAILED:
        616  stream << "SHORTER_DISTANCE_ROUTES_FAILED";
        617  break;
        618  case NavigationEngineInterface::ErrorType::TURN_GUIDANCE_FAILED:
        619  stream << "TURN_GUIDANCE_FAILED";
        620  break;
        621  case NavigationEngineInterface::ErrorType::EXIT_GUIDANCE_FAILED:
        622  stream << "TURN_GUIDANCE_FAILED";
        623  break;
        624  case NavigationEngineInterface::ErrorType::ENTER_GUIDANCE_FAILED:
        625  stream << "ENTER_GUIDANCE_FAILED";
        626  break;
        627  case NavigationEngineInterface::ErrorType::MERGE_GUIDANCE_FAILED:
        628  stream << "MERGE_GUIDANCE_FAILED";
        629  break;
        630  case NavigationEngineInterface::ErrorType::LANE_GUIDANCE_FAILED:
        631  stream << "LANE_GUIDANCE_FAILED";
        632  break;
        633  case NavigationEngineInterface::ErrorType::SPEED_LIMIT_REGULATION_FAILED:
        634  stream << "SPEED_LIMIT_REGULATION_FAILED";
        635  break;
        636  case NavigationEngineInterface::ErrorType::CARPOOL_RULES_REGULATION_FAILED:
        637  stream << "CARPOOL_RULES_REGULATION_FAILED";
        638  break;
        639  }
        640  return stream;
        641 }
        642 
        643 inline std::ostream& operator<<(std::ostream& stream, const Navigation::ErrorCode& errorCode) {
        644  switch (errorCode) {
        645  case NavigationEngineInterface::ErrorCode::INTERNAL_SERVICE_ERROR:
        646  stream << "INTERNAL_SERVICE_ERROR";
        647  break;
        648  case NavigationEngineInterface::ErrorCode::ROUTE_NOT_FOUND:
        649  stream << "ROUTE_NOT_FOUND";
        650  break;
        651  case NavigationEngineInterface::ErrorCode::NO_PREVIOUS_WAYPOINTS:
        652  stream << "NO_PREVIOUS_WAYPOINTS";
        653  break;
        654  case NavigationEngineInterface::ErrorCode::NOT_SUPPORTED:
        655  stream << "NOT_SUPPORTED";
        656  break;
        657  case NavigationEngineInterface::ErrorCode::NOT_ALLOWED:
        658  stream << "NOT_ALLOWED";
        659  break;
        660  case NavigationEngineInterface::ErrorCode::NOT_NAVIGATING:
        661  stream << "NOT_NAVIGATING";
        662  break;
        663  }
        664  return stream;
        665 }
        666 
        667 inline std::ostream& operator<<(std::ostream& stream, const Navigation::AlternateRouteType& alternateRouteType) {
        668  switch (alternateRouteType) {
        669  case NavigationEngineInterface::AlternateRouteType::DEFAULT:
        670  stream << "DEFAULT";
        671  break;
        672  case NavigationEngineInterface::AlternateRouteType::SHORTER_TIME:
        673  stream << "SHORTER_TIME";
        674  break;
        675  case NavigationEngineInterface::AlternateRouteType::SHORTER_DISTANCE:
        676  stream << "SHORTER_DISTANCE";
        677  break;
        678  }
        679  return stream;
        680 }
        681 
        682 inline std::ostream& operator<<(std::ostream& stream, const Navigation::RoadRegulation& roadRegulation) {
        683  switch (roadRegulation) {
        684  case Navigation::RoadRegulation::SPEED_LIMIT:
        685  stream << "SPEED_LIMIT";
        686  break;
        687  case Navigation::RoadRegulation::CARPOOL_RULES:
        688  stream << "CARPOOL_RULES";
        689  break;
        690  }
        691  return stream;
        692 }
        693 
        694 inline std::ostream& operator<<(std::ostream& stream, const Navigation::ControlDisplay& controlDisplay) {
        695  switch (controlDisplay) {
        697  stream << "SHOW_ROUTE_OVERVIEW";
        698  break;
        700  stream << "SHOW_DIRECTIONS_LIST";
        701  break;
        703  stream << "ZOOM_IN";
        704  break;
        706  stream << "ZOOM_OUT";
        707  break;
        709  stream << "CENTER_MAP_ON_CURRENT_LOCATION";
        710  break;
        712  stream << "ORIENT_NORTH";
        713  break;
        715  stream << "SCROLL_NORTH";
        716  break;
        718  stream << "SCROLL_UP";
        719  break;
        721  stream << "SCROLL_EAST";
        722  break;
        724  stream << "SCROLL_RIGHT";
        725  break;
        727  stream << "SCROLL_SOUTH";
        728  break;
        730  stream << "SCROLL_DOWN";
        731  break;
        733  stream << "SCROLL_WEST";
        734  break;
        736  stream << "SCROLL_LEFT";
        737  break;
        739  stream << "MUTE_ROUTE_GUIDANCE";
        740  break;
        742  stream << "UNMUTE_ROUTE_GUIDANCE";
        743  break;
        744  }
        745  return stream;
        746 }
        747 
        748 } // namespace navigation
        749 } // namespace aace
        750 
        751 #endif // AACE_NAVIGATION_NAVIGATION_H
        - - -
        Definition: Navigation.h:38
        -
        void navigationEvent(EventName event)
        Definition: Navigation.cpp:23
        - - -
        Definition: PlatformInterface.h:29
        - - -
        virtual void announceRoadRegulation(RoadRegulation roadRegulation)=0
        - - -
        virtual void announceManeuver(const std::string &payload)=0
        - -
        virtual bool cancelNavigation()=0
        -
        Definition: AddressBook.h:26
        -
        virtual std::string getNavigationState()=0
        - -
        void showAlternativeRoutesSucceeded(const std::string &payload)
        Definition: Navigation.cpp:35
        - -
        virtual void startNavigation(const std::string &payload)=0
        -
        void navigationError(ErrorType type, ErrorCode code, const std::string &description)
        Definition: Navigation.cpp:29
        - - - - -
        ControlDisplay
        Definition: Navigation.h:53
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_navigation_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_navigation_configuration_8h_source.html deleted file mode 100644 index fbd35b029..000000000 --- a/docs/docs/doxygen-docs/cpp/_navigation_configuration_8h_source.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: NavigationConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        NavigationConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_NAVIGATION_NAVIGATION_CONFIGURATION_H
        17 #define AACE_NAVIGATION_NAVIGATION_CONFIGURATION_H
        18 
        19 #include <string>
        20 
        21 #include "AACE/Core/EngineConfiguration.h"
        22 
        25 namespace aace {
        26 namespace navigation {
        27 namespace config {
        28 
        33 public:
        49  static std::shared_ptr<aace::core::config::EngineConfiguration> createNavigationConfig(
        50  const std::string& providerName);
        51 };
        52 
        53 } // namespace config
        54 } // namespace navigation
        55 } // namespace aace
        56 
        57 #endif // AACE_NAVIGATION_NAVIGATION_CONFIGURATION_H
        static std::shared_ptr< aace::core::config::EngineConfiguration > createNavigationConfig(const std::string &providerName)
        -
        Definition: AddressBook.h:26
        -
        Definition: NavigationConfiguration.h:32
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_navigation_engine_interfaces_8h_source.html b/docs/docs/doxygen-docs/cpp/_navigation_engine_interfaces_8h_source.html deleted file mode 100644 index 4749d175a..000000000 --- a/docs/docs/doxygen-docs/cpp/_navigation_engine_interfaces_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: NavigationEngineInterfaces.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        NavigationEngineInterfaces.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AAC_NAVIGATION_NAVIGATION_ENGINE_INTERFACES_H
        17 #define AAC_NAVIGATION_NAVIGATION_ENGINE_INTERFACES_H
        18 
        19 namespace aace {
        20 namespace navigation {
        21 
        22 class NavigationEngineInterface {
        23 public:
        24  virtual ~NavigationEngineInterface() = default;
        25 
        26  enum class EventName {
        27  /*
        28  * Navigation was started. Send in response to startNavigation() directive.
        29  */
        30  NAVIGATION_STARTED,
        31 
        32  /*
        33  * List of previous waypoints was displayed. Send in response to showPreviousWaypoints() directive.
        34  */
        35  PREVIOUS_WAYPOINTS_SHOWN,
        36 
        37  /*
        38  * The previous navigation route was started. Send in response to navigateToPreviousWaypoint() directive.
        39  */
        40  PREVIOUS_NAVIGATION_STARTED,
        41 
        42  /*
        43  * Overview of route was displayed. Send in response to controlDisplay() directive.
        44  */
        45  ROUTE_OVERVIEW_SHOWN,
        46 
        47  /*
        48  * List of directions was displayed. Send in response to controlDisplay() directive.
        49  */
        50  DIRECTIONS_LIST_SHOWN,
        51 
        52  /*
        53  * Map successfully zoomed in. Send in response to controlDisplay() directive.
        54  */
        55  ZOOMED_IN,
        56 
        57  /*
        58  * Map successfully zoomed out. Send in response to controlDisplay() directive.
        59  */
        60  ZOOMED_OUT,
        61 
        62  /*
        63  * Map successfully centered. Send in response to controlDisplay() directive.
        64  */
        65  MAP_CENTERED,
        66 
        67  /*
        68  * Map successfully aligned with north up. Send in response to controlDisplay() directive.
        69  */
        70  ORIENTED_NORTH,
        71 
        72  /*
        73  * Map successfully moved in North direction. Send in response to controlDisplay() directive.
        74  */
        75  SCROLLED_NORTH,
        76 
        77  /*
        78  * Map successfully moved upwards. Send in response to controlDisplay() directive.
        79  */
        80  SCROLLED_UP,
        81 
        82  /*
        83  * Map successfully moved in East direction. Send in response to controlDisplay() directive.
        84  */
        85  SCROLLED_EAST,
        86 
        87  /*
        88  * Map successfully moved rightwards. Send in response to controlDisplay() directive.
        89  */
        90  SCROLLED_RIGHT,
        91 
        92  /*
        93  * Map successfully moved in South direction. Send in response to controlDisplay() directive.
        94  */
        95  SCROLLED_SOUTH,
        96 
        97  /*
        98  * Map successfully moved downwards. Send in response to controlDisplay() directive.
        99  */
        100  SCROLLED_DOWN,
        101 
        102  /*
        103  * Map successfully moved in West direction. Send in response to controlDisplay() directive.
        104  */
        105  SCROLLED_WEST,
        106 
        107  /*
        108  * Map successfully moved leftwards. Send in response to controlDisplay() directive.
        109  */
        110  SCROLLED_LEFT,
        111 
        112  /*
        113  * Map sounds were muted. Send in response to controlDisplay() directive.
        114  */
        115  ROUTE_GUIDANCE_MUTED,
        116 
        117  /*
        118  * Map sounds were unmuted. Send in response to controlDisplay() directive.
        119  */
        120  ROUTE_GUIDANCE_UNMUTED,
        121 
        122  /*
        123  * @deprecated
        124  * This enum is deprecated and will be removed in future. Use the showAlternativeRoutesSucceeded() API instead
        125  */
        126  DEFAULT_ALTERNATE_ROUTES_SHOWN,
        127 
        128  /*
        129  * @deprecated
        130  * This enum is deprecated and will be removed in future. Use the showAlternativeRoutesSucceeded() API instead
        131  */
        132  SHORTER_TIME_ROUTES_SHOWN,
        133 
        134  /*
        135  * @deprecated
        136  * This enum is deprecated and will be removed in future. Use the showAlternativeRoutesSucceeded() API instead
        137  */
        138  SHORTER_DISTANCE_ROUTES_SHOWN,
        139 
        140  /*
        141  * Next turn was successfully announced. Send in response to announceManeuver() directive.
        142  */
        143  TURN_GUIDANCE_ANNOUNCED,
        144 
        145  /*
        146  * Next exit was successfully announced. Send in response to announceManeuver() directive.
        147  */
        148  EXIT_GUIDANCE_ANNOUNCED,
        149 
        150  /*
        151  * Directions for entering successfully announced. Send in response to announceManeuver() directive.
        152  */
        153  ENTER_GUIDANCE_ANNOUNCED,
        154 
        155  /*
        156  * Directions for merging successfully announced. Send in response to announceManeuver() directive.
        157  */
        158  MERGE_GUIDANCE_ANNOUNCED,
        159 
        160  /*
        161  * Lane guidance was successfully announced. Send in response to announceManeuver() directive.
        162  */
        163  LANE_GUIDANCE_ANNOUNCED,
        164 
        165  /*
        166  * Current speed limit successfully announced. Send in response to announceRoadRegulation() directive.
        167  */
        168  SPEED_LIMIT_REGULATION_ANNOUNCED,
        169 
        170  /*
        171  * Carpool status successfully announced. Send in response to announceRoadRegulation() directive.
        172  */
        173  CARPOOL_RULES_REGULATION_ANNOUNCED
        174  };
        175 
        176  enum class ErrorType {
        180  NAVIGATION_START_FAILED,
        181 
        185  SHOW_PREVIOUS_WAYPOINTS_FAILED,
        186 
        190  PREVIOUS_NAVIGATION_START_FAILED,
        191 
        192  /*
        193  * Overview of route was failed to display. Send in response to controlDisplay() directive.
        194  */
        195  ROUTE_OVERVIEW_FAILED,
        196 
        197  /*
        198  * List of directions was failed to display. Send in response to controlDisplay() directive.
        199  */
        200  DIRECTIONS_LIST_FAILED,
        201 
        202  /*
        203  * Map zoom-in unsuccessful. Send in response to controlDisplay() directive.
        204  */
        205  ZOOM_IN_FAILED,
        206 
        207  /*
        208  * Map zoom-out unsuccessful. Send in response to controlDisplay() directive.
        209  */
        210  ZOOM_OUT_FAILED,
        211 
        212  /*
        213  * Map centering unsuccessful. Send in response to controlDisplay() directive.
        214  */
        215  CENTER_FAILED,
        216 
        217  /*
        218  * Map alignment to north unsuccessful. Send in response to controlDisplay() directive.
        219  */
        220  ORIENT_NORTH_FAILED,
        221 
        222  /*
        223  * Moving map North was unsuccessful. Send in response to controlDisplay() directive.
        224  */
        225  SCROLL_NORTH_FAILED,
        226 
        227  /*
        228  * Moving map upwards was unsuccessful. Send in response to controlDisplay() directive.
        229  */
        230  SCROLL_UP_FAILED,
        231 
        232  /*
        233  * Moving map East was unsuccessful. Send in response to controlDisplay() directive.
        234  */
        235  SCROLL_EAST_FAILED,
        236 
        237  /*
        238  * Moving map rightwards was unsuccessful. Send in response to controlDisplay() directive.
        239  */
        240  SCROLL_RIGHT_FAILED,
        241 
        242  /*
        243  * Moving map South was unsuccessful. Send in response to controlDisplay() directive.
        244  */
        245  SCROLL_SOUTH_FAILED,
        246 
        247  /*
        248  * Moving map downwards was unsuccessful. Send in response to controlDisplay() directive.
        249  */
        250  SCROLL_DOWN_FAILED,
        251 
        252  /*
        253  * Moving map west was unsuccessful. Send in response to controlDisplay() directive.
        254  */
        255  SCROLL_WEST_FAILED,
        256 
        257  /*
        258  * Moving map leftwards was unsuccessful. Send in response to controlDisplay() directive.
        259  */
        260  SCROLL_LEFT_FAILED,
        261 
        262  /*
        263  * Map sounds failed to be muted. Send in response to controlDisplay() directive.
        264  */
        265  MUTED_ROUTE_GUIDANCE_FAILED,
        266 
        267  /*
        268  * Map sounds failed to be unmuted. Send in response to controlDisplay() directive.
        269  */
        270  UNMUTED_ROUTE_GUIDANCE_FAILED,
        271 
        272  /*
        273  * Displaying default alternate routes was unsuccessful. Send in response to showAlternativeRoutes() directive.
        274  */
        275  DEFAULT_ALTERNATE_ROUTES_FAILED,
        276 
        277  /*
        278  * Displaying alternate routes with shorter times was unsuccessful. Send in response to showAlternativeRoutes() directive.
        279  */
        280  SHORTER_TIME_ROUTES_FAILED,
        281 
        282  /*
        283  * Displaying alternate routes with shorter distances was unsuccessful. Send in response to showAlternativeRoutes() directive.
        284  */
        285  SHORTER_DISTANCE_ROUTES_FAILED,
        286 
        287  /*
        288  * Next turn announcement was unsuccessful. Send in response to announceManeuver() directive.
        289  */
        290  TURN_GUIDANCE_FAILED,
        291 
        292  /*
        293  * Next exit announcement was unsuccessful. Send in response to announceManeuver() directive.
        294  */
        295  EXIT_GUIDANCE_FAILED,
        296 
        297  /*
        298  * Announcement for entering directions was unsuccessful. Send in response to announceManeuver() directive.
        299  */
        300  ENTER_GUIDANCE_FAILED,
        301 
        302  /*
        303  * Announcement for merging directions was unsuccessful. Send in response to announceManeuver() directive.
        304  */
        305  MERGE_GUIDANCE_FAILED,
        306 
        307  /*
        308  * Lane guidance announcement was unsuccessful. Send in response to announceManeuver() directive.
        309  */
        310  LANE_GUIDANCE_FAILED,
        311 
        312  /*
        313  * Current speed limit announcement was unsuccessful. Send in response to announceRoadRegulation() directive.
        314  */
        315  SPEED_LIMIT_REGULATION_FAILED,
        316 
        317  /*
        318  * Carpool status announcement was unsuccessful. Send in response to announceRoadRegulation() directive.
        319  */
        320  CARPOOL_RULES_REGULATION_FAILED
        321  };
        322 
        323  enum class ErrorCode {
        327  INTERNAL_SERVICE_ERROR,
        328 
        332  ROUTE_NOT_FOUND,
        333 
        337  NO_PREVIOUS_WAYPOINTS,
        338 
        342  NOT_SUPPORTED,
        343 
        347  NOT_ALLOWED,
        348 
        352  NOT_NAVIGATING
        353  };
        354 
        355  // user requested alternate route
        356  enum class AlternateRouteType {
        357  DEFAULT,
        358 
        359  SHORTER_TIME,
        360 
        361  SHORTER_DISTANCE
        362  };
        363 
        364  virtual void onNavigationEvent(EventName event) = 0;
        365  virtual void onNavigationError(ErrorType type, ErrorCode code, const std::string& description) = 0;
        366  virtual void onShowAlternativeRoutesSucceeded(const std::string& payload) = 0;
        367 };
        368 
        369 } // namespace navigation
        370 } // namespace aace
        371 
        372 #endif
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_network_engine_interfaces_8h_source.html b/docs/docs/doxygen-docs/cpp/_network_engine_interfaces_8h_source.html deleted file mode 100644 index 164a87297..000000000 --- a/docs/docs/doxygen-docs/cpp/_network_engine_interfaces_8h_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: NetworkEngineInterfaces.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        NetworkEngineInterfaces.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_NETWORK_NETWORK_ENGINE_INTERFACES_H
        17 #define AACE_NETWORK_NETWORK_ENGINE_INTERFACES_H
        18 
        21 #include <iostream>
        22 
        23 namespace aace {
        24 namespace network {
        25 
        30 public:
        31  virtual ~NetworkInfoProviderEngineInterface() = default;
        32 
        36  enum class NetworkStatus {
        37 
        41  UNKNOWN,
        53  CONNECTED,
        58  };
        59 
        60  virtual void networkInfoChanged(NetworkStatus status, int wifiSignalStrength) = 0;
        61 };
        62 
        63 inline std::ostream& operator<<(std::ostream& stream, const NetworkInfoProviderEngineInterface::NetworkStatus& status) {
        64  switch (status) {
        66  stream << "UNKNOWN";
        67  break;
        69  stream << "DISCONNECTED";
        70  break;
        72  stream << "DISCONNECTING";
        73  break;
        75  stream << "CONNECTED";
        76  break;
        78  stream << "CONNECTING";
        79  break;
        80  }
        81  return stream;
        82 }
        83 
        84 } // namespace network
        85 } // namespace aace
        86 
        87 #endif // AACE_NETWORK_NETWORK_ENGINE_INTERFACES_H
        -
        NetworkStatus
        Definition: NetworkEngineInterfaces.h:36
        -
        Definition: AddressBook.h:26
        - - -
        Definition: NetworkEngineInterfaces.h:29
        - - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_network_info_provider_8h_source.html b/docs/docs/doxygen-docs/cpp/_network_info_provider_8h_source.html deleted file mode 100644 index 792a52fb3..000000000 --- a/docs/docs/doxygen-docs/cpp/_network_info_provider_8h_source.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: NetworkInfoProvider.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        NetworkInfoProvider.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_NETWORK_NETWORK_INFO_PROVIDER_H
        17 #define AACE_NETWORK_NETWORK_INFO_PROVIDER_H
        18 
        19 #include <string>
        20 #include <chrono>
        21 
        22 #include "AACE/Core/PlatformInterface.h"
        23 #include "NetworkEngineInterfaces.h"
        24 
        27 namespace aace {
        28 namespace network {
        29 
        39 protected:
        40  NetworkInfoProvider() = default;
        41 
        42 public:
        48 
        49  virtual ~NetworkInfoProvider();
        50 
        56  virtual NetworkStatus getNetworkStatus() = 0;
        57 
        63  virtual int getWifiSignalStrength() = 0;
        64 
        71  void networkStatusChanged(NetworkStatus status, int wifiSignalStrength);
        72 
        79  void setEngineInterface(std::shared_ptr<NetworkInfoProviderEngineInterface> networkInfoProviderEngineInterface);
        80 
        81 private:
        82  std::shared_ptr<NetworkInfoProviderEngineInterface> m_networkInfoProviderEngineInterface;
        83 };
        84 
        85 } // namespace network
        86 } // namespace aace
        87 
        88 #endif // AACE_NETWORK_NETWORK_INFO_PROVIDER_H
        -
        Definition: PlatformInterface.h:29
        -
        NetworkStatus
        Definition: NetworkEngineInterfaces.h:36
        -
        Definition: AddressBook.h:26
        -
        Definition: NetworkInfoProvider.h:38
        -
        virtual NetworkStatus getNetworkStatus()=0
        -
        void networkStatusChanged(NetworkStatus status, int wifiSignalStrength)
        Definition: NetworkInfoProvider.cpp:23
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_network_properties_8h_source.html b/docs/docs/doxygen-docs/cpp/_network_properties_8h_source.html deleted file mode 100644 index c88d53a89..000000000 --- a/docs/docs/doxygen-docs/cpp/_network_properties_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: NetworkProperties.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        NetworkProperties.h
        -
        -
        -
        1 /*
        2  * Copyright 2019-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_NETWORK_PROPERTY_NETWORK_PROPERTIES_H
        17 #define AACE_NETWORK_PROPERTY_NETWORK_PROPERTIES_H
        18 
        19 #include <string>
        20 
        23 namespace aace {
        24 namespace network {
        25 namespace property {
        26 
        33 static const std::string NETWORK_INTERFACE = "aace.network.networkInterface";
        34 
        46 static const std::string NETWORK_HTTP_PROXY_HEADERS = "aace.network.httpProxyHeaders";
        47 
        48 } // namespace property
        49 } // namespace network
        50 } // namespace aace
        51 
        52 #endif // AACE_NETWORK_PROPERTY_NETWORK_PROPERTIES_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_notifications_8h_source.html b/docs/docs/doxygen-docs/cpp/_notifications_8h_source.html deleted file mode 100644 index f9c7a17af..000000000 --- a/docs/docs/doxygen-docs/cpp/_notifications_8h_source.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Notifications.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        Notifications.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_NOTIFICATIONS_H
        17 #define AACE_ALEXA_NOTIFICATIONS_H
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 #include "AlexaEngineInterfaces.h"
        21 
        24 namespace aace {
        25 namespace alexa {
        26 
        44 protected:
        45  Notifications() = default;
        46 
        47 public:
        48  virtual ~Notifications();
        49 
        53  enum class IndicatorState {
        54 
        58  OFF = 0,
        59 
        63  ON = 1,
        64 
        68  UNKNOWN
        69  };
        70 
        76  virtual void setIndicator(IndicatorState state) = 0;
        77 
        81  virtual void onNotificationReceived(){};
        82 };
        83 
        84 inline std::ostream& operator<<(std::ostream& stream, const Notifications::IndicatorState& state) {
        85  switch (state) {
        87  stream << "OFF";
        88  break;
        90  stream << "ON";
        91  break;
        93  stream << "UNKNOWN";
        94  break;
        95  }
        96  return stream;
        97 }
        98 
        99 } // namespace alexa
        100 } // namespace aace
        101 
        102 #endif // AACE_ALEXA_NOTIFICATIONS_H
        IndicatorState
        Definition: Notifications.h:53
        - -
        Definition: PlatformInterface.h:29
        - -
        Definition: AddressBook.h:26
        - -
        virtual void onNotificationReceived()
        Definition: Notifications.h:81
        -
        Definition: Notifications.h:43
        -
        virtual void setIndicator(IndicatorState state)=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_phone_call_controller_8h_source.html b/docs/docs/doxygen-docs/cpp/_phone_call_controller_8h_source.html deleted file mode 100644 index 1331d61d4..000000000 --- a/docs/docs/doxygen-docs/cpp/_phone_call_controller_8h_source.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - -Alexa Auto SDK: PhoneCallController.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        PhoneCallController.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_PHONECALLCONTROLLER_PHONECALLCONTROLLER_H
        17 #define AACE_PHONECALLCONTROLLER_PHONECALLCONTROLLER_H
        18 
        19 #include <iostream>
        20 #include <string>
        21 #include <unordered_map>
        22 
        23 #include "AACE/Core/PlatformInterface.h"
        24 #include "PhoneCallControllerEngineInterfaces.h"
        25 
        28 namespace aace {
        29 namespace phoneCallController {
        30 
        46 protected:
        47  PhoneCallController() = default;
        48 
        49 public:
        54 
        59 
        65 
        70 
        75 
        76  virtual ~PhoneCallController();
        77 
        114  virtual bool dial(const std::string& payload) = 0;
        115 
        133  virtual bool redial(const std::string& payload) = 0;
        134 
        147  virtual void answer(const std::string& payload) = 0;
        148 
        161  virtual void stop(const std::string& payload) = 0;
        162 
        177  virtual void sendDTMF(const std::string& payload) = 0;
        178 
        185 
        193  void callStateChanged(CallState state, const std::string& callId, const std::string& callerId = "");
        194 
        202  void callFailed(const std::string& callId, CallError code, const std::string& message = "");
        203 
        210  void callerIdReceived(const std::string& callId, const std::string& callerId);
        211 
        219  void sendDTMFSucceeded(const std::string& callId);
        220 
        230  void sendDTMFFailed(const std::string& callId, DTMFError code, const std::string& message = "");
        231 
        242  void deviceConfigurationUpdated(std::unordered_map<CallingDeviceConfigurationProperty, bool> configurationMap);
        243 
        247  std::string createCallId();
        248 
        255  void setEngineInterface(std::shared_ptr<PhoneCallControllerEngineInterface> phoneCallControllerEngineInterface);
        256 
        257 private:
        258  std::shared_ptr<PhoneCallControllerEngineInterface> m_phoneCallControllerEngineInterface;
        259 };
        260 
        261 inline std::ostream& operator<<(std::ostream& stream, const PhoneCallController::ConnectionState& connectionState) {
        262  switch (connectionState) {
        264  stream << "CONNECTED";
        265  break;
        267  stream << "DISCONNECTED";
        268  break;
        269  }
        270  return stream;
        271 }
        272 
        273 inline std::ostream& operator<<(std::ostream& stream, const PhoneCallController::CallState& callState) {
        274  switch (callState) {
        276  stream << "IDLE";
        277  break;
        279  stream << "DIALING";
        280  break;
        282  stream << "OUTBOUND_RINGING";
        283  break;
        285  stream << "ACTIVE";
        286  break;
        288  stream << "CALL_RECEIVED";
        289  break;
        291  stream << "INBOUND_RINGING";
        292  break;
        293  }
        294  return stream;
        295 }
        296 
        297 inline std::ostream& operator<<(std::ostream& stream, const PhoneCallController::CallError& callError) {
        298  switch (callError) {
        300  stream << "NO_CARRIER";
        301  break;
        303  stream << "BUSY";
        304  break;
        306  stream << "NO_ANSWER";
        307  break;
        309  stream << "NO_NUMBER_FOR_REDIAL";
        310  break;
        312  stream << "OTHER";
        313  break;
        314  }
        315  return stream;
        316 }
        317 
        318 inline std::ostream& operator<<(std::ostream& stream, const PhoneCallController::DTMFError& dtmfError) {
        319  switch (dtmfError) {
        321  stream << "CALL_NOT_IN_PROGRESS";
        322  break;
        324  stream << "DTMF_FAILED";
        325  break;
        326  }
        327  return stream;
        328 }
        329 
        330 } // namespace phoneCallController
        331 } // namespace aace
        332 
        333 #endif
        -
        void deviceConfigurationUpdated(std::unordered_map< CallingDeviceConfigurationProperty, bool > configurationMap)
        Definition: PhoneCallController.cpp:56
        -
        std::string createCallId()
        Definition: PhoneCallController.cpp:63
        -
        CallError
        Definition: PhoneCallControllerEngineInterfaces.h:114
        -
        void callFailed(const std::string &callId, CallError code, const std::string &message="")
        Definition: PhoneCallController.cpp:33
        -
        CallingDeviceConfigurationProperty
        Definition: PhoneCallControllerEngineInterfaces.h:97
        - -
        Definition: PlatformInterface.h:29
        -
        virtual void answer(const std::string &payload)=0
        - - -
        Definition: AddressBook.h:26
        -
        void callStateChanged(CallState state, const std::string &callId, const std::string &callerId="")
        Definition: PhoneCallController.cpp:27
        - -
        ConnectionState
        Definition: PhoneCallControllerEngineInterfaces.h:34
        - -
        virtual void stop(const std::string &payload)=0
        -
        Definition: PhoneCallController.h:45
        -
        void sendDTMFSucceeded(const std::string &callId)
        Definition: PhoneCallController.cpp:45
        - - -
        void sendDTMFFailed(const std::string &callId, DTMFError code, const std::string &message="")
        Definition: PhoneCallController.cpp:50
        - - -
        void connectionStateChanged(ConnectionState state)
        Definition: PhoneCallController.cpp:21
        -
        virtual bool redial(const std::string &payload)=0
        -
        CallState
        Definition: PhoneCallControllerEngineInterfaces.h:52
        -
        virtual bool dial(const std::string &payload)=0
        - - - -
        void callerIdReceived(const std::string &callId, const std::string &callerId)
        Definition: PhoneCallController.cpp:39
        -
        virtual void sendDTMF(const std::string &payload)=0
        - - -
        DTMFError
        Definition: PhoneCallControllerEngineInterfaces.h:148
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_phone_call_controller_engine_interfaces_8h_source.html b/docs/docs/doxygen-docs/cpp/_phone_call_controller_engine_interfaces_8h_source.html deleted file mode 100644 index 0773753e3..000000000 --- a/docs/docs/doxygen-docs/cpp/_phone_call_controller_engine_interfaces_8h_source.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - -Alexa Auto SDK: PhoneCallControllerEngineInterfaces.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        PhoneCallControllerEngineInterfaces.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_PHONECALLCONTROLLER_PHONECALLCONTROLLER_ENGINE_INTERFACE_H
        17 #define AACE_PHONECALLCONTROLLER_PHONECALLCONTROLLER_ENGINE_INTERFACE_H
        18 
        19 namespace aace {
        20 namespace phoneCallController {
        21 
        26 public:
        27  virtual ~PhoneCallControllerEngineInterface() = default;
        28 
        34  enum class ConnectionState {
        35 
        39  CONNECTED,
        40 
        45  };
        46 
        52  enum class CallState {
        53 
        61  IDLE,
        62 
        66  DIALING,
        67 
        71  OUTBOUND_RINGING,
        72 
        80  ACTIVE,
        81 
        85  CALL_RECEIVED,
        86 
        90  INBOUND_RINGING
        91  };
        92 
        98 
        106  DTMF_SUPPORTED
        107  };
        108 
        114  enum class CallError {
        115 
        119  NO_CARRIER,
        120 
        125  BUSY,
        126 
        130  NO_ANSWER,
        131 
        135  NO_NUMBER_FOR_REDIAL,
        136 
        140  OTHER
        141  };
        142 
        148  enum class DTMFError {
        149 
        153  CALL_NOT_IN_PROGRESS,
        154 
        158  DTMF_FAILED
        159  };
        160 
        161  virtual void onConnectionStateChanged(ConnectionState state) = 0;
        162  virtual void onCallStateChanged(CallState state, const std::string& callId, const std::string& callerId) = 0;
        163  virtual void onCallFailed(const std::string& callId, CallError code, const std::string& message) = 0;
        164  virtual void onCallerIdReceived(const std::string& callId, const std::string& callerId) = 0;
        165  virtual void onSendDTMFSucceeded(const std::string& callId) = 0;
        166  virtual void onSendDTMFFailed(const std::string& callId, DTMFError code, const std::string& message) = 0;
        167  virtual void onDeviceConfigurationUpdated(
        168  std::unordered_map<PhoneCallControllerEngineInterface::CallingDeviceConfigurationProperty, bool>
        169  configurationMap) = 0;
        170  virtual std::string onCreateCallId() = 0;
        171 };
        172 
        173 } // namespace phoneCallController
        174 } // namespace aace
        175 
        176 namespace std {
        177 template <>
        179  size_t operator()(
        181  return hash<int>()(static_cast<int>(x));
        182  }
        183 };
        184 } // namespace std
        185 
        186 #endif
        CallError
        Definition: PhoneCallControllerEngineInterfaces.h:114
        -
        CallingDeviceConfigurationProperty
        Definition: PhoneCallControllerEngineInterfaces.h:97
        - -
        Definition: PhoneCallControllerEngineInterfaces.h:176
        -
        Definition: AddressBook.h:26
        -
        Definition: PhoneCallControllerEngineInterfaces.h:25
        -
        ConnectionState
        Definition: PhoneCallControllerEngineInterfaces.h:34
        -
        CallState
        Definition: PhoneCallControllerEngineInterfaces.h:52
        - -
        DTMFError
        Definition: PhoneCallControllerEngineInterfaces.h:148
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_platform_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_platform_interface_8h_source.html deleted file mode 100644 index a352f3443..000000000 --- a/docs/docs/doxygen-docs/cpp/_platform_interface_8h_source.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - -Alexa Auto SDK: PlatformInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        PlatformInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_CORE_PLATFORM_INTERFACE_H
        17 #define AACE_CORE_PLATFORM_INTERFACE_H
        18 
        19 #include <memory>
        20 
        23 namespace aace {
        24 namespace core {
        30 protected:
        31  PlatformInterface() = default;
        32 
        33 public:
        34  virtual ~PlatformInterface();
        35 };
        36 
        37 } // namespace core
        38 } // namespace aace
        39 
        40 #endif // AACE_CORE_PLATFORM_INTERFACE_H
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_playback_controller_8h_source.html b/docs/docs/doxygen-docs/cpp/_playback_controller_8h_source.html deleted file mode 100644 index 058ee1874..000000000 --- a/docs/docs/doxygen-docs/cpp/_playback_controller_8h_source.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: PlaybackController.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        PlaybackController.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_PLAYBACK_CONTROLLER_H
        17 #define AACE_ALEXA_PLAYBACK_CONTROLLER_H
        18 
        19 #include <memory>
        20 
        21 #include "AACE/Core/PlatformInterface.h"
        22 #include "AlexaEngineInterfaces.h"
        23 
        26 namespace aace {
        27 namespace alexa {
        28 
        45 protected:
        46  PlaybackController() = default;
        47 
        48 public:
        49  virtual ~PlaybackController();
        50 
        55 
        60 
        67  void buttonPressed(PlaybackButton button);
        68 
        76  void togglePressed(PlaybackToggle toggle, bool action);
        77 
        84  void setEngineInterface(
        85  std::shared_ptr<aace::alexa::PlaybackControllerEngineInterface> playbackControllerEngineInterface);
        86 
        87 private:
        88  std::weak_ptr<aace::alexa::PlaybackControllerEngineInterface> m_playbackControllerEngineInterface;
        89 };
        90 
        91 } // namespace alexa
        92 } // namespace aace
        93 
        94 #endif // AACE_ALEXA_PLAYBACK_CONTROLLER_H
        Definition: PlaybackController.h:44
        -
        Definition: PlatformInterface.h:29
        -
        void togglePressed(PlaybackToggle toggle, bool action)
        Definition: PlaybackController.cpp:29
        -
        PlaybackButton
        Definition: AlexaEngineInterfaces.h:146
        -
        Definition: AddressBook.h:26
        -
        PlaybackToggle
        Definition: AlexaEngineInterfaces.h:176
        -
        void buttonPressed(PlaybackButton button)
        Definition: PlaybackController.cpp:23
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_player_activity_8h_source.html b/docs/docs/doxygen-docs/cpp/_player_activity_8h_source.html deleted file mode 100644 index 16d366269..000000000 --- a/docs/docs/doxygen-docs/cpp/_player_activity_8h_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: PlayerActivity.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        PlayerActivity.h
        -
        -
        -
        1 /*
        2  * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_PLAYER_ACTIVITY_H
        17 #define AACE_ALEXA_PLAYER_ACTIVITY_H
        18 
        19 #include <iostream>
        20 
        26 namespace aace {
        27 
        31 namespace alexa {
        32 
        36 enum class PlayerActivity {
        37 
        41  IDLE,
        42 
        46  PLAYING,
        47 
        51  STOPPED,
        52 
        56  PAUSED,
        57 
        62 
        66  FINISHED
        67 };
        68 
        69 inline std::ostream& operator<<(std::ostream& stream, const PlayerActivity& activity) {
        70  switch (activity) {
        72  stream << "IDLE";
        73  break;
        75  stream << "PLAYING";
        76  break;
        78  stream << "STOPPED";
        79  break;
        81  stream << "PAUSED";
        82  break;
        84  stream << "BUFFER_UNDERRUN";
        85  break;
        87  stream << "FINISHED";
        88  break;
        89  }
        90  return stream;
        91 }
        92 
        93 } // namespace alexa
        94 } // namespace aace
        95 
        96 #endif // AACE_ALEXA_PLAYER_ACTIVITY_H
        - -
        PlayerActivity
        Definition: PlayerActivity.h:36
        - -
        Definition: AddressBook.h:26
        - - - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_property_manager_8h_source.html b/docs/docs/doxygen-docs/cpp/_property_manager_8h_source.html deleted file mode 100644 index 3ad0648de..000000000 --- a/docs/docs/doxygen-docs/cpp/_property_manager_8h_source.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: PropertyManager.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        PropertyManager.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_PROPERTY_MANAGER_PROPERTY_MANAGER_H
        17 #define AACE_PROPERTY_MANAGER_PROPERTY_MANAGER_H
        18 
        19 #include <iostream>
        20 #include <string>
        21 #include "AACE/Core/PlatformInterface.h"
        22 #include "PropertyManagerEngineInterface.h"
        23 
        26 namespace aace {
        27 namespace propertyManager {
        28 
        44 protected:
        45  PropertyManager() = default;
        46 
        47 public:
        48  virtual ~PropertyManager();
        49 
        50  using PropertyState = aace::propertyManager::PropertyManagerEngineInterface::PropertyState;
        64  bool setProperty(const std::string& name, const std::string& value);
        65 
        74  virtual void propertyStateChanged(const std::string& name, const std::string& value, const PropertyState state) = 0;
        75 
        91  std::string getProperty(const std::string& name);
        92 
        102  virtual void propertyChanged(const std::string& name, const std::string& newValue) = 0;
        103 
        110  void setEngineInterface(std::shared_ptr<PropertyManagerEngineInterface> propertyManagerEngineInterface);
        111 
        112 private:
        113  std::shared_ptr<PropertyManagerEngineInterface> m_propertyManagerEngineInterface;
        114 };
        115 
        116 inline std::ostream& operator<<(std::ostream& stream, const PropertyManager::PropertyState& state) {
        117  switch (state) {
        118  case PropertyManager::PropertyState::SUCCEEDED:
        119  stream << "SUCCEEDED";
        120  break;
        121  case PropertyManager::PropertyState::FAILED:
        122  stream << "FAILED";
        123  break;
        124  }
        125  return stream;
        126 }
        127 
        128 } // namespace propertyManager
        129 } // namespace aace
        130 
        131 #endif // AACE_PROPERTY_MANAGER_PROPERTY_MANAGER_H
        virtual void propertyStateChanged(const std::string &name, const std::string &value, const PropertyState state)=0
        -
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        virtual void propertyChanged(const std::string &name, const std::string &newValue)=0
        -
        bool setProperty(const std::string &name, const std::string &value)
        Definition: PropertyManager.cpp:23
        -
        Definition: PropertyManager.h:43
        -
        std::string getProperty(const std::string &name)
        Definition: PropertyManager.cpp:28
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_property_manager_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_property_manager_engine_interface_8h_source.html deleted file mode 100644 index 1943d5f5e..000000000 --- a/docs/docs/doxygen-docs/cpp/_property_manager_engine_interface_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: PropertyManagerEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        PropertyManagerEngineInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_PROPERTY_MANAGER_PROPERTY_MANAGER_ENGINE_INTERFACE_H
        17 #define AACE_PROPERTY_MANAGER_PROPERTY_MANAGER_ENGINE_INTERFACE_H
        18 
        21 namespace aace {
        22 namespace propertyManager {
        23 
        24 class PropertyManagerEngineInterface {
        25 public:
        26  virtual ~PropertyManagerEngineInterface() = default;
        27 
        31  enum class PropertyState {
        32 
        36  SUCCEEDED,
        37 
        41  FAILED,
        42 
        43  };
        44  virtual bool onSetProperty(const std::string& name, const std::string& value) = 0;
        45  virtual std::string onGetProperty(const std::string& name) = 0;
        46 };
        47 
        48 } // namespace propertyManager
        49 } // namespace aace
        50 
        51 #endif // AACE_PROPERTY_MANAGER_PROPERTY_MANAGER_ENGINE_INTERFACE_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_speech_recognizer_8h_source.html b/docs/docs/doxygen-docs/cpp/_speech_recognizer_8h_source.html deleted file mode 100644 index f64813ccf..000000000 --- a/docs/docs/doxygen-docs/cpp/_speech_recognizer_8h_source.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - -Alexa Auto SDK: SpeechRecognizer.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        SpeechRecognizer.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_SPEECH_RECOGNIZER_H
        17 #define AACE_ALEXA_SPEECH_RECOGNIZER_H
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 #include "AlexaEngineInterfaces.h"
        21 
        24 namespace aace {
        25 namespace alexa {
        26 
        45 protected:
        47 
        48 public:
        49  virtual ~SpeechRecognizer();
        50 
        56 
        57  /*
        58  * Defines an unspecified value for the speech recognizers audio index.
        59  */
        60  static constexpr uint64_t UNSPECIFIED_INDEX = SpeechRecognizerEngineInterface::UNSPECIFIED_INDEX;
        61 
        72  bool holdToTalk();
        73 
        84  bool tapToTalk();
        85 
        102  bool startCapture(
        103  Initiator initiator,
        104  uint64_t keywordBegin = UNSPECIFIED_INDEX,
        105  uint64_t keywordEnd = UNSPECIFIED_INDEX,
        106  const std::string& keyword = "");
        107 
        115  bool stopCapture();
        116 
        124  virtual bool wakewordDetected(const std::string& wakeword);
        125 
        130  virtual void endOfSpeechDetected();
        131 
        138  void setEngineInterface(
        139  std::shared_ptr<aace::alexa::SpeechRecognizerEngineInterface> speechRecognizerEngineInterface);
        140 
        141 private:
        142  std::weak_ptr<aace::alexa::SpeechRecognizerEngineInterface> m_speechRecognizerEngineInterface;
        143 };
        144 
        145 } // namespace alexa
        146 } // namespace aace
        147 
        148 #endif // AACE_ALEXA_SPEECH_RECOGNIZER_H
        bool stopCapture()
        Definition: SpeechRecognizer.cpp:46
        -
        virtual void endOfSpeechDetected()
        Definition: SpeechRecognizer.cpp:58
        -
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        Definition: SpeechRecognizer.h:44
        -
        bool holdToTalk()
        Definition: SpeechRecognizer.cpp:26
        -
        bool tapToTalk()
        Definition: SpeechRecognizer.cpp:30
        -
        virtual bool wakewordDetected(const std::string &wakeword)
        Definition: SpeechRecognizer.cpp:54
        -
        Initiator
        Definition: AlexaEngineInterfaces.h:81
        -
        bool startCapture(Initiator initiator, uint64_t keywordBegin=UNSPECIFIED_INDEX, uint64_t keywordEnd=UNSPECIFIED_INDEX, const std::string &keyword="")
        Definition: SpeechRecognizer.cpp:34
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_speech_synthesizer_8h_source.html b/docs/docs/doxygen-docs/cpp/_speech_synthesizer_8h_source.html deleted file mode 100644 index a8671e88e..000000000 --- a/docs/docs/doxygen-docs/cpp/_speech_synthesizer_8h_source.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: SpeechSynthesizer.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        SpeechSynthesizer.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_SPEECH_SYNTHESIZER_H
        17 #define AACE_ALEXA_SPEECH_SYNTHESIZER_H
        18 
        19 #include <AACE/Core/PlatformInterface.h>
        20 
        23 namespace aace {
        24 namespace alexa {
        25 
        41 protected:
        42  SpeechSynthesizer() = default;
        43 
        44 public:
        45  virtual ~SpeechSynthesizer();
        46 };
        47 
        48 } // namespace alexa
        49 } // namespace aace
        50 
        51 #endif // AACE_ALEXA_SPEECH_SYNTHESIZER_H
        Definition: PlatformInterface.h:29
        -
        Definition: AddressBook.h:26
        -
        Definition: SpeechSynthesizer.h:40
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_storage_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_storage_configuration_8h_source.html deleted file mode 100644 index 19925167e..000000000 --- a/docs/docs/doxygen-docs/cpp/_storage_configuration_8h_source.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: StorageConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        StorageConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_STORAGE_STORAGE_CONFIGURATION_H
        17 #define AACE_STORAGE_STORAGE_CONFIGURATION_H
        18 
        19 #include "AACE/Core/EngineConfiguration.h"
        20 
        23 namespace aace {
        24 namespace storage {
        25 namespace config {
        26 
        31 public:
        49  static std::shared_ptr<aace::core::config::EngineConfiguration> createLocalStorageConfig(
        50  const std::string& localStoragePath);
        51 };
        52 
        53 } // namespace config
        54 } // namespace storage
        55 } // namespace aace
        56 
        57 #endif // AACE_STORAGE_STORAGE_CONFIGURATION_H
        Definition: AddressBook.h:26
        -
        Definition: StorageConfiguration.h:30
        -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createLocalStorageConfig(const std::string &localStoragePath)
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_template_runtime_8h_source.html b/docs/docs/doxygen-docs/cpp/_template_runtime_8h_source.html deleted file mode 100644 index 5c1e81e20..000000000 --- a/docs/docs/doxygen-docs/cpp/_template_runtime_8h_source.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - -Alexa Auto SDK: TemplateRuntime.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        TemplateRuntime.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_ALEXA_TEMPLATE_RUNTIME_H
        17 #define AACE_ALEXA_TEMPLATE_RUNTIME_H
        18 
        19 #include <chrono>
        20 #include <string>
        21 
        22 #include <AACE/Core/PlatformInterface.h>
        23 #include "AlexaEngineInterfaces.h"
        24 #include "FocusState.h"
        25 #include "PlayerActivity.h"
        26 
        29 namespace aace {
        30 namespace alexa {
        31 
        47 protected:
        48  TemplateRuntime() = default;
        49 
        50 public:
        56 
        57  virtual ~TemplateRuntime();
        58 
        69  virtual void renderTemplate(const std::string& payload, FocusState focusState) = 0;
        70 
        74  virtual void clearTemplate() = 0;
        75 
        92  virtual void renderPlayerInfo(
        93  const std::string& payload,
        94  PlayerActivity audioPlayerState,
        95  std::chrono::milliseconds offset,
        96  FocusState focusState) = 0;
        97 
        101  virtual void clearPlayerInfo() = 0;
        102 
        107  void displayCardCleared();
        108 
        115  void setEngineInterface(
        116  std::shared_ptr<aace::alexa::TemplateRuntimeEngineInterface> templateRuntimeEngineInterface);
        117 
        118 private:
        119  std::weak_ptr<aace::alexa::TemplateRuntimeEngineInterface> m_templateRuntimeEngineInterface;
        120 };
        121 
        122 } // namespace alexa
        123 } // namespace aace
        124 
        125 #endif // AACE_ALEXA_TEMPLATE_RUNTIME_H
        Definition: TemplateRuntime.h:46
        -
        PlayerActivity
        Definition: PlayerActivity.h:36
        -
        Definition: PlatformInterface.h:29
        -
        virtual void renderTemplate(const std::string &payload, FocusState focusState)=0
        -
        Definition: AddressBook.h:26
        -
        FocusState
        Definition: FocusState.h:36
        -
        void displayCardCleared()
        Definition: TemplateRuntime.cpp:23
        -
        virtual void renderPlayerInfo(const std::string &payload, PlayerActivity audioPlayerState, std::chrono::milliseconds offset, FocusState focusState)=0
        -
        virtual void clearPlayerInfo()=0
        -
        virtual void clearTemplate()=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_text_to_speech_8h_source.html b/docs/docs/doxygen-docs/cpp/_text_to_speech_8h_source.html deleted file mode 100644 index be7f12ab8..000000000 --- a/docs/docs/doxygen-docs/cpp/_text_to_speech_8h_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: TextToSpeech.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        TextToSpeech.h
        -
        -
        -
        1 /*
        2  * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_TEXTTOSPEECH_TEXTTOSPEECH_H
        17 #define AACE_TEXTTOSPEECH_TEXTTOSPEECH_H
        18 
        19 #include <string>
        20 
        21 #include "AACE/Audio/AudioStream.h"
        22 #include "AACE/Core/PlatformInterface.h"
        23 #include "TextToSpeechEngineInterface.h"
        24 
        27 namespace aace {
        28 namespace textToSpeech {
        29 
        46 protected:
        47  TextToSpeech() = default;
        48 
        49 public:
        50  virtual ~TextToSpeech();
        51 
        82  bool prepareSpeech(
        83  const std::string& speechId,
        84  const std::string& text,
        85  const std::string& provider,
        86  const std::string& options = "");
        87 
        100  bool getCapabilities(const std::string& requestId, const std::string& provider);
        101 
        114  virtual void prepareSpeechCompleted(
        115  const std::string& speechId,
        116  std::shared_ptr<aace::audio::AudioStream> preparedAudio,
        117  const std::string& metadata) = 0;
        118 
        130  virtual void prepareSpeechFailed(const std::string& speechId, const std::string& reason) = 0;
        131 
        143  virtual void capabilitiesReceived(const std::string& requestId, const std::string& capabilities) = 0;
        144 
        151  void setEngineInterface(std::shared_ptr<TextToSpeechEngineInterface> ttsEngineInterface);
        152 
        153 private:
        154  std::weak_ptr<aace::textToSpeech::TextToSpeechEngineInterface> m_ttsEngineInterface;
        155 };
        156 
        157 } // namespace textToSpeech
        158 } // namespace aace
        159 
        160 #endif // AACE_TEXTTOSPEECH_TEXTTOSPEECH_H
        virtual void capabilitiesReceived(const std::string &requestId, const std::string &capabilities)=0
        -
        Definition: PlatformInterface.h:29
        -
        bool getCapabilities(const std::string &requestId, const std::string &provider)
        Definition: TextToSpeech.cpp:42
        -
        Definition: AddressBook.h:26
        -
        Definition: TextToSpeech.h:45
        -
        bool prepareSpeech(const std::string &speechId, const std::string &text, const std::string &provider, const std::string &options="")
        Definition: TextToSpeech.cpp:27
        -
        virtual void prepareSpeechFailed(const std::string &speechId, const std::string &reason)=0
        -
        virtual void prepareSpeechCompleted(const std::string &speechId, std::shared_ptr< aace::audio::AudioStream > preparedAudio, const std::string &metadata)=0
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_text_to_speech_engine_interface_8h_source.html b/docs/docs/doxygen-docs/cpp/_text_to_speech_engine_interface_8h_source.html deleted file mode 100644 index 211293d1f..000000000 --- a/docs/docs/doxygen-docs/cpp/_text_to_speech_engine_interface_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: TextToSpeechEngineInterface.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        TextToSpeechEngineInterface.h
        -
        -
        -
        1 /*
        2  * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_TEXTTOSPEECH_TEXTTOSPEECH_ENGINE_INTERFACE_H
        17 #define AACE_TEXTTOSPEECH_TEXTTOSPEECH_ENGINE_INTERFACE_H
        18 
        21 namespace aace {
        22 namespace textToSpeech {
        23 
        24 class TextToSpeechEngineInterface {
        25 public:
        26  virtual ~TextToSpeechEngineInterface() = default;
        27  virtual bool onPrepareSpeech(
        28  const std::string& speechId,
        29  const std::string& text,
        30  const std::string& provider,
        31  const std::string& options) = 0;
        32  virtual bool onGetCapabilities(const std::string& requestId, const std::string& provider) = 0;
        33 };
        34 
        35 } // namespace textToSpeech
        36 } // namespace aace
        37 
        38 #endif // AACE_TEXTTOSPEECH_TEXTTOSPEECH_ENGINE_INTERFACE_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_vehicle_configuration_8h_source.html b/docs/docs/doxygen-docs/cpp/_vehicle_configuration_8h_source.html deleted file mode 100644 index 08586dfe9..000000000 --- a/docs/docs/doxygen-docs/cpp/_vehicle_configuration_8h_source.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - -Alexa Auto SDK: VehicleConfiguration.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        VehicleConfiguration.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_VEHICLE_CONFIG_VEHICLE_CONFIGURATION_H
        17 #define AACE_VEHICLE_CONFIG_VEHICLE_CONFIGURATION_H
        18 
        19 #include <utility>
        20 
        21 #include "AACE/Core/EngineConfiguration.h"
        22 
        25 namespace aace {
        26 namespace vehicle {
        27 namespace config {
        28 
        33 public:
        37  enum class VehiclePropertyType {
        38 
        43  MAKE,
        44 
        49  MODEL,
        50 
        57  YEAR,
        58 
        63  TRIM,
        64 
        69  GEOGRAPHY,
        70 
        75  VERSION,
        76 
        82 
        88 
        93  LANGUAGE,
        94 
        99  MICROPHONE,
        100 
        105 
        109  ENGINE_TYPE,
        110 
        115 
        116  };
        117 
        121  using VehicleProperty = std::pair<VehiclePropertyType, std::string>;
        122 
        153  static std::shared_ptr<aace::core::config::EngineConfiguration> createVehicleInfoConfig(
        154  const std::vector<VehicleProperty>& propertyList);
        155 
        171  static std::shared_ptr<aace::core::config::EngineConfiguration> createOperatingCountryConfig(
        172  const std::string& operatingCountry);
        173 };
        174 
        175 inline std::ostream& operator<<(std::ostream& stream, const VehicleConfiguration::VehiclePropertyType& state) {
        176  switch (state) {
        178  stream << "MAKE";
        179  break;
        181  stream << "MODEL";
        182  break;
        184  stream << "YEAR";
        185  break;
        187  stream << "TRIM";
        188  break;
        190  stream << "GEOGRAPHY";
        191  break;
        193  stream << "VERSION";
        194  break;
        196  stream << "OPERATING_SYSTEM";
        197  break;
        199  stream << "HARDWARE_ARCH";
        200  break;
        202  stream << "LANGUAGE";
        203  break;
        205  stream << "MICROPHONE";
        206  break;
        208  stream << "VEHICLE_IDENTIFIER";
        209  break;
        211  stream << "ENGINE_TYPE";
        212  break;
        214  stream << "RSE_EMBEDDED_FIRETVS";
        215  break;
        216  }
        217  return stream;
        218 }
        219 
        220 } // namespace config
        221 } // namespace vehicle
        222 } // namespace aace
        223 
        224 #endif // AACE_VEHICLE_CONFIG_VEHICLE_CONFIGURATION_H
        static std::shared_ptr< aace::core::config::EngineConfiguration > createOperatingCountryConfig(const std::string &operatingCountry)
        - - - - -
        static std::shared_ptr< aace::core::config::EngineConfiguration > createVehicleInfoConfig(const std::vector< VehicleProperty > &propertyList)
        - - - -
        Definition: AddressBook.h:26
        - - - - - -
        std::pair< VehiclePropertyType, std::string > VehicleProperty
        Definition: VehicleConfiguration.h:121
        - -
        VehiclePropertyType
        Definition: VehicleConfiguration.h:37
        -
        Definition: VehicleConfiguration.h:32
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/_vehicle_properties_8h_source.html b/docs/docs/doxygen-docs/cpp/_vehicle_properties_8h_source.html deleted file mode 100644 index 886ac2916..000000000 --- a/docs/docs/doxygen-docs/cpp/_vehicle_properties_8h_source.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: VehicleProperties.h Source File - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        VehicleProperties.h
        -
        -
        -
        1 /*
        2  * Copyright 2017-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
        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  * A copy of the License is located at
        7  *
        8  * http://aws.amazon.com/apache2.0/
        9  *
        10  * or in the "license" file accompanying this file. This file is distributed
        11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
        12  * express or implied. See the License for the specific language governing
        13  * permissions and limitations under the License.
        14  */
        15 
        16 #ifndef AACE_VEHICLE_PROPERTY_VEHICLE_PROPERTIES_H
        17 #define AACE_VEHICLE_PROPERTY_VEHICLE_PROPERTIES_H
        18 
        21 namespace aace {
        22 namespace vehicle {
        23 namespace property {
        24 
        30 static const std::string OPERATING_COUNTRY = "aace.vehicle.operatingCountry";
        31 
        32 } // namespace property
        33 } // namespace vehicle
        34 } // namespace aace
        35 
        36 #endif // AACE_VEHICLE_PROPERTY_VEHICLE_PROPERTIES_H
        Definition: AddressBook.h:26
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/aace-logo.png b/docs/docs/doxygen-docs/cpp/aace-logo.png deleted file mode 100644 index aec2c5013..000000000 Binary files a/docs/docs/doxygen-docs/cpp/aace-logo.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/annotated.html b/docs/docs/doxygen-docs/cpp/annotated.html deleted file mode 100644 index 4c2338bc6..000000000 --- a/docs/docs/doxygen-docs/cpp/annotated.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        -
        Class List
        -
        -
        -
        Here are the classes, structs, unions and interfaces with brief descriptions:
        -
        [detail level 1234]
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
         Naace
         NaddressBook
         Nconfig
         CAddressBook
         Nalexa
         Nconfig
         CAlerts
         CAlertsEngineInterface
         CAlexaClient
         CAlexaClientEngineInterface
         CAlexaSpeaker
         CAlexaSpeakerEngineInterface
         CAudioPlayer
         CAudioPlayerEngineInterface
         CAuthProvider
         CAuthProviderEngineInterface
         CDeviceSetup
         CDeviceSetupEngineInterface
         CDoNotDisturb
         CDoNotDisturbEngineInterface
         CEqualizerController
         CEqualizerControllerEngineInterface
         CExternalMediaAdapter
         CExternalMediaAdapterEngineInterface
         CFeatureDiscoveryEngineInterface
         CGlobalPreset
         CLocalMediaSource
         CLocalMediaSourceEngineInterface
         CMediaPlaybackRequestor
         CMediaPlaybackRequestorEngineInterface
         CNotifications
         CPlaybackController
         CPlaybackControllerEngineInterface
         CSpeechRecognizer
         CSpeechRecognizerEngineInterface
         CSpeechSynthesizer
         CTemplateRuntime
         CTemplateRuntimeEngineInterface
         Napl
         Nconfig
         CAPL
         Naudio
         CAudioInputProvider
         CAudioOutput
         CAudioOutputProvider
         CAudioStreamProperty
         Nauthorization
         CAuthorization
         CAuthorizationEngineInterface
         Nbluetooth
         CBluetoothProvider
         NcarControl
         Nconfig
         CCarControl
         Ncbl
         Nconfig
         CCBL
         Nconnectivity
         CAlexaConnectivity
         Ncore
         Nconfig
         CEngine
         CMessageBroker
         CPlatformInterface
         NdeviceUsage
         CDeviceUsage
         CDeviceUsageEngineInterface
         Nlocation
         CLocation
         CLocationProvider
         CLocationProviderEngineInterface
         Nlogger
         Nconfig
         CLogger
         CLoggerEngineInterface
         Nmessaging
         CMessaging
         Nmetrics
         CMetricsUploader
         Nnavigation
         Nconfig
         CNavigation
         Nnetwork
         CNetworkInfoProvider
         CNetworkInfoProviderEngineInterface
         NphoneCallController
         CPhoneCallController
         CPhoneCallControllerEngineInterface
         NpropertyManager
         CPropertyManager
         Nstorage
         Nconfig
         NtextToSpeech
         CTextToSpeech
         Nvehicle
         Nconfig
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/bc_s.png b/docs/docs/doxygen-docs/cpp/bc_s.png deleted file mode 100644 index 224b29aa9..000000000 Binary files a/docs/docs/doxygen-docs/cpp/bc_s.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/bdwn.png b/docs/docs/doxygen-docs/cpp/bdwn.png deleted file mode 100644 index 940a0b950..000000000 Binary files a/docs/docs/doxygen-docs/cpp/bdwn.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book-members.html deleted file mode 100644 index 72db9ef60..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::addressBook::AddressBook Member List
        -
        -
        - -

        This is the complete list of members for aace::addressBook::AddressBook, including all inherited members.

        - - - - -
        addAddressBook(const std::string &addressBookSourceId, const std::string &name, AddressBookType type)aace::addressBook::AddressBook
        getEntries(const std::string &addressBookSourceId, std::weak_ptr< IAddressBookEntriesFactory > factory)=0aace::addressBook::AddressBookpure virtual
        removeAddressBook(const std::string &addressBookSourceId)aace::addressBook::AddressBook
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book.html b/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book.html deleted file mode 100644 index 98f36157d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::addressBook::AddressBook Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::addressBook::AddressBook Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        class  IAddressBookEntriesFactory
         
        - - - - - - - -

        -Public Member Functions

        bool addAddressBook (const std::string &addressBookSourceId, const std::string &name, AddressBookType type)
         
        bool removeAddressBook (const std::string &addressBookSourceId)
         
        virtual bool getEntries (const std::string &addressBookSourceId, std::weak_ptr< IAddressBookEntriesFactory > factory)=0
         
        -

        Detailed Description

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ addAddressBook()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::addressBook::AddressBook::addAddressBook (const std::string & addressBookSourceId,
        const std::string & name,
        AddressBookType type 
        )
        -
        -

        Notifies the engine on an availability of an address book

        -
        Parameters
        - - - - -
        [in]addressBookSourceIdA unique identifier for an address book.
        [in]nameFriendly name of the address book, or an empty string if not available.
        [in]typeType of the address book AddressBookType.
        -
        -
        -
        Returns
        false if address book was already added or some internal error otherwise true on successful.
        - -
        -
        - -

        ◆ removeAddressBook()

        - -
        -
        - - - - - - - - -
        bool aace::addressBook::AddressBook::removeAddressBook (const std::string & addressBookSourceId)
        -
        -

        Notifies the engine on a non-availability of an already available address book.

        -
        Parameters
        - - -
        [in]addressBookSourceIdA unique identifier for an address book. Set this to empty string for engine to remove all uploaded address books.
        -
        -
        -
        Returns
        false if address book does not already added or some internal error otherwise true on successful.
        - -
        -
        - -

        ◆ getEntries()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual bool aace::addressBook::AddressBook::getEntries (const std::string & addressBookSourceId,
        std::weak_ptr< IAddressBookEntriesFactoryfactory 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to ingest address book entries using factory methods. Please note that engine may call this function multiple times to get the entries of the same address book.

        -
        Parameters
        - - - -
        [in]addressBookSourceIdA unique identifier for an address book added using addAddressBook
        [in]factoryFactory class for ingesting address book entries.
        -
        -
        -
        Returns
        Return true if platform implementation has successfully ingested all the entries of the address book otherwise false.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory-members.html deleted file mode 100644 index b16b6488f..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::addressBook::AddressBook::IAddressBookEntriesFactory Member List
        -
        -
        - -

        This is the complete list of members for aace::addressBook::AddressBook::IAddressBookEntriesFactory, including all inherited members.

        - - - - - - - -
        addEntry(const std::string &payload)=0aace::addressBook::AddressBook::IAddressBookEntriesFactorypure virtual
        addName(const std::string &entryId, const std::string &name)=0aace::addressBook::AddressBook::IAddressBookEntriesFactorypure virtual
        addName(const std::string &entryId, const std::string &firstName, const std::string &lastName)=0aace::addressBook::AddressBook::IAddressBookEntriesFactorypure virtual
        addName(const std::string &entryId, const std::string &firstName, const std::string &lastName, const std::string &nickname, const std::string &phoneticFirstName="", const std::string &phoneticLastName="")=0aace::addressBook::AddressBook::IAddressBookEntriesFactorypure virtual
        addPhone(const std::string &entryId, const std::string &label, const std::string &number)=0aace::addressBook::AddressBook::IAddressBookEntriesFactorypure virtual
        addPostalAddress(const std::string &entryId, const std::string &label, const std::string &addressLine1, const std::string &addressLine2, const std::string &addressLine3, const std::string &city, const std::string &stateOrRegion, const std::string &districtOrCounty, const std::string &postalCode, const std::string &country, float latitudeInDegrees, float longitudeInDegrees, float accuracyInMeters)=0aace::addressBook::AddressBook::IAddressBookEntriesFactorypure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html b/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html deleted file mode 100644 index 5a9e8256a..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html +++ /dev/null @@ -1,526 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::addressBook::AddressBook::IAddressBookEntriesFactory Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::addressBook::AddressBook::IAddressBookEntriesFactory Class Referenceabstract
        -
        -
        - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual bool addName (const std::string &entryId, const std::string &name)=0
         
        virtual bool addName (const std::string &entryId, const std::string &firstName, const std::string &lastName)=0
         
        virtual bool addName (const std::string &entryId, const std::string &firstName, const std::string &lastName, const std::string &nickname, const std::string &phoneticFirstName="", const std::string &phoneticLastName="")=0
         
        virtual bool addPhone (const std::string &entryId, const std::string &label, const std::string &number)=0
         
        virtual bool addPostalAddress (const std::string &entryId, const std::string &label, const std::string &addressLine1, const std::string &addressLine2, const std::string &addressLine3, const std::string &city, const std::string &stateOrRegion, const std::string &districtOrCounty, const std::string &postalCode, const std::string &country, float latitudeInDegrees, float longitudeInDegrees, float accuracyInMeters)=0
         
        virtual bool addEntry (const std::string &payload)=0
         
        -

        Detailed Description

        -

        Factory class for ingesting the AddressBook Entries.

        -

        Member Function Documentation

        - -

        ◆ addName() [1/3]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual bool aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName (const std::string & entryId,
        const std::string & name 
        )
        -
        -pure virtual
        -
        -

        Add name.

        -
        Deprecated:
        This function is deprecated. Use addEntry() instead.
        -
        Parameters
        - - - -
        [in]entryIdA unique identifier of entry in an address book.
        [in]nameName of the entry, or an empty string if not available.
        -
        -
        -
        Returns
        true on successful or false when name for the id was already added or if entryId is empty.
        - -
        -
        - -

        ◆ addName() [2/3]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual bool aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName (const std::string & entryId,
        const std::string & firstName,
        const std::string & lastName 
        )
        -
        -pure virtual
        -
        -

        Add first and last name.

        -
        Deprecated:
        This function is deprecated. Use addEntry() instead.
        -
        Parameters
        - - - - -
        [in]entryIdA unique identifier of entry in an address book.
        [in]firstNameFirst name of the entry, or an empty string if not available.
        [in]lastNameLast name of the entry, or an empty string if not available.
        -
        -
        -
        Returns
        true on successful or false when name for the id was already added or if entryId is empty.
        - -
        -
        - -

        ◆ addName() [3/3]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual bool aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName (const std::string & entryId,
        const std::string & firstName,
        const std::string & lastName,
        const std::string & nickname,
        const std::string & phoneticFirstName = "",
        const std::string & phoneticLastName = "" 
        )
        -
        -pure virtual
        -
        -

        Add first name, last name, nickname, and phonetics.

        -
        Deprecated:
        This function is deprecated. Use addEntry() instead.
        -
        Parameters
        - - - - - - - -
        [in]entryIdA unique identifier of entry in an address book.
        [in]firstNameFirst name of the entry, or an empty string if not available.
        [in]lastNameLast name of the entry, or an empty string if not available.
        [in]nicknameNickname of the entry, or an empty string if not available.
        [in]phoneticFirstNameThe phonetic first name of the entry, or an empty string if not available.
        [in]phoneticLastNameThe phonetic last name of the entry, or an empty string if not available.
        -
        -
        -
        Returns
        true if successful or false when the entryId is empty or already used.
        -
        Note
        If a name field contains Japanese Kanji characters, you are required to provide the corresponding phonetic field as well. Alexa uses the phonetic values for entity resolution and TTS when the device locale setting is "ja-JP".
        - -
        -
        - -

        ◆ addPhone()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual bool aace::addressBook::AddressBook::IAddressBookEntriesFactory::addPhone (const std::string & entryId,
        const std::string & label,
        const std::string & number 
        )
        -
        -pure virtual
        -
        -

        Add phone number(s).

        -
        Deprecated:
        This function is deprecated. Use addEntry() instead.
        -
        Parameters
        - - - - -
        [in]entryIdA unique identifier of entry in an address book.
        [in]labelAlphanumeric phone label (e.g., Home, Mobile, Work), or an empty string if not available.
        [in]numberNumeric phone number, or an empty string if not available.
        -
        -
        -
        Returns
        true on successful or false when reached the max allowed per entryId or if entryId is empty.
        -
        Note
        For the phone labels recognized by Alexa and for information about disambiguating phone numbers when multiple labels are associated with a contact, see Phone number type disambiguation.
        - -
        -
        - -

        ◆ addPostalAddress()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual bool aace::addressBook::AddressBook::IAddressBookEntriesFactory::addPostalAddress (const std::string & entryId,
        const std::string & label,
        const std::string & addressLine1,
        const std::string & addressLine2,
        const std::string & addressLine3,
        const std::string & city,
        const std::string & stateOrRegion,
        const std::string & districtOrCounty,
        const std::string & postalCode,
        const std::string & country,
        float latitudeInDegrees,
        float longitudeInDegrees,
        float accuracyInMeters 
        )
        -
        -pure virtual
        -
        -

        Add postal address(es).

        -
        Deprecated:
        This function is deprecated. Use addEntry() instead.
        -
        Parameters
        - - - - - - - - - - - - - - -
        [in]entryIdA unique identifier of entry in an address book.
        [in]labelAlphanumeric postal address label (e.g., Home, Work), or an empty string if not available.
        [in]addressLine1First line of the postal address, or an empty string if not available.
        [in]addressLine2Second line of the postal address, or an empty string if not available.
        [in]addressLine3Third line of the postal address, or an empty string if not available.
        [in]cityCity name, or an empty string if not available.
        [in]stateOrRegionState or Region name, or an empty string if not available.
        [in]districtOrCountyDistrict or County name, or an empty string if not available.
        [in]postalCodePostal code or Zip code, or an empty string if not available.
        [in]countryCountry name, or an empty string if not available.
        [in]latitudeInDegreesGeo latitude in degrees.
        [in]longitudeInDegreesGeo longitude in degrees.
        [in]accuracyInMetersAccuracy in meters, or zero if not available.
        -
        -
        -
        Returns
        true on successful or false when reached the max allowed per id or if entryId is empty.
        - -
        -
        - -

        ◆ addEntry()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::addressBook::AddressBook::IAddressBookEntriesFactory::addEntry (const std::string & payload)
        -
        -pure virtual
        -
        -

        Add name, phone number and postal address of an entry in the address book

        -
        {
        "entryId": "{{STRING}}",
        "name": {
        "firstName": "{{STRING}}",
        "lastName": "{{STRING}}",
        "nickName": "{{STRING}}",
        "phoneticFirstName": "{{STRING}}",
        "phoneticLastName": "{{STRING}}"
        },
        "phoneNumbers": [
        {
        "label": "{{STRING}}",
        "number": "{{STRING}}"
        }
        ],
        "postalAddresses": [
        {
        "label": "{{STRING}}",
        "addressLine1": "{{STRING}}",
        "addressLine2": "{{STRING}}",
        "addressLine3": "{{STRING}}",
        "city": "{{STRING}}",
        "stateOrRegion": "{{STRING}}",
        "districtOrCounty": "{{STRING}}",
        "postalCode": "{{STRING}}",
        "country": "{{STRING}}",
        "latitudeInDegrees": {{FLOAT}},
        "longitudeInDegrees": {{FLOAT}},
        "accuracyInMeters": {{FLOAT}}
        }
        ]
        }
          -
        • entryId A unique identifier for the address book entry. This field is required and must not be an empty string. Max size is 200 characters.
        • -
        • name.firstName The first name of the entry.
        • -
        • name.lastName The last name of the entry.
        • -
        • name.nickName The nick name of the entry.
        • -
        • name.phoneticFirstName The phonetic first name of the entry.
        • -
        • name.phoneticLastName The phonetic last name of the entry.
        • -
        • phoneNumbers.label Alphanumeric phone label (e.g., Home, Mobile, Work). Max size is 100 characters.
        • -
        • phoneNumbers.number Numeric phone number.
        • -
        • postalAddresses.label Alphanumeric postal address label (e.g., Home, Work). Max size is 100 characters.
        • -
        • postalAddresses.addressLine1 First line of the postal address. Max size 60.
        • -
        • postalAddresses.addressLine2 Second line of the postal address. Max size 60.
        • -
        • postalAddresses.addressLine3 Third line of the postal address. Max size 60.
        • -
        • postalAddresses.city City name of the postal address.
        • -
        • postalAddresses.stateOrRegion State or region name of the postal address.
        • -
        • postalAddresses.districtOrCounty District or county name of the postal address.
        • -
        • postalAddresses.postalCode Postal code or zip code of the postal address.
        • -
        • postalAddresses.country Country name of the postal address.
        • -
        • postalAddresses.latitudeInDegrees The latitude component of GPS geo coordinate in degrees (-90 to 90). This field is required.
        • -
        • postalAddresses.longitudeInDegrees The longitude component of GPS geo coordinate in degrees (-180 to 180). This field is required.
        • -
        • postalAddresses.accuracyInMeters GPS provided accuracy value for the geo coordinates.
        • -
        -
        Parameters
        - - -
        payloadThe address book entry data in JSON format.
        -
        -
        -
        Returns
        true if successful or false when the input validation fails.
        -
        Note
        For each field not marked required, exclude the field if the value is not available.
        -
        -If any required field is absent, the Engine returns false from addEntry() and discards the entire entry.
        -
        -The total length of all fields in the "name" element cannot exceed 1000 characters. If the element exceeds the limit, the Engine returns false from addEntry() and discards the entry.
        -
        -For each element in the “postalAddresses” or “phoneNumbers” arrays, the total number of characters used in a single element cannot exceed 1000. If an element exceeds the limit, the Engine returns false from addEntry() as a warning, uses the rest of the entry, and discards the element exceeding the limit.
        -
        -The maximum number of elements allowed in the “postalAddresses” or “phoneNumbers” array is 30. If the total number of elements exceeds the limit, the Engine returns false from addEntry() as a warning and uses the first 30 elements.
        -
        -The Engine ignores the "postalAddresses" node while ingesting entries for the address book type AddressBookType::CONTACT. Similarly, the Engine ignores the "phoneNumbers" node while ingesting entries for the address book type AddressBookType::NAVIGATION.
        -
        -For the phone labels recognized by Alexa and for information about disambiguating phone numbers when multiple labels are associated with a contact, see Phone number type disambiguation.
        -
        -If a name field contains Japanese Kanji characters, you are required to provide the corresponding phonetic field as well. Alexa uses the phonetic values for entity resolution and TTS when the device locale setting is "ja-JP".
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1config_1_1_address_book_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1config_1_1_address_book_configuration-members.html deleted file mode 100644 index 928e78dd6..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1config_1_1_address_book_configuration-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::addressBook::config::AddressBookConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::addressBook::config::AddressBookConfiguration, including all inherited members.

        - - -
        createAddressBookConfig(bool cleanAllAddressBooksAtStart=true)aace::addressBook::config::AddressBookConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1config_1_1_address_book_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1config_1_1_address_book_configuration.html deleted file mode 100644 index aa32794e7..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1address_book_1_1config_1_1_address_book_configuration.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::addressBook::config::AddressBookConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::addressBook::config::AddressBookConfiguration Class Reference
        -
        -
        - - - - -

        -Static Public Member Functions

        static std::shared_ptr< aace::core::config::EngineConfigurationcreateAddressBookConfig (bool cleanAllAddressBooksAtStart=true)
         
        -

        Detailed Description

        -

        The AddressBookConfiguration class is a factory interface for creating "aace.addressBook" configuration objects.

        -

        Member Function Documentation

        - -

        ◆ createAddressBookConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::addressBook::config::AddressBookConfiguration::createAddressBookConfig (bool cleanAllAddressBooksAtStart = true)
        -
        -static
        -
        -

        Factory method used to programmatically generate "aace.addressBook" configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.addressBook" : {
        "cleanAllAddressBooksAtStart" : <true/false>
        }
        }
        Parameters
        - - -
        [in]cleanAllAddressBooksAtStartindicates whether to clean all address books at start. The default value is true.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts-members.html deleted file mode 100644 index 471411831..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::Alerts Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::Alerts, including all inherited members.

        - - - - - - - -
        alertCreated(const std::string &alertToken, const std::string &detailedInfo)=0aace::alexa::Alertspure virtual
        alertDeleted(const std::string &alertToken)=0aace::alexa::Alertspure virtual
        AlertState enum nameaace::alexa::Alerts
        alertStateChanged(const std::string &alertToken, AlertState state, const std::string &reason)=0aace::alexa::Alertspure virtual
        localStop()aace::alexa::Alerts
        removeAllAlerts()aace::alexa::Alerts
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts.html deleted file mode 100644 index ea9a6dea7..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts.html +++ /dev/null @@ -1,347 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::Alerts Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::Alerts Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        enum  AlertState {
        -  AlertState::READY, -
        -  AlertState::STARTED, -
        -  AlertState::STOPPED, -
        -  AlertState::SNOOZED, -
        -  AlertState::COMPLETED, -
        -  AlertState::PAST_DUE, -
        -  AlertState::FOCUS_ENTERED_FOREGROUND, -
        -  AlertState::FOCUS_ENTERED_BACKGROUND, -
        -  AlertState::ERROR, -
        -  AlertState::DELETED, -
        -  AlertState::SCHEDULED_FOR_LATER -
        - }
         
        - - - - - - - - - - - -

        -Public Member Functions

        virtual void alertStateChanged (const std::string &alertToken, AlertState state, const std::string &reason)=0
         
        virtual void alertCreated (const std::string &alertToken, const std::string &detailedInfo)=0
         
        virtual void alertDeleted (const std::string &alertToken)=0
         
        void localStop ()
         
        void removeAllAlerts ()
         
        -

        Detailed Description

        -

        Alerts should be extended to handle alerts (e.g. timers, alarms, reminders) from AVS.

        -

        The platform implementation is responsible for rendering visual cues for an active alert. The Alerts MediaPlayer will receive directives from the Engine to handle alerts audio playback.

        -
        See also
        AudioChannel
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Enumeration Documentation

        - -

        ◆ AlertState

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::Alerts::AlertState
        -
        -strong
        -
        -

        Specifies the state of an alert

        - - - - - - - - - - - - -
        Enumerator
        READY 

        The alert is ready to activate and is waiting for channel focus.

        -
        STARTED 

        The alert is activated, and rendering is perceivable by the user.

        -
        STOPPED 

        The alert has stopped due to user or system intervention.

        -
        SNOOZED 

        The alert is active but has been snoozed.

        -
        COMPLETED 

        The alert has completed on its own, without user interaction.

        -
        PAST_DUE 

        The alert has expired and will not be rendered.

        -
        FOCUS_ENTERED_FOREGROUND 

        The alert has entered the foreground.

        -
        FOCUS_ENTERED_BACKGROUND 

        The alert has entered the background.

        -
        ERROR 

        The alert has encountered an error.

        -
        DELETED 

        The alert has been deleted.

        -
        SCHEDULED_FOR_LATER 

        The alert has been scheduled to trigger at a future time.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ alertStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::alexa::Alerts::alertStateChanged (const std::string & alertToken,
        AlertState state,
        const std::string & reason 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of an alert state change

        -
        Parameters
        - - - - -
        [in]alertTokenThe opaque token that uniquely identifies the alert
        [in]stateThe new alert state
        [in]reasonThe reason for the state change
        -
        -
        - -
        -
        - -

        ◆ alertCreated()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::alexa::Alerts::alertCreated (const std::string & alertToken,
        const std::string & detailedInfo 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of an alert created, with detailed alert info.

        -
        Parameters
        - - - -
        [in]alertTokenThe AVS token of the alert.
        [in]detailedInfoThe alert info payload : { "time" : <String> "type" : <String> "label" : <String> } time The time string ( Scheduled Time ISO_8601 ). type The type of the alert ( ALERT, REMINDER, TIMER ). label The label of the TIMER, description for REMINDER, or empty string for ALARM.
        -
        -
        - -
        -
        - -

        ◆ alertDeleted()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::Alerts::alertDeleted (const std::string & alertToken)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of an alert deleted, with the alertToken.

        -
        Parameters
        - - -
        [in]alertTokenThe AVS token of the alert.
        -
        -
        - -
        -
        - -

        ◆ localStop()

        - -
        -
        - - - - - - - -
        void aace::alexa::Alerts::localStop ()
        -
        -

        Notifies the Engine of a platform request to stop any active alert, such as when a user presses a physical 'stop' button.

        - -
        -
        - -

        ◆ removeAllAlerts()

        - -
        -
        - - - - - - - -
        void aace::alexa::Alerts::removeAllAlerts ()
        -
        -

        Notifies the Engine of a platform request to clear the user's pending alerts from local storage. This may be useful for a scenario in which a user's pending alerts should not go off after he logs out of the application. This does not clear the user's pending alerts from the Alexa cloud since it does not support a local 'Remove all alerts' feature.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts_engine_interface-members.html deleted file mode 100644 index 2bc459df4..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts_engine_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AlertsEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::AlertsEngineInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts_engine_interface.html deleted file mode 100644 index 88ce0b05d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alerts_engine_interface.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AlertsEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AlertsEngineInterface Class Referenceabstract
        -
        -
        -

        Detailed Description

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client-members.html deleted file mode 100644 index 55076a886..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client-members.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AlexaClient Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::AlexaClient, including all inherited members.

        - - - - - - - - - - -
        authStateChanged(AuthState state, AuthError error)aace::alexa::AlexaClientinlinevirtual
        ConnectionChangedReason enum nameaace::alexa::AlexaClient
        ConnectionStatus enum nameaace::alexa::AlexaClient
        connectionStatusChanged(ConnectionStatus status, ConnectionChangedReason reason)aace::alexa::AlexaClientinlinevirtual
        connectionStatusChanged(ConnectionStatus status, ConnectionChangedReason reason, std::vector< ConnectionStatusInfo > detailed)aace::alexa::AlexaClientinlinevirtual
        ConnectionType enum nameaace::alexa::AlexaClient
        DialogState enum nameaace::alexa::AlexaClient
        dialogStateChanged(DialogState state)aace::alexa::AlexaClientinlinevirtual
        stopForegroundActivity()aace::alexa::AlexaClient
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client.html deleted file mode 100644 index b46a96e13..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client.html +++ /dev/null @@ -1,526 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AlexaClient Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AlexaClient Class Reference
        -
        -
        - - - - -

        -Classes

        struct  ConnectionStatusInfo
         
        - - - - - - - - - -

        -Public Types

        enum  DialogState {
        -  DialogState::IDLE, -
        -  DialogState::LISTENING, -
        -  DialogState::EXPECTING, -
        -  DialogState::THINKING, -
        -  DialogState::SPEAKING -
        - }
         
        enum  ConnectionStatus {
        -  ConnectionStatus::DISCONNECTED, -
        -  ConnectionStatus::PENDING, -
        -  ConnectionStatus::CONNECTED -
        - }
         
        enum  ConnectionChangedReason {
        -  ConnectionChangedReason::NONE, -
        -  ConnectionChangedReason::SUCCESS, -
        -  ConnectionChangedReason::UNRECOVERABLE_ERROR, -
        -  ConnectionChangedReason::ACL_CLIENT_REQUEST, -
        -  ConnectionChangedReason::ACL_DISABLED, -
        -  ConnectionChangedReason::DNS_TIMEDOUT, -
        -  ConnectionChangedReason::CONNECTION_TIMEDOUT, -
        -  ConnectionChangedReason::CONNECTION_THROTTLED, -
        -  ConnectionChangedReason::INVALID_AUTH, -
        -  ConnectionChangedReason::PING_TIMEDOUT, -
        -  ConnectionChangedReason::WRITE_TIMEDOUT, -
        -  ConnectionChangedReason::READ_TIMEDOUT, -
        -  ConnectionChangedReason::FAILURE_PROTOCOL_ERROR, -
        -  ConnectionChangedReason::INTERNAL_ERROR, -
        -  ConnectionChangedReason::SERVER_INTERNAL_ERROR, -
        -  ConnectionChangedReason::SERVER_SIDE_DISCONNECT, -
        -  ConnectionChangedReason::SERVER_ENDPOINT_CHANGED -
        - }
         
        enum  ConnectionType {
        -  ConnectionType::AVS, -
        -  ConnectionType::LOCAL -
        - }
         
        - - - - - - - - - - - -

        -Public Member Functions

        virtual void dialogStateChanged (DialogState state)
         
        virtual void authStateChanged (AuthState state, AuthError error)
         
        virtual void connectionStatusChanged (ConnectionStatus status, ConnectionChangedReason reason)
         
        virtual void connectionStatusChanged (ConnectionStatus status, ConnectionChangedReason reason, std::vector< ConnectionStatusInfo > detailed)
         
        void stopForegroundActivity ()
         
        -

        Detailed Description

        -

        AlexaClient should be extended to handle Alexa state changes on the platform.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Enumeration Documentation

        - -

        ◆ DialogState

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::AlexaClient::DialogState
        -
        -strong
        -
        -

        Describes the state of Alexa dialog interaction

        - - - - - - -
        Enumerator
        IDLE 

        Alexa is idle and ready for an interaction.

        -
        LISTENING 

        Alexa is listening.

        -
        EXPECTING 

        Alexa is expecting a response from the user.

        -
        THINKING 

        A user request has completed, and no more user input is being accepted. Alexa is waiting for a response from AVS.

        -
        SPEAKING 

        Alexa is responding to a request with speech.

        -
        - -
        -
        - -

        ◆ ConnectionStatus

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::AlexaClient::ConnectionStatus
        -
        -strong
        -
        -

        Describes the AVS connection status

        - - - - -
        Enumerator
        DISCONNECTED 

        Not connected to AVS

        -
        PENDING 

        Attempting to establish a connection to AVS

        -
        CONNECTED 

        Connected to AVS

        -
        - -
        -
        - -

        ◆ ConnectionChangedReason

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::AlexaClient::ConnectionChangedReason
        -
        -strong
        -
        -

        Describes the reason for a change in AVS connection status

        - - - - - - - - - - - - - - - - - - -
        Enumerator
        NONE 

        No reason specified.

        -
        SUCCESS 

        The connection status changed due to a successful operation.

        -
        UNRECOVERABLE_ERROR 

        The connection status changed due to an error from which there is no recovery.

        -
        ACL_CLIENT_REQUEST 

        The connection status changed due to a client request.

        -
        ACL_DISABLED 

        The connection attempt failed because connection was disabled.

        -
        DNS_TIMEDOUT 

        The connection attempt failed due to a DNS resolution timeout.

        -
        CONNECTION_TIMEDOUT 

        The connection attempt failed due to a connection timeout.

        -
        CONNECTION_THROTTLED 

        The connection attempt failed due to excessive load on the server.

        -
        INVALID_AUTH 

        The provided access credentials were invalid.

        -
        PING_TIMEDOUT 

        A ping request timed out.

        -
        WRITE_TIMEDOUT 

        A write request to AVS timed out.

        -
        READ_TIMEDOUT 

        A read request from AVS timed out.

        -
        FAILURE_PROTOCOL_ERROR 

        There was an underlying protocol error.

        -
        INTERNAL_ERROR 

        There was an internal error.

        -
        SERVER_INTERNAL_ERROR 

        There was an internal error on the server.

        -
        SERVER_SIDE_DISCONNECT 

        The server asked the client to reconnect.

        -
        SERVER_ENDPOINT_CHANGED 

        The server endpoint has changed.

        -
        - -
        -
        - -

        ◆ ConnectionType

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::AlexaClient::ConnectionType
        -
        -strong
        -
        -

        Describes the connection type.

        - - - -
        Enumerator
        AVS 

        Connection to Alexa Voice Service.

        -
        LOCAL 

        Connection to local endpoint.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ dialogStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::AlexaClient::dialogStateChanged (DialogState state)
        -
        -inlinevirtual
        -
        -

        Notifies the platform implementation of an Alexa dialog state change

        -
        Parameters
        - - -
        [in]stateThe new Alexa dialog state
        -
        -
        -
        Note
        The platform implementation is responsible for providing a familiar Alexa experience for the user. See the AVS UX Attention System guidelines for recommendations on communicating Alexa attention states: https://developer.amazon.com/docs/alexa-voice-service/ux-design-attention.html#implement
        - -
        -
        - -

        ◆ authStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::alexa::AlexaClient::authStateChanged (AuthState state,
        AuthError error 
        )
        -
        -inlinevirtual
        -
        -

        Notifies the platform implementation of an AVS authorization state change

        -
        Parameters
        - - - -
        [in]stateThe new authorization state
        [in]errorThe error state of the authorization attempt
        -
        -
        - -
        -
        - -

        ◆ connectionStatusChanged() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::alexa::AlexaClient::connectionStatusChanged (ConnectionStatus status,
        ConnectionChangedReason reason 
        )
        -
        -inlinevirtual
        -
        -

        Notifies the platform implementation of an AVS connection status change

        -
        Parameters
        - - - -
        [in]statusThe new AVS connection status
        [in]reasonThe reason for the AVS connection status change
        -
        -
        - -
        -
        - -

        ◆ connectionStatusChanged() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::alexa::AlexaClient::connectionStatusChanged (ConnectionStatus status,
        ConnectionChangedReason reason,
        std::vector< ConnectionStatusInfodetailed 
        )
        -
        -inlinevirtual
        -
        -

        Notifies the platform implementation of both aggregated and detailed connection status changes.

        -
        Parameters
        - - - - -
        [in]statusThe aggregated connection status
        [in]reasonThe reason for the aggregated connection status change
        [in]detailedA vector of ConnectionStatusInfo details for each connection
        -
        -
        - -
        -
        - -

        ◆ stopForegroundActivity()

        - -
        -
        - - - - - - - -
        void aace::alexa::AlexaClient::stopForegroundActivity ()
        -
        -

        Stops the foreground activity if there is one. This acts as a "stop" button that you use to stop an ongoing activity that has acquired the audio or visual focus. This call stops all user-observable activities and returns immediately.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client_engine_interface-members.html deleted file mode 100644 index 5f8a89025..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client_engine_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AlexaClientEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::AlexaClientEngineInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client_engine_interface.html deleted file mode 100644 index 50ca214b5..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_client_engine_interface.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AlexaClientEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AlexaClientEngineInterface Class Referenceabstract
        -
        -
        -

        Detailed Description

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker-members.html deleted file mode 100644 index d1f305354..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AlexaSpeaker Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::AlexaSpeaker, including all inherited members.

        - - - - - -
        localAdjustVolume(SpeakerType type, int8_t delta)aace::alexa::AlexaSpeaker
        localSetMute(SpeakerType type, bool mute)aace::alexa::AlexaSpeaker
        localSetVolume(SpeakerType type, int8_t volume)aace::alexa::AlexaSpeaker
        speakerSettingsChanged(SpeakerType type, bool local, int8_t volume, bool mute)aace::alexa::AlexaSpeakervirtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker.html deleted file mode 100644 index 0782c7b2f..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker.html +++ /dev/null @@ -1,269 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AlexaSpeaker Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AlexaSpeaker Class Reference
        -
        -
        - - - - - - - - - - -

        -Public Member Functions

        virtual void speakerSettingsChanged (SpeakerType type, bool local, int8_t volume, bool mute)
         
        void localSetVolume (SpeakerType type, int8_t volume)
         
        void localAdjustVolume (SpeakerType type, int8_t delta)
         
        void localSetMute (SpeakerType type, bool mute)
         
        -

        Detailed Description

        -

        AlexaSpeaker is the interface for setting the Alexa volume and mute controls.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ speakerSettingsChanged()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::alexa::AlexaSpeaker::speakerSettingsChanged (SpeakerType type,
        bool local,
        int8_t volume,
        bool mute 
        )
        -
        -virtual
        -
        -

        Notifies the platform implementation that the speaker settings have changed for a specific speaker type.

        -
        Note
        Calling AlexaSpeaker::localSetVolume, AlexaSpeaker::localAdjustVolume, or AlexaSpeaker::localSetMute from inside this function will cause deadlock.
        -
        Parameters
        - - - - - -
        [in]typeThe type of Alexa speaker being set.
        [in]localtrue if the change originated from calling AlexaSpeaker::localSetVolume, AlexaSpeaker::localAdjustVolume, or AlexaSpeaker::localSetMute.
        [in]volumeThe new volume setting of the Speaker. The volume reported will be scaled to the range [0,100].
        [in]muteThe mute setting of the Speaker. true when the Speaker is muted, else false.
        -
        -
        - -
        -
        - -

        ◆ localSetVolume()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::alexa::AlexaSpeaker::localSetVolume (SpeakerType type,
        int8_t volume 
        )
        -
        -

        Notifies the Engine of a volume change event originating on the platform, such as a user pressing a "volume up" or "volume down" button. If the Speaker is Type::ALEXA_VOLUME, the Engine will respond with a call to setVolume() on each AVS-synced Speaker.

        -
        Parameters
        - - - -
        [in]typeThe type of Alexa speaker being set.
        [in]volumeThe new volume setting of the Speaker. The volume reported must be scaled to the range [0,100].
        -
        -
        - -
        -
        - -

        ◆ localAdjustVolume()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::alexa::AlexaSpeaker::localAdjustVolume (SpeakerType type,
        int8_t delta 
        )
        -
        -

        Notifies the Engine of a relative adjustment to the volume setting of the Speaker, originating on the platform. The delta value is relative to the current volume setting and is positive to increase volume or negative to reduce volume. The volume delta value should be scaled to fit the needs of the platform.

        -
        Parameters
        - - - -
        [in]typeThe type of Alexa speaker being set.
        [in]deltaThe volume adjustment to apply to the Speaker. delta is in the range [-100, 100].
        -
        -
        - -
        -
        - -

        ◆ localSetMute()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::alexa::AlexaSpeaker::localSetMute (SpeakerType type,
        bool mute 
        )
        -
        -

        Notifies the Engine of a mute setting change event originating on the platform, such as a user pressing a "mute" button. If the Speaker is Type::ALEXA_VOLUME, the Engine will respond with a call to setMute() on each AVS-synced Speaker.

        -
        Parameters
        - - - -
        [in]typeThe type of Alexa speaker being set.
        [in]muteThe new mute setting of the Speaker. true when the Speaker is muted, else false
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker_engine_interface-members.html deleted file mode 100644 index 91ac825e0..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker_engine_interface-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AlexaSpeakerEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::AlexaSpeakerEngineInterface, including all inherited members.

        - - -
        SpeakerType enum nameaace::alexa::AlexaSpeakerEngineInterface
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html deleted file mode 100644 index e16770ce9..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AlexaSpeakerEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AlexaSpeakerEngineInterface Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        enum  SpeakerType {
        -  SpeakerType::ALEXA_VOLUME, -
        -  SpeakerType::ALERTS_VOLUME -
        - }
         
        -

        Detailed Description

        -

        Member Enumeration Documentation

        - -

        ◆ SpeakerType

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::AlexaSpeakerEngineInterface::SpeakerType
        -
        -strong
        -
        -

        Specifies the type of the AlexaSpeaker to control

        - - - -
        Enumerator
        ALEXA_VOLUME 

        The Speaker type that is controlled by AVS

        -
        ALERTS_VOLUME 

        The Speaker type that is controlled locally by the platform

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player-members.html deleted file mode 100644 index 199022277..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AudioPlayer Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player.html deleted file mode 100644 index 790361e19..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AudioPlayer Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AudioPlayer Class Reference
        -
        -
        - - - - -

        -Public Types

        using PlayerActivity = aace::alexa::PlayerActivity
         
        - - - - - - - -

        -Public Member Functions

        virtual void playerActivityChanged (PlayerActivity state)
         
        int64_t getPlayerPosition ()
         
        int64_t getPlayerDuration ()
         
        - - - -

        -Static Public Attributes

        static const int64_t TIME_UNKNOWN = -1
         
        -

        Detailed Description

        -

        AudioPlayer should be extended to handle audio output from the Engine.

        -

        The AudioPlayer MediaPlayer and Speaker will receive directives from the Engine to handle audio playback.

        -
        Note
        Audio playback control operations such as on-platform button presses must be routed through the PlaybackController.
        -
        See also
        AudioChannel
        -
        -PlaybackController
        -
        -TemplateRuntime::renderPlayerInfo()
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ PlayerActivity

        - -
        -
        -

        Alias the common PlayerActivity namespace.

        - -
        -
        -

        Member Function Documentation

        - -

        ◆ playerActivityChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::AudioPlayer::playerActivityChanged (PlayerActivity state)
        -
        -inlinevirtual
        -
        -

        Notifies the platform implementation of a change in audio playback state

        -
        Parameters
        - - -
        [in]stateThe new playback state
        -
        -
        - -
        -
        - -

        ◆ getPlayerPosition()

        - -
        -
        - - - - - - - -
        int64_t aace::alexa::AudioPlayer::getPlayerPosition ()
        -
        -

        Returns the current playback position of the audio player. If the audio source is not playing, the most recent position played will be returned.

        -
        Returns
        The audio player's playback position in milliseconds, or TIME_UNKNOWN if the current media position is unknown or invalid.
        - -
        -
        - -

        ◆ getPlayerDuration()

        - -
        -
        - - - - - - - -
        int64_t aace::alexa::AudioPlayer::getPlayerDuration ()
        -
        -

        Returns the playback duration of the audio player.

        -
        Returns
        The audio player's playback duration in milliseconds, or TIME_UNKNOWN if the current media duration is unknown or invalid.
        - -
        -
        -

        Member Data Documentation

        - -

        ◆ TIME_UNKNOWN

        - -
        -
        - - - - - -
        - - - - -
        const int64_t aace::alexa::AudioPlayer::TIME_UNKNOWN = -1
        -
        -static
        -
        -

        Used when audio time is unknown or indeterminate.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player_engine_interface-members.html deleted file mode 100644 index fd6b2cc75..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player_engine_interface-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AudioPlayerEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::AudioPlayerEngineInterface, including all inherited members.

        - - - -
        onGetPlayerDuration()=0aace::alexa::AudioPlayerEngineInterfacepure virtual
        onGetPlayerPosition()=0aace::alexa::AudioPlayerEngineInterfacepure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player_engine_interface.html deleted file mode 100644 index 4abdc258d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_audio_player_engine_interface.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AudioPlayerEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AudioPlayerEngineInterface Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Member Functions

        virtual int64_t onGetPlayerPosition ()=0
         
        virtual int64_t onGetPlayerDuration ()=0
         
        -

        Detailed Description

        -

        Member Function Documentation

        - -

        ◆ onGetPlayerPosition()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual int64_t aace::alexa::AudioPlayerEngineInterface::onGetPlayerPosition ()
        -
        -pure virtual
        -
        -

        Returns the current playback position of the audio player. If the audio source is not playing, the most recent position played should be returned.

        -
        Returns
        The audio player's playback position in milliseconds, or TIME_UNKNOWN if the current media position is unknown or invalid.
        - -
        -
        - -

        ◆ onGetPlayerDuration()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual int64_t aace::alexa::AudioPlayerEngineInterface::onGetPlayerDuration ()
        -
        -pure virtual
        -
        -

        Returns the playback duration of the audio player.

        -
        Returns
        The audio player's playback duration in milliseconds, or TIME_UNKNOWN if the duration is unknown or invalid.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider-members.html deleted file mode 100644 index 90c08d721..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AuthProvider Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::AuthProvider, including all inherited members.

        - - - - - - - -
        AuthError typedefaace::alexa::AuthProvider
        authFailure(const std::string &token)aace::alexa::AuthProviderinlinevirtual
        AuthState typedefaace::alexa::AuthProvider
        authStateChanged(AuthState authState, AuthError authError)aace::alexa::AuthProvider
        getAuthState()=0aace::alexa::AuthProviderpure virtual
        getAuthToken()=0aace::alexa::AuthProviderpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider.html deleted file mode 100644 index 4437a9b95..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider.html +++ /dev/null @@ -1,270 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AuthProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AuthProvider Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Types

        using AuthState = aace::alexa::AuthProviderEngineInterface::AuthState
         
        using AuthError = aace::alexa::AuthProviderEngineInterface::AuthError
         
        - - - - - - - - - -

        -Public Member Functions

        virtual std::string getAuthToken ()=0
         
        virtual AuthState getAuthState ()=0
         
        virtual void authFailure (const std::string &token)
         
        void authStateChanged (AuthState authState, AuthError authError)
         
        -

        Detailed Description

        -

        AuthProvider should be extended to manage access tokens for AVS authorization and report client authorization state to the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ AuthState

        - -
        -
        -

        Describes the state of client authorization with AVS

        See also
        aace::alexa::AuthProviderEngineInterface::AuthState
        -
        Deprecated:
        This enum is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ AuthError

        - -
        -
        -

        Describes an error during an attempt to authorize with AVS

        See also
        aace::alexa::AuthProviderEngineInterface::AuthError
        -
        Deprecated:
        This enum is being deprecated as this platform interface is being deprecated.
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ getAuthToken()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual std::string aace::alexa::AuthProvider::getAuthToken ()
        -
        -pure virtual
        -
        -

        Returns the token used by the platform implementation for authorization with AVS. The platform implementation should retrieve an auth token if it does not have one.

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        -
        Returns
        The token used to authorize with AVS
        - -
        -
        - -

        ◆ getAuthState()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual AuthState aace::alexa::AuthProvider::getAuthState ()
        -
        -pure virtual
        -
        -

        Returns the AVS authorization state of the platform implementation

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        -
        Returns
        The AVS authorization state
        - -
        -
        - -

        ◆ authFailure()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::AuthProvider::authFailure (const std::string & token)
        -
        -inlinevirtual
        -
        -

        Notifies the platform implementation that the specified access token was used in an unauthorized request to AVS. AVS responded to this request with a 403 code indicating the token was not valid.

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        -
        Parameters
        - - -
        [in]tokenThe access token used in an unauthorized request to AVS
        -
        -
        - -
        -
        - -

        ◆ authStateChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::alexa::AuthProvider::authStateChanged (AuthState authState,
        AuthError authError 
        )
        -
        -

        Notifies the Engine of a change in AVS authorization state in the platform implementation

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        -
        Parameters
        - - - -
        [in]authStateThe new authorization state
        [in]authErrorThe error state of the authorization attempt
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider_engine_interface-members.html deleted file mode 100644 index 1f0354b0e..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider_engine_interface-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AuthProviderEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::AuthProviderEngineInterface, including all inherited members.

        - - - -
        AuthError enum nameaace::alexa::AuthProviderEngineInterface
        AuthState enum nameaace::alexa::AuthProviderEngineInterface
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider_engine_interface.html deleted file mode 100644 index cef1dc466..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_auth_provider_engine_interface.html +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AuthProviderEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AuthProviderEngineInterface Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Types

        enum  AuthState {
        -  AuthState::UNINITIALIZED, -
        -  AuthState::REFRESHED, -
        -  AuthState::EXPIRED, -
        -  AuthState::UNRECOVERABLE_ERROR -
        - }
         
        enum  AuthError {
        -  AuthError::NO_ERROR, -
        -  AuthError::UNKNOWN_ERROR, -
        -  AuthError::AUTHORIZATION_FAILED, -
        -  AuthError::UNAUTHORIZED_CLIENT, -
        -  AuthError::SERVER_ERROR, -
        -  AuthError::INVALID_REQUEST, -
        -  AuthError::INVALID_VALUE, -
        -  AuthError::AUTHORIZATION_EXPIRED, -
        -  AuthError::UNSUPPORTED_GRANT_TYPE, -
        -  AuthError::INVALID_CODE_PAIR, -
        -  AuthError::AUTHORIZATION_PENDING, -
        -  AuthError::SLOW_DOWN, -
        -  AuthError::INTERNAL_ERROR, -
        -  AuthError::INVALID_CBL_CLIENT_ID -
        - }
         
        -

        Detailed Description

        -

        Member Enumeration Documentation

        - -

        ◆ AuthState

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::AuthProviderEngineInterface::AuthState
        -
        -strong
        -
        -

        Describes the state of client authorization with AVS

        - - - - - -
        Enumerator
        UNINITIALIZED 

        Authorization has not yet been acquired.

        -
        REFRESHED 

        Authorization has been refreshed.

        -
        EXPIRED 

        Authorization has expired.

        -
        UNRECOVERABLE_ERROR 

        Authorization has failed in a manner that cannot be corrected by retrying.

        -
        - -
        -
        - -

        ◆ AuthError

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::AuthProviderEngineInterface::AuthError
        -
        -strong
        -
        -

        Describes an error during an attempt to authorize with AVS

        - - - - - - - - - - - - - - - -
        Enumerator
        NO_ERROR 

        No error encountered

        -
        UNKNOWN_ERROR 

        An error was encountered, but no error description can be determined.

        -
        AUTHORIZATION_FAILED 

        The client authorization failed.

        -
        UNAUTHORIZED_CLIENT 

        The client is not authorized to use authorization codes.

        -
        SERVER_ERROR 

        The server encountered a runtime error.

        -
        INVALID_REQUEST 

        The request is missing a required parameter, has an invalid value, or is otherwise malformed.

        -
        INVALID_VALUE 

        One of the values in the request was invalid.

        -
        AUTHORIZATION_EXPIRED 

        The authorization code is invalid, expired, revoked, or was issued to a different client.

        -
        UNSUPPORTED_GRANT_TYPE 

        The client specified the wrong token type.

        -
        INVALID_CODE_PAIR 

        Invalid code pair provided in Code-based linking token request.

        -
        AUTHORIZATION_PENDING 

        Waiting for user to authorize the specified code pair.

        -
        SLOW_DOWN 

        Client should slow down in the rate of requests polling for an access token.

        -
        INTERNAL_ERROR 

        Internal error in client code.

        -
        INVALID_CBL_CLIENT_ID 

        Client ID not valid for use with code based linking.

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup-members.html deleted file mode 100644 index 3cfee657e..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::DeviceSetup Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::DeviceSetup, including all inherited members.

        - - - - -
        setupCompleted()aace::alexa::DeviceSetup
        setupCompletedResponse(StatusCode statusCode)=0aace::alexa::DeviceSetuppure virtual
        StatusCode enum nameaace::alexa::DeviceSetup
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup.html deleted file mode 100644 index fa66a5f1c..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::DeviceSetup Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::DeviceSetup Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        enum  StatusCode {
        -  StatusCode::SUCCESS, -
        -  StatusCode::FAIL -
        - }
         
        - - - - - -

        -Public Member Functions

        virtual void setupCompletedResponse (StatusCode statusCode)=0
         
        void setupCompleted ()
         
        -

        Detailed Description

        -

        DeviceSetup platform interface should be extended and registered into the Alexa Engine. This class is used to send an event to AVS when device setup is completed. Alexa can use this event to trigger on-boarding experiences like a short first time conversation on supported devices.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/devicesetup.html setupCompleted event is triggered.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Enumeration Documentation

        - -

        ◆ StatusCode

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::DeviceSetup::StatusCode
        -
        -strong
        -
        -

        Indicates the delivery status of setupCompleted.

        - - - -
        Enumerator
        SUCCESS 

        The setupCompleted event was sent to AVS successfully.

        -
        FAIL 

        The setupCompleted event was not sent to AVS successfully.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ setupCompletedResponse()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::DeviceSetup::setupCompletedResponse (StatusCode statusCode)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of the delivery status of setupCompleted.

        - -
        -
        - -

        ◆ setupCompleted()

        - -
        -
        - - - - - - - -
        void aace::alexa::DeviceSetup::setupCompleted ()
        -
        -

        Notifies the Engine to send an event to inform Alexa when a product has completed setup after an out-of-box experience (OOBE). The response status of the sending the event will be reported through setupCompletedResponse.

        Note
        This method should be called only once after completion of OOBE. Subsequent calls may be ignored by the cloud.
        -
        -Do not call this method if user is in Connectivity Mode, Preview Mode, or if Alexa wake word is disabled. Calling the API in such conditions results in undesired user experience.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup_engine_interface-members.html deleted file mode 100644 index 5adfbb5bf..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup_engine_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::DeviceSetupEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::DeviceSetupEngineInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup_engine_interface.html deleted file mode 100644 index a94ffe9a2..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_device_setup_engine_interface.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::DeviceSetupEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::DeviceSetupEngineInterface Class Referenceabstract
        -
        -
        -

        Detailed Description

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb-members.html deleted file mode 100644 index 3005d477e..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::DoNotDisturb Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::DoNotDisturb, including all inherited members.

        - - - -
        doNotDisturbChanged(const bool doNotDisturb)aace::alexa::DoNotDisturb
        setDoNotDisturb(const bool doNotDisturb)=0aace::alexa::DoNotDisturbpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb.html deleted file mode 100644 index 5eca57493..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::DoNotDisturb Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::DoNotDisturb Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Member Functions

        virtual void setDoNotDisturb (const bool doNotDisturb)=0
         
        bool doNotDisturbChanged (const bool doNotDisturb)
         
        -

        Detailed Description

        -

        DoNotDisturb should be extended to handle receiving state changes from the engine, and for sending state change events for the Do Not Disturb Setting. For more information about Do Not Disturb see the interface overview: https://developer.amazon.com/docs/alexa-voice-service/donotdisturb.html

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ setDoNotDisturb()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::DoNotDisturb::setDoNotDisturb (const bool doNotDisturb)
        -
        -pure virtual
        -
        -

        Handle setting of DND directive.

        -
        Parameters
        - - -
        [in]doNotDisturbsetting state
        -
        -
        - -
        -
        - -

        ◆ doNotDisturbChanged()

        - -
        -
        - - - - - - - - -
        bool aace::alexa::DoNotDisturb::doNotDisturbChanged (const bool doNotDisturb)
        -
        -

        Notifies the Engine of a platform request to set the DND State

        -
        Parameters
        - - -
        [in]doNotDisturbsetting state
        -
        -
        -
        Returns
        true if successful, false if change was rejected
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb_engine_interface-members.html deleted file mode 100644 index a7aef382a..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb_engine_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::DoNotDisturbEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::DoNotDisturbEngineInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb_engine_interface.html deleted file mode 100644 index 6f9fc4664..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_do_not_disturb_engine_interface.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::DoNotDisturbEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::DoNotDisturbEngineInterface Class Referenceabstract
        -
        -
        -

        Detailed Description

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller-members.html deleted file mode 100644 index f2e29cc58..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller-members.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::EqualizerController Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::EqualizerController, including all inherited members.

        - - - - - - - - -
        EqualizerBand typedefaace::alexa::EqualizerController
        EqualizerBandLevel typedefaace::alexa::EqualizerController
        getBandLevels()=0aace::alexa::EqualizerControllerpure virtual
        localAdjustBandLevels(const std::vector< EqualizerBandLevel > &bandAdjustments)aace::alexa::EqualizerController
        localResetBands(const std::vector< EqualizerBand > &bands={})aace::alexa::EqualizerController
        localSetBandLevels(const std::vector< EqualizerBandLevel > &bandLevels)aace::alexa::EqualizerController
        setBandLevels(const std::vector< EqualizerBandLevel > &bandLevels)=0aace::alexa::EqualizerControllerpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller.html deleted file mode 100644 index 9b60c00a5..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller.html +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::EqualizerController Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::EqualizerController Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Types

        using EqualizerBand = aace::alexa::EqualizerControllerEngineInterface::EqualizerBand
         
        using EqualizerBandLevel = aace::alexa::EqualizerControllerEngineInterface::EqualizerBandLevel
         
        - - - - - - - - - - - -

        -Public Member Functions

        virtual void setBandLevels (const std::vector< EqualizerBandLevel > &bandLevels)=0
         
        virtual std::vector< EqualizerBandLevelgetBandLevels ()=0
         
        void localSetBandLevels (const std::vector< EqualizerBandLevel > &bandLevels)
         
        void localAdjustBandLevels (const std::vector< EqualizerBandLevel > &bandAdjustments)
         
        void localResetBands (const std::vector< EqualizerBand > &bands={})
         
        -

        Detailed Description

        -

        EqualizerController should be extended to use Alexa to control device equalizer settings. It supports adjusting levels of amplitude gain in decibels (dB) for a 3-band equalizer with a 1dB level of precision.

        -

        In addition to performing the audio equalization, the platform implementation is also responsible for the following:

          -
        • Mapping the provided equalizer bands to frequency ranges.
        • -
        • Scaling values as absolute levels of amplitude gain in integer dB to the platform's internal range.
        • -
        • Mapping the provided bands to a different number of platform-specific target bands, if necessary.
        • -
        • Applying equalization to only selected portions of the audio output. Alexa speech, alarms, etc. may not be affected.
        • -
        • Persisting level settings across restart/power cycle.
        • -
        -

        Device equalizer settings are configurable. See aace::alexa::config::AlexaConfiguration::createEqualizerControllerConfig for details on configuring supported bands, default state, and supported decibel ranges.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ EqualizerBand

        - -
        -
        -

        Describes the equalizer bands supported by Alexa. The platform implementation may support a subset of these.

        -
        See also
        aace::alexa::EqualizerControllerEngineInterface::EqualizerBand
        - -
        -
        - -

        ◆ EqualizerBandLevel

        - - -

        Member Function Documentation

        - -

        ◆ setBandLevels()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::EqualizerController::setBandLevels (const std::vector< EqualizerBandLevel > & bandLevels)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to apply the provided gain settings to the corresponding equalizer bands.

        -
        Note
        Calling EqualizerController::localSetBandLevels, EqualizerController::localAdjustBandLevels, or EqualizerController::localResetBands from inside this function will cause deadlock.
        -
        Parameters
        - - -
        [in]bandLevelsThe equalizer bands and their gain settings to apply as integer dB values.
        -
        -
        - -
        -
        - -

        ◆ getBandLevels()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual std::vector<EqualizerBandLevel> aace::alexa::EqualizerController::getBandLevels ()
        -
        -pure virtual
        -
        -

        Retrieves the current equalizer gain settings on the device for each supported band. If unsupported band levels are provided, the Engine will truncate levels to the configured range.

        -
        Returns
        The supported equalizer bands and their current gain settings as integer dB values.
        - -
        -
        - -

        ◆ localSetBandLevels()

        - -
        -
        - - - - - - - - -
        void aace::alexa::EqualizerController::localSetBandLevels (const std::vector< EqualizerBandLevel > & bandLevels)
        -
        -

        Notifies the Engine that gain levels for one or more equalizer bands are being set directly on the device. If unsupported levels are provided, the Engine will truncate the settings to the configured range.

        -
        Parameters
        - - -
        [in]bandLevelsThe equalizer bands to change and their gain settings as integer dB values.
        -
        -
        - -
        -
        - -

        ◆ localAdjustBandLevels()

        - -
        -
        - - - - - - - - -
        void aace::alexa::EqualizerController::localAdjustBandLevels (const std::vector< EqualizerBandLevel > & bandAdjustments)
        -
        -

        Notifies the Engine that relative adjustments to equalizer band gain levels are being made directly on the device. If adjustments put the band level settings beyond the configured dB range, the Engine will truncate the settings to the configured range.

        -
        Parameters
        - - -
        [in]bandAdjustmentsThe equalizer bands to adjust and their relative gain adjustments as integer dB values.
        -
        -
        - -
        -
        - -

        ◆ localResetBands()

        - -
        -
        - - - - - - - - -
        void aace::alexa::EqualizerController::localResetBands (const std::vector< EqualizerBand > & bands = {})
        -
        -

        Notifies the Engine that the gain levels for the equalizer bands are being reset to their defaults.

        -
        Parameters
        - - -
        [in]bandsThe equalizer bands to reset. Empty bands resets all supported equalizer bands.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller_engine_interface-members.html deleted file mode 100644 index eefd1c3e6..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller_engine_interface-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::EqualizerControllerEngineInterface Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html deleted file mode 100644 index 3ad10d157..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::EqualizerControllerEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::EqualizerControllerEngineInterface Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Types

        enum  EqualizerBand {
        -  EqualizerBand::BASS, -
        -  EqualizerBand::MIDRANGE, -
        -  EqualizerBand::TREBLE -
        - }
         
        using EqualizerBandLevel = std::pair< EqualizerBand, int >
         
        -

        Detailed Description

        -

        Member Typedef Documentation

        - -

        ◆ EqualizerBandLevel

        - -
        -
        -

        Describes the level of gain of a particular equalizer band as an integer dB value. This is an aace::alexa::EqualizerController::EqualizerBand and int pair.

        - -
        -
        -

        Member Enumeration Documentation

        - -

        ◆ EqualizerBand

        - -
        -
        -

        Describes the equalizer bands supported by Alexa. The platform implementation may support a subset of these.

        - - - - -
        Enumerator
        BASS 

        Bass equalizer band.

        -
        MIDRANGE 

        Mid-range equalizer band.

        -
        TREBLE 

        Treble equalizer band.

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter-members.html deleted file mode 100644 index 26a51ac0c..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter-members.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::ExternalMediaAdapter Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::ExternalMediaAdapter, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - - - - - - -
        adjustSeek(const std::string &localPlayerId, std::chrono::milliseconds deltaOffset)=0aace::alexa::ExternalMediaAdapterpure virtual
        authorize(const std::vector< AuthorizedPlayerInfo > &authorizedPlayers)=0aace::alexa::ExternalMediaAdapterpure virtual
        Favorites enum nameaace::alexa::ExternalMediaAdapter
        getOffset(const std::string &localPlayerId)aace::alexa::ExternalMediaAdaptervirtual
        getState(const std::string &localPlayerId, ExternalMediaAdapterState &state)=0aace::alexa::ExternalMediaAdapterpure virtual
        login(const std::string &localPlayerId, const std::string &accessToken, const std::string &userName, bool forceLogin, std::chrono::milliseconds tokenRefreshInterval)=0aace::alexa::ExternalMediaAdapterpure virtual
        loginComplete(const std::string &localPlayerId)aace::alexa::ExternalMediaAdapter
        logout(const std::string &localPlayerId)=0aace::alexa::ExternalMediaAdapterpure virtual
        logoutComplete(const std::string &localPlayerId)aace::alexa::ExternalMediaAdapter
        MediaType enum nameaace::alexa::ExternalMediaAdapter
        mutedStateChanged(MutedState state)=0aace::alexa::ExternalMediaAdapterpure virtual
        Navigation enum nameaace::alexa::ExternalMediaAdapter
        play(const std::string &localPlayerId, const std::string &playContextToken, int64_t index, std::chrono::milliseconds offset, bool preload, Navigation navigation)=0aace::alexa::ExternalMediaAdapterpure virtual
        play(const std::string &localPlayerId, const std::string &playContextToken, int64_t index, std::chrono::milliseconds offset, bool preload, Navigation navigation, const std::string &playbackSessionId, const std::string &skillToken)aace::alexa::ExternalMediaAdaptervirtual
        playControl(const std::string &localPlayerId, PlayControlType controlType)=0aace::alexa::ExternalMediaAdapterpure virtual
        PlayControlType enum nameaace::alexa::ExternalMediaAdapter
        playerError(const std::string &localPlayerId, const std::string &errorName, long code, const std::string &description, bool fatal)aace::alexa::ExternalMediaAdapter
        playerEvent(const std::string &localPlayerId, const std::string &eventName)aace::alexa::ExternalMediaAdapter
        reportDiscoveredPlayers(const std::vector< DiscoveredPlayerInfo > &discoveredPlayers)aace::alexa::ExternalMediaAdapter
        requestToken(const std::string &localPlayerId)aace::alexa::ExternalMediaAdapter
        seek(const std::string &localPlayerId, std::chrono::milliseconds offset)=0aace::alexa::ExternalMediaAdapterpure virtual
        setFocus(const std::string &localPlayerId)aace::alexa::ExternalMediaAdapter
        SupportedPlaybackOperation enum nameaace::alexa::ExternalMediaAdapter
        volumeChanged(float volume)=0aace::alexa::ExternalMediaAdapterpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter.html deleted file mode 100644 index 8fdfeecf4..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter.html +++ /dev/null @@ -1,1267 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::ExternalMediaAdapter Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::ExternalMediaAdapter Class Referenceabstract
        -
        -
        - - - - - - - - - - -

        -Classes

        class  AuthorizedPlayerInfo
         
        class  ExternalMediaAdapterState
         
        class  PlaybackState
         
        class  SessionState
         
        - - - - - - - - - - - -

        -Public Types

        enum  PlayControlType {
        -  PlayControlType::PAUSE, -
        -  PlayControlType::RESUME, -
        -  PlayControlType::STOP, -
        -  PlayControlType::NEXT, -
        -  PlayControlType::PREVIOUS, -
        -  PlayControlType::START_OVER, -
        -  PlayControlType::FAST_FORWARD, -
        -  PlayControlType::REWIND, -
        -  PlayControlType::ENABLE_REPEAT_ONE, -
        -  PlayControlType::ENABLE_REPEAT, -
        -  PlayControlType::DISABLE_REPEAT, -
        -  PlayControlType::ENABLE_SHUFFLE, -
        -  PlayControlType::DISABLE_SHUFFLE, -
        -  PlayControlType::FAVORITE, -
        -  PlayControlType::UNFAVORITE -
        - }
         
        enum  SupportedPlaybackOperation {
        -  SupportedPlaybackOperation::PLAY, -
        -  SupportedPlaybackOperation::PAUSE, -
        -  SupportedPlaybackOperation::STOP, -
        -  SupportedPlaybackOperation::NEXT, -
        -  SupportedPlaybackOperation::PREVIOUS, -
        -  SupportedPlaybackOperation::START_OVER, -
        -  SupportedPlaybackOperation::FAST_FORWARD, -
        -  SupportedPlaybackOperation::REWIND, -
        -  SupportedPlaybackOperation::ENABLE_REPEAT, -
        -  SupportedPlaybackOperation::ENABLE_REPEAT_ONE, -
        -  SupportedPlaybackOperation::DISABLE_REPEAT, -
        -  SupportedPlaybackOperation::ENABLE_SHUFFLE, -
        -  SupportedPlaybackOperation::DISABLE_SHUFFLE, -
        -  SupportedPlaybackOperation::FAVORITE, -
        -  SupportedPlaybackOperation::UNFAVORITE, -
        -  SupportedPlaybackOperation::SEEK, -
        -  SupportedPlaybackOperation::ADJUST_SEEK -
        - }
         
        enum  Favorites {
        -  Favorites::FAVORITED, -
        -  Favorites::UNFAVORITED, -
        -  Favorites::NOT_RATED -
        - }
         
        enum  MediaType {
        -  MediaType::TRACK, -
        -  MediaType::PODCAST, -
        -  MediaType::STATION, -
        -  MediaType::AD, -
        -  MediaType::SAMPLE, -
        -  MediaType::OTHER -
        - }
         
        enum  Navigation {
        -  Navigation::DEFAULT, -
        -  Navigation::NONE, -
        -  Navigation::FOREGROUND -
        - }
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual bool login (const std::string &localPlayerId, const std::string &accessToken, const std::string &userName, bool forceLogin, std::chrono::milliseconds tokenRefreshInterval)=0
         
        virtual bool logout (const std::string &localPlayerId)=0
         
        virtual bool play (const std::string &localPlayerId, const std::string &playContextToken, int64_t index, std::chrono::milliseconds offset, bool preload, Navigation navigation)=0
         
        virtual bool play (const std::string &localPlayerId, const std::string &playContextToken, int64_t index, std::chrono::milliseconds offset, bool preload, Navigation navigation, const std::string &playbackSessionId, const std::string &skillToken)
         
        virtual bool playControl (const std::string &localPlayerId, PlayControlType controlType)=0
         
        virtual bool seek (const std::string &localPlayerId, std::chrono::milliseconds offset)=0
         
        virtual bool adjustSeek (const std::string &localPlayerId, std::chrono::milliseconds deltaOffset)=0
         
        virtual bool authorize (const std::vector< AuthorizedPlayerInfo > &authorizedPlayers)=0
         
        virtual std::chrono::milliseconds getOffset (const std::string &localPlayerId)
         
        virtual bool getState (const std::string &localPlayerId, ExternalMediaAdapterState &state)=0
         
        virtual bool volumeChanged (float volume)=0
         
        virtual bool mutedStateChanged (MutedState state)=0
         
        void reportDiscoveredPlayers (const std::vector< DiscoveredPlayerInfo > &discoveredPlayers)
         
        void requestToken (const std::string &localPlayerId)
         
        void loginComplete (const std::string &localPlayerId)
         
        void logoutComplete (const std::string &localPlayerId)
         
        void playerEvent (const std::string &localPlayerId, const std::string &eventName)
         
        void playerError (const std::string &localPlayerId, const std::string &errorName, long code, const std::string &description, bool fatal)
         
        void setFocus (const std::string &localPlayerId)
         
        -

        Detailed Description

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Enumeration Documentation

        - -

        ◆ PlayControlType

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::ExternalMediaAdapter::PlayControlType
        -
        -strong
        -
        -

        Describes the playback control type

        - - - - - - - - - - - - - - - - -
        Enumerator
        PAUSE 

        pause playback

        -
        RESUME 

        resume playback

        -
        STOP 

        stop the player

        -
        NEXT 

        next song

        -
        PREVIOUS 

        previous playback

        -
        START_OVER 

        start playback over

        -
        FAST_FORWARD 

        fast forward external media described time

        -
        REWIND 

        rewind external media described time

        -
        ENABLE_REPEAT_ONE 

        enable repeat current song

        -
        ENABLE_REPEAT 

        enable playlist looping

        -
        DISABLE_REPEAT 

        disable playlist looping

        -
        ENABLE_SHUFFLE 

        enable playlist shuffling

        -
        DISABLE_SHUFFLE 

        disable playlist shuffling

        -
        FAVORITE 

        favorite song

        -
        UNFAVORITE 

        unfavorite song

        -
        - -
        -
        - -

        ◆ SupportedPlaybackOperation

        - -
        -
        -

        Supported playback control types reportable by the external media player app

        - - - - - - - - - - - - - - - - - - -
        Enumerator
        PLAY 

        Play is supported (voice only)

        -
        PAUSE 

        Pause is supported

        -
        STOP 

        Stop is supported

        -
        NEXT 

        Next is supported

        -
        PREVIOUS 

        Previous is supported

        -
        START_OVER 

        Start Over is supported

        -
        FAST_FORWARD 

        Fast Forward is supported

        -
        REWIND 

        Rewind is supported

        -
        ENABLE_REPEAT 

        Enable Repeat is supported

        -
        ENABLE_REPEAT_ONE 

        Enable Repeat One is supported

        -
        DISABLE_REPEAT 

        Disable Repeat is supported

        -
        ENABLE_SHUFFLE 

        Enable Shuffle is supported

        -
        DISABLE_SHUFFLE 

        Disable Shuffle is supported

        -
        FAVORITE 

        Favorite is supported

        -
        UNFAVORITE 

        Unfavorite is supported

        -
        SEEK 

        Seek is supported

        -
        ADJUST_SEEK 

        Adjust Seek is supported

        -
        - -
        -
        - -

        ◆ Favorites

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::ExternalMediaAdapter::Favorites
        -
        -strong
        -
        -

        Favorites song status

        - - - - -
        Enumerator
        FAVORITED 

        song is favorited

        -
        UNFAVORITED 

        song is unfavorited

        -
        NOT_RATED 

        song is not rated

        -
        - -
        -
        - -

        ◆ MediaType

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::ExternalMediaAdapter::MediaType
        -
        -strong
        -
        -

        Type of the current media source

        - - - - - - - -
        Enumerator
        TRACK 

        A single song source

        -
        PODCAST 

        A podcast source

        -
        STATION 

        A station source

        -
        AD 

        An advertisement source

        -
        SAMPLE 

        A sample source

        -
        OTHER 

        A miscellaneous source

        -
        - -
        -
        - -

        ◆ Navigation

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::ExternalMediaAdapter::Navigation
        -
        -strong
        -
        -

        Type of navigation when external media player app is first invoked via AVS

        - - - - -
        Enumerator
        DEFAULT 

        Source dependant behavior

        -
        NONE 

        No navigation should occur

        -
        FOREGROUND 

        External app should take foreground

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ login()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::login (const std::string & localPlayerId,
        const std::string & accessToken,
        const std::string & userName,
        bool forceLogin,
        std::chrono::milliseconds tokenRefreshInterval 
        )
        -
        -pure virtual
        -
        -

        Directive called after a discovered player initiates the loginComplete event.

        -
        Parameters
        - - - - - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]accessTokenThe handshake token between AVS, and the external media player app session
        [in]userNameThe username provided by the external media player app, if available
        [in]forceLoginTrue if no handshake is needed, and login is simply assumed
        [in]tokenRefreshIntervalrefresh interval of the accessToken, if available
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ logout()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::logout (const std::string & localPlayerId)
        -
        -pure virtual
        -
        -

        Directive called after a discovered player initiates the logoutComplete event.

        -
        Parameters
        - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ play() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::play (const std::string & localPlayerId,
        const std::string & playContextToken,
        int64_t index,
        std::chrono::milliseconds offset,
        bool preload,
        Navigation navigation 
        )
        -
        -pure virtual
        -
        -

        Called when the user first calls play for the external media via voice control.

        -
        Parameters
        - - - - - - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]playContextTokenTrack/playlist/album/artist/station/podcast context identifier
        [in]indexIf the playback context is an indexable container like a playlist, the index of the media item in the container
        [in]offsetOffset position within media item, in milliseconds
        [in]preloadWhether the media item should preload or not
        [in]navigationThe app transition behavior
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ play() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::alexa::ExternalMediaAdapter::play (const std::string & localPlayerId,
        const std::string & playContextToken,
        int64_t index,
        std::chrono::milliseconds offset,
        bool preload,
        Navigation navigation,
        const std::string & playbackSessionId,
        const std::string & skillToken 
        )
        -
        -virtual
        -
        -

        Extra parameters for credentials

        - -
        -
        - -

        ◆ playControl()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::playControl (const std::string & localPlayerId,
        PlayControlType controlType 
        )
        -
        -pure virtual
        -
        -

        Occurs during playback control via voice interaction

        -
        Parameters
        - - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]playControlTypePlayback control type being invoked
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ seek()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::seek (const std::string & localPlayerId,
        std::chrono::milliseconds offset 
        )
        -
        -pure virtual
        -
        -

        Called when the user invokes media seek via speech.

        -
        Parameters
        - - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]offsetOffset position within media item, in milliseconds
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ adjustSeek()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::adjustSeek (const std::string & localPlayerId,
        std::chrono::milliseconds deltaOffset 
        )
        -
        -pure virtual
        -
        -

        Called when the user invokes media seek adjustment via speech.

        -
        Parameters
        - - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]deltaOffsetChange in offset position within media item, in milliseconds
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ authorize()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::authorize (const std::vector< AuthorizedPlayerInfo > & authorizedPlayers)
        -
        -pure virtual
        -
        -

        Called after discovered media players have been reported. Returns a list of reported players and whether they have been authorized for use with Alexa.

        -
        Note
        It is not guaranteed that every player reported in a call to reportDiscoveredPlayers() will be included in the next call to authorize(). If a player is excluded from a call to authorize() after it is included in the preceding reportDiscoveredPlayers(), this does not necessarily imply it was deauthorized by Alexa. It is possible that a player may be included in more than one call to authorize().
        -
        Parameters
        - - -
        [in]authorizedPlayersA list of discovered players with their status of authorization for use with Alexa
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ getOffset()

        - -
        -
        - - - - - -
        - - - - - - - - -
        std::chrono::milliseconds aace::alexa::ExternalMediaAdapter::getOffset (const std::string & localPlayerId)
        -
        -virtual
        -
        -

        This function retrieves the offset of the current track the adapter is handling.

        -
        Returns
        This returns the offset in milliseconds.
        - -
        -
        - -

        ◆ getState()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::getState (const std::string & localPlayerId,
        ExternalMediaAdapterStatestate 
        )
        -
        -pure virtual
        -
        -

        Must provide the local external media player apps , and information to maintain cloud sync

        -
        Parameters
        - - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]stateThe ExternalMediaAdapterState to be initialized by the platform
        -
        -
        -
        Returns
        true if the platform is able to provide state information for the external media player, else false
        - -
        -
        - -

        ◆ volumeChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::volumeChanged (float volume)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to set the volume of the output channel. The volume value should be scaled to fit the needs of the platform.

        -
        Parameters
        - - -
        [in]volumeThe volume to set on the output channel. volume is in the range [0,1].
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mutedStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::alexa::ExternalMediaAdapter::mutedStateChanged (MutedState state)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to apply a mute state change to the output channel

        -
        Parameters
        - - -
        [in]stateThe muted state to apply to the output channel. MutedState::MUTED when the output channel be muted, MutedState::UNMUTED when unmuted
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ reportDiscoveredPlayers()

        - -
        -
        - - - - - - - - -
        void aace::alexa::ExternalMediaAdapter::reportDiscoveredPlayers (const std::vector< DiscoveredPlayerInfo > & discoveredPlayers)
        -
        -

        Should be called on startup in order to notify AVS of the local external media players

        -
        Parameters
        - - -
        [in]discoveredPlayerscontains the discovered player info objects
        -
        -
        - -
        -
        - -

        ◆ requestToken()

        - -
        -
        - - - - - - - - -
        void aace::alexa::ExternalMediaAdapter::requestToken (const std::string & localPlayerId)
        -
        -

        The device is responsible for requesting an access token when needed. This is typically done immediately upon connection to AVS.

        -
        Parameters
        - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        - -
        -
        - -

        ◆ loginComplete()

        - -
        -
        - - - - - - - - -
        void aace::alexa::ExternalMediaAdapter::loginComplete (const std::string & localPlayerId)
        -
        -

        Should be called on a local external media player login. This will set authorization of the app with AVS.

        -
        Parameters
        - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        - -
        -
        - -

        ◆ logoutComplete()

        - -
        -
        - - - - - - - - -
        void aace::alexa::ExternalMediaAdapter::logoutComplete (const std::string & localPlayerId)
        -
        -

        Should be called on a local external media player logout. This will unset authorization of the app with AVS.

        -
        Parameters
        - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        - -
        -
        - -

        ◆ playerEvent()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::alexa::ExternalMediaAdapter::playerEvent (const std::string & localPlayerId,
        const std::string & eventName 
        )
        -
        -

        Should be called on a local external media player event. This will sync the context with AVS.

        -
        Parameters
        - - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]eventNameCanonical event name. Accepted values:
          -
        • "TrackChanged"
        • -
        • "PlaybackSessionStarted"
        • -
        • "PlaybackSessionEnded"
        • -
        • "PlaybackStarted"
        • -
        • "PlaybackStopped"
        • -
        • "PlaybackPrevious"
        • -
        • "PlaybackNext"
        • -
        • "PlayModeChanged"
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ playerError()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::alexa::ExternalMediaAdapter::playerError (const std::string & localPlayerId,
        const std::string & errorName,
        long code,
        const std::string & description,
        bool fatal 
        )
        -
        -

        Should be called on a player error.

        -
        Parameters
        - - - - - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        [in]errorNameThe name of the error. Accepted values:
          -
        • "INTERNAL_ERROR"
        • -
        • "UNPLAYABLE_BY_AUTHORIZATION"
        • -
        • "UNPLAYABLE_BY_STREAM_CONCURRENCY"
        • -
        • "UNPLAYABLE_BY_ACCOUNT"
        • -
        • "OPERATION_REJECTED_UNINTERRUPTIBLE"
        • -
        • "OPERATION_REJECTED_END_OF_QUEUE"
        • -
        • "UNPLAYABLE_BY_REGION"
        • -
        • "OPERATION_UNSUPPORTED"
        • -
        • "UNPLAYABLE_BY_PARENTAL_CONTROL"
        • -
        • "UNPLAYABLE_BY_SUBSCRIPTION"
        • -
        • "OPERATION_REJECTED_SKIP_LIMIT"
        • -
        • "UNKNOWN_ERROR"
        • -
        • "PLAYER_UNKNOWN"
        • -
        • "PLAYER_NOT_FOUND"
        • -
        • "PLAYER_CONNECTION_REJECTED"
        • -
        • "PLAYER_CONNECTION_TIMEOUT"
        • -
        -
        [in]codeThe error code
        [in]descriptionThe detailed error description
        [in]fataltrue if the error is fatal
        -
        -
        - -
        -
        - -

        ◆ setFocus()

        - -
        -
        - - - - - - - - -
        void aace::alexa::ExternalMediaAdapter::setFocus (const std::string & localPlayerId)
        -
        -

        Should be called on local external media player events. This will switch the media focus to that context.

        -
        Parameters
        - - -
        [in]localPlayerIdThe opaque token that uniquely identifies the local external player app
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info-members.html deleted file mode 100644 index 558692b8c..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html deleted file mode 100644 index df597bcdf..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo Class Reference
        -
        -
        - - - - - - - - - - - -

        -Public Attributes

        -std::string localPlayerId
         The opaque token that uniquely identifies the local external player app.
         
        -bool authorized
         Authorization status.
         
        -std::string defaultSkillToken
         An opaque token for the domain or skill that is associated with this player.
         
        -

        Detailed Description

        -

        Describes an external media player's authorization status

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state-members.html deleted file mode 100644 index 33c1be478..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html deleted file mode 100644 index 2de2ed031..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState Class Reference
        -
        -
        - - - - - -

        -Public Member Functions

        ExternalMediaAdapterState ()
         Default constructor.
         
        - - - - - - - -

        -Public Attributes

        -SessionState sessionState
         Variable to hold the session state.
         
        -PlaybackState playbackState
         Variable to hold the playback state.
         
        -

        Detailed Description

        -

        Class that encapsulates an player session and playback state.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state-members.html deleted file mode 100644 index 25d93a3ec..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state-members.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::ExternalMediaAdapter::PlaybackState Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::ExternalMediaAdapter::PlaybackState, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - - - - - - - -
        albumIdaace::alexa::ExternalMediaAdapter::PlaybackState
        albumNameaace::alexa::ExternalMediaAdapter::PlaybackState
        artistIdaace::alexa::ExternalMediaAdapter::PlaybackState
        artistNameaace::alexa::ExternalMediaAdapter::PlaybackState
        coverIdaace::alexa::ExternalMediaAdapter::PlaybackState
        durationaace::alexa::ExternalMediaAdapter::PlaybackState
        favoritesaace::alexa::ExternalMediaAdapter::PlaybackState
        largeURLaace::alexa::ExternalMediaAdapter::PlaybackState
        mediaProvideraace::alexa::ExternalMediaAdapter::PlaybackState
        mediaTypeaace::alexa::ExternalMediaAdapter::PlaybackState
        mediumURLaace::alexa::ExternalMediaAdapter::PlaybackState
        playbackSourceaace::alexa::ExternalMediaAdapter::PlaybackState
        playbackSourceIdaace::alexa::ExternalMediaAdapter::PlaybackState
        PlaybackState()aace::alexa::ExternalMediaAdapter::PlaybackState
        repeatEnabledaace::alexa::ExternalMediaAdapter::PlaybackState
        repeatOneEnabledaace::alexa::ExternalMediaAdapter::PlaybackState
        shuffleEnabledaace::alexa::ExternalMediaAdapter::PlaybackState
        smallURLaace::alexa::ExternalMediaAdapter::PlaybackState
        supportedOperationsaace::alexa::ExternalMediaAdapter::PlaybackState
        tinyURLaace::alexa::ExternalMediaAdapter::PlaybackState
        trackIdaace::alexa::ExternalMediaAdapter::PlaybackState
        trackNameaace::alexa::ExternalMediaAdapter::PlaybackState
        trackNumberaace::alexa::ExternalMediaAdapter::PlaybackState
        trackOffsetaace::alexa::ExternalMediaAdapter::PlaybackState
        typeaace::alexa::ExternalMediaAdapter::PlaybackState
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html deleted file mode 100644 index 424bf8b99..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::ExternalMediaAdapter::PlaybackState Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::ExternalMediaAdapter::PlaybackState Class Reference
        -
        -
        - - - - - -

        -Public Member Functions

        PlaybackState ()
         Default constructor.
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

        -std::vector< SupportedPlaybackOperationsupportedOperations
         The set of states the default player can move into from its current state. default {}.
         
        -std::chrono::milliseconds trackOffset
         The offset of the track in milliseconds. default 0.
         
        -bool shuffleEnabled
         Bool to identify if shuffling is enabled or not. default false.
         
        -bool repeatEnabled
         Bool to identify if looping of songs is enabled or not. default false.
         
        -bool repeatOneEnabled
         Bool to identify if repeating the track is enabled.
         
        -Favorites favorites
         The favorite status FAVORITED/UNFAVORITED/NOT_RATED. default NOT_RATED.
         
        -std::string type
         The type of the media item should be "ExternalMediaAdapterMusicItem". default "ExternalMediaAdapterMusicItem".
         
        -std::string playbackSource
         The display name for current playback context, e.g. playlist name. default "".
         
        std::string playbackSourceId
         
        -std::string trackName
         The display name for the currently playing trackname of the track. default "".
         
        -std::string trackId
         The arbitrary identifier for currently playing trackid of the track as per the music provider. default "".
         
        std::string trackNumber
         
        -std::string artistName
         The display name for the currently playing artist. default "".
         
        std::string artistId
         
        -std::string albumName
         The display name of the currently playing album. default "".
         
        std::string albumId
         
        -std::string tinyURL
         The URL for tiny cover art image resource. default "".
         
        -std::string smallURL
         The URL for small cover art image resource. default "".
         
        -std::string mediumURL
         The URL for medium cover art image resource. default "".
         
        -std::string largeURL
         The URL for large cover art image resource. default "".
         
        std::string coverId
         
        std::string mediaProvider
         
        -MediaType mediaType
         The Media type TRACK/PODCAST/STATION/AD/SAMPLE/OTHER . default OTHER.
         
        -std::chrono::milliseconds duration
         Media item duration in milliseconds. default 0.
         
        -

        Detailed Description

        -

        struct that encapsulates a players playback state.

        -

        Member Data Documentation

        - -

        ◆ playbackSourceId

        - -
        -
        - - - - -
        std::string aace::alexa::ExternalMediaAdapter::PlaybackState::playbackSourceId
        -
        -

        An arbitrary identifier for current playback context as per the music provider, e.g. a URI that can be saved as a preset or queried to Music Service Provider services for additional info. default ""

        - -
        -
        - -

        ◆ trackNumber

        - -
        -
        - - - - -
        std::string aace::alexa::ExternalMediaAdapter::PlaybackState::trackNumber
        -
        -

        The display value for the number or abstract position of the currently playing track in the album or context trackNumber of the track. default ""

        - -
        -
        - -

        ◆ artistId

        - -
        -
        - - - - -
        std::string aace::alexa::ExternalMediaAdapter::PlaybackState::artistId
        -
        -

        An arbitrary identifier for currently playing artist as per the music provider, e.g. a URI that can be queried to MSP services for additional info. default ""

        - -
        -
        - -

        ◆ albumId

        - -
        -
        - - - - -
        std::string aace::alexa::ExternalMediaAdapter::PlaybackState::albumId
        -
        -

        Arbitrary identifier for currently playing album specific to the music provider, e.g. a URI that can be queried to MSP services for additional info. default ""

        - -
        -
        - -

        ◆ coverId

        - -
        -
        - - - - -
        std::string aace::alexa::ExternalMediaAdapter::PlaybackState::coverId
        -
        -

        The Arbitrary identifier for cover art image resource specific to the music provider, for retrieval from an MSP API. default ""

        - -
        -
        - -

        ◆ mediaProvider

        - -
        -
        - - - - -
        std::string aace::alexa::ExternalMediaAdapter::PlaybackState::mediaProvider
        -
        -

        Music Service Provider name for the currently playing media item; distinct from the application identity although the two may be the same. default ""

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state-members.html deleted file mode 100644 index 5b677db41..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state-members.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::ExternalMediaAdapter::SessionState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html deleted file mode 100644 index c44beaea1..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::ExternalMediaAdapter::SessionState Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::ExternalMediaAdapter::SessionState Class Reference
        -
        -
        - - - - -

        -Public Member Functions

         SessionState ()
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

        -std::string endpointId
         The unique device endpoint. default "".
         
        -bool loggedIn
         Flag that identifies if a user is currently logged in or not. default false.
         
        -std::string userName
         The userName of the user currently logged in via a Login directive from the AVS. default "".
         
        -bool isGuest
         Flag that identifies if the user currently logged in is a guest or not. default false.
         
        -bool launched
         Flag that identifies if an application has been launched or not. default true.
         
        bool active
         
        std::string accessToken
         
        -std::chrono::milliseconds tokenRefreshInterval
         The validity period of the token in milliseconds. default 0.
         
        -std::string playerCookie
         A player may declare arbitrary information for itself. default "".
         
        -std::string spiVersion
         The only spiVersion that currently exists is "1.0". default "1.0".
         
        -

        Detailed Description

        -

        struct that represents the session state of a player.

        -

        Constructor & Destructor Documentation

        - -

        ◆ SessionState()

        - -
        -
        - - - - - - - -
        aace::alexa::ExternalMediaAdapter::SessionState::SessionState ()
        -
        -

        Default Constructor.

        - -
        -
        -

        Member Data Documentation

        - -

        ◆ active

        - -
        -
        - - - - -
        bool aace::alexa::ExternalMediaAdapter::SessionState::active
        -
        -

        Flag that identifies if the application is currently active or not. This could mean different things for different applications. default false

        - -
        -
        - -

        ◆ accessToken

        - -
        -
        - - - - -
        std::string aace::alexa::ExternalMediaAdapter::SessionState::accessToken
        -
        -

        The accessToken used to login a user. The access token may also be used as a bearer token if the adapter makes an authenticated Web API to the music provider. default ""

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface-members.html deleted file mode 100644 index 401b82107..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::ExternalMediaAdapterEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::ExternalMediaAdapterEngineInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface.html deleted file mode 100644 index f1aaa8510..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::ExternalMediaAdapterEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::ExternalMediaAdapterEngineInterface Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        class  DiscoveredPlayerInfo
         
        -

        Detailed Description

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info-members.html deleted file mode 100644 index 823ae30f9..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html deleted file mode 100644 index a1ef7c386..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo Class Reference
        -
        -
        - - - - - - - - - - - - -

        -Public Attributes

        -std::string localPlayerId
         The opaque token that uniquely identifies the local external player app.
         
        -std::string spiVersion
         The only spiVersion that currently exists is "1.0".
         
        std::string validationMethod
         
        std::vector< std::string > validationData
         
        -

        Detailed Description

        -

        Describes a discovered external media player app

        -

        Member Data Documentation

        - -

        ◆ validationMethod

        - -
        -
        - - - - -
        std::string aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo::validationMethod
        -
        -

        Validation methods :

          -
        1. "SIGNING_CERTIFICATE"
        2. -
        3. "GENERATED_CERTIFICATE"
        4. -
        5. "NONE"
        6. -
        - -
        -
        - -

        ◆ validationData

        - -
        -
        - - - - -
        std::vector<std::string> aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo::validationData
        -
        -

        Validation data :

          -
        1. Device platform issued app signing certificate. A list of certificates may be attached.
        2. -
        3. In some cases validation is performed locally. The certificate is transmitted as validationData during discovery to announce the activated app's identity in order to allow app activation to be revoked.
        4. -
        5. empty
        6. -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_feature_discovery_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_feature_discovery_engine_interface-members.html deleted file mode 100644 index f49770376..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_feature_discovery_engine_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::FeatureDiscoveryEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::FeatureDiscoveryEngineInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_feature_discovery_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_feature_discovery_engine_interface.html deleted file mode 100644 index 7e1f63c00..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_feature_discovery_engine_interface.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::FeatureDiscoveryEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::FeatureDiscoveryEngineInterface Class Referenceabstract
        -
        -
        -

        Detailed Description

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_global_preset-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_global_preset-members.html deleted file mode 100644 index d22cb5f0c..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_global_preset-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::GlobalPreset Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::GlobalPreset, including all inherited members.

        - - -
        setGlobalPreset(int preset)=0aace::alexa::GlobalPresetpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_global_preset.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_global_preset.html deleted file mode 100644 index e66b8e2ba..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_global_preset.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::GlobalPreset Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::GlobalPreset Class Referenceabstract
        -
        -
        - - - - -

        -Public Member Functions

        virtual void setGlobalPreset (int preset)=0
         
        -

        Detailed Description

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ setGlobalPreset()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::GlobalPreset::setGlobalPreset (int preset)
        -
        -pure virtual
        -
        -
        Deprecated:
        Use LocalMediaSource class with DEFAULT source with LocalMediaSource::ContentSelector::PRESET instead Called after receiving a global preset play directive
        -
        Parameters
        - - -
        [in]Thepreset integer from the playbackContextToken
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source-members.html deleted file mode 100644 index e79f87d19..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source-members.html +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::LocalMediaSource Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::LocalMediaSource, including all inherited members.

        - - - - - - - - - - - - - - - - -
        adjustSeek(std::chrono::milliseconds deltaOffset)=0aace::alexa::LocalMediaSourcepure virtual
        ContentSelector enum nameaace::alexa::LocalMediaSource
        getSource()aace::alexa::LocalMediaSource
        getState()=0aace::alexa::LocalMediaSourcepure virtual
        mutedStateChanged(MutedState state)=0aace::alexa::LocalMediaSourcepure virtual
        play(ContentSelector contentSelectorType, const std::string &payload)aace::alexa::LocalMediaSourcevirtual
        play(ContentSelector contentSelectorType, const std::string &payload, const std::string &sessionId)aace::alexa::LocalMediaSourcevirtual
        playControl(PlayControlType controlType)=0aace::alexa::LocalMediaSourcepure virtual
        PlayControlType typedefaace::alexa::LocalMediaSource
        playerError(const std::string &errorName, long code, const std::string &description, bool fatal, const std::string &sessionId="")aace::alexa::LocalMediaSource
        playerEvent(const std::string &eventName, const std::string &sessionId="")aace::alexa::LocalMediaSource
        seek(std::chrono::milliseconds offset)=0aace::alexa::LocalMediaSourcepure virtual
        setFocus(bool focusAcquire=true)aace::alexa::LocalMediaSource
        Source enum nameaace::alexa::LocalMediaSource
        volumeChanged(float volume)=0aace::alexa::LocalMediaSourcepure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source.html deleted file mode 100644 index 53959ab41..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source.html +++ /dev/null @@ -1,691 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::LocalMediaSource Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::LocalMediaSource Class Referenceabstract
        -
        -
        - - - - - - - - -

        -Classes

        class  LocalMediaSourceState
         
        class  PlaybackState
         
        class  SessionState
         
        - - - - - - - -

        -Public Types

        enum  Source {
        -  Source::BLUETOOTH, -
        -  Source::USB, -
        -  Source::FM_RADIO, -
        -  Source::AM_RADIO, -
        -  Source::SATELLITE_RADIO, -
        -  Source::LINE_IN, -
        -  Source::COMPACT_DISC, -
        -  Source::SIRIUS_XM, -
        -  Source::DAB, -
        -  Source::DEFAULT -
        - }
         
        enum  ContentSelector {
        -  ContentSelector::FREQUENCY, -
        -  ContentSelector::CHANNEL, -
        -  ContentSelector::PRESET -
        - }
         
        using PlayControlType = ExternalMediaAdapter::PlayControlType
         
        - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual bool play (ContentSelector contentSelectorType, const std::string &payload)
         
        virtual bool play (ContentSelector contentSelectorType, const std::string &payload, const std::string &sessionId)
         
        virtual bool playControl (PlayControlType controlType)=0
         
        virtual bool seek (std::chrono::milliseconds offset)=0
         
        virtual bool adjustSeek (std::chrono::milliseconds deltaOffset)=0
         
        virtual LocalMediaSourceState getState ()=0
         
        virtual bool volumeChanged (float volume)=0
         
        virtual bool mutedStateChanged (MutedState state)=0
         
        Source getSource ()
         
        void playerEvent (const std::string &eventName, const std::string &sessionId="")
         
        void playerError (const std::string &errorName, long code, const std::string &description, bool fatal, const std::string &sessionId="")
         
        void setFocus (bool focusAcquire=true)
         
        -

        Detailed Description

        -

        LocalMediaSource should be extended to use Alexa to switch among media sources local to the device. It supports bluetooth, USB, FM radio, AM radio, satellite radio, audio line, and CD player sources.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ PlayControlType

        - -
        -
        -
        See also
        ExternalMediaAdapterState
        - -
        -
        -

        Member Enumeration Documentation

        - -

        ◆ Source

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::LocalMediaSource::Source
        -
        -strong
        -
        -

        The Local Media Source type

        - - - - - - - - - - - -
        Enumerator
        BLUETOOTH 

        bluetooth source

        -
        USB 

        USB source

        -
        FM_RADIO 

        FM radio source

        -
        AM_RADIO 

        AM radio source

        -
        SATELLITE_RADIO 

        satellite radio source

        -
        LINE_IN 

        audio line source

        -
        COMPACT_DISC 

        CD player source

        -
        SIRIUS_XM 

        SIRIUS XM source

        -
        DAB 

        DAB source

        -
        DEFAULT 

        Default, unnamed media source

        -
        - -
        -
        - -

        ◆ ContentSelector

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::LocalMediaSource::ContentSelector
        -
        -strong
        -
        -

        The Local Media Content Selection type for the play directive

        - - - - -
        Enumerator
        FREQUENCY 

        radio station selection

        -
        CHANNEL 

        radio channel selection

        -
        PRESET 

        preset selection

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ play() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        bool aace::alexa::LocalMediaSource::play (ContentSelector contentSelectorType,
        const std::string & payload 
        )
        -
        -virtual
        -
        -
        Deprecated:
        This function will be removed very soon. Use the new LocalMediaSource::play(ContentSelector contentSelectorType, const std::string& payload, const std::string& sessionId) instead Called when the user calls play with a content selection type
        -
        Parameters
        - - - -
        [in]ContentSelectorContent selection type
        [in]payloadContent selector payload (e.g. "1", "98.7 FM HD 1", "bbc radio four")
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ play() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::alexa::LocalMediaSource::play (ContentSelector contentSelectorType,
        const std::string & payload,
        const std::string & sessionId 
        )
        -
        -virtual
        -
        -

        Called when the user calls play with a content selection type

        -
        Parameters
        - - - - -
        [in]ContentSelectorContent selection type
        [in]payloadContent selector payload (e.g. "1", "98.7 FM HD 1", "bbc radio four")
        sessionIdA universally unique identifier (UUID) generated according to the RFC 4122 specification. Since Alexa is starting the session here, use this session Id for further events and errors.
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ playControl()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::alexa::LocalMediaSource::playControl (PlayControlType controlType)
        -
        -pure virtual
        -
        -

        Occurs during playback control via voice interaction

        -
        Parameters
        - - -
        [in]controlTypePlayback control type being invoked
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ seek()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::alexa::LocalMediaSource::seek (std::chrono::milliseconds offset)
        -
        -pure virtual
        -
        -

        Called when the user invokes media seek via speech.

        -
        Parameters
        - - -
        [in]offsetOffset position within media item, in milliseconds
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ adjustSeek()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::alexa::LocalMediaSource::adjustSeek (std::chrono::milliseconds deltaOffset)
        -
        -pure virtual
        -
        -

        Called when the user invokes media seek adjustment via speech.

        -
        Parameters
        - - -
        [in]deltaOffsetChange in offset position within media item, in milliseconds
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ getState()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual LocalMediaSourceState aace::alexa::LocalMediaSource::getState ()
        -
        -pure virtual
        -
        -

        Must provide the local media source , and information to maintain cloud sync

        - -
        -
        - -

        ◆ volumeChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::alexa::LocalMediaSource::volumeChanged (float volume)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to set the volume of the output channel. The volume value should be scaled to fit the needs of the platform.

        -
        Parameters
        - - -
        [in]volumeThe volume to set on the output channel. volume is in the range [0,1].
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mutedStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::alexa::LocalMediaSource::mutedStateChanged (MutedState state)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to apply a muted state has changed for the output channel

        -
        Parameters
        - - -
        [in]stateThe muted state to apply to the output channel. MutedState::MUTED when the output channel be muted, MutedState::UNMUTED when unmuted
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ getSource()

        - -
        -
        - - - - - - - -
        LocalMediaSource::Source aace::alexa::LocalMediaSource::getSource ()
        -
        -

        Return the source type the interface registered with

        - -
        -
        - -

        ◆ playerEvent()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::alexa::LocalMediaSource::playerEvent (const std::string & eventName,
        const std::string & sessionId = "" 
        )
        -
        -

        Should be called on a local media source player event. This will sync the context with AVS. Note: PlaybackSessionStarted and PlaybackSessionEnded handles the setFocus(true) and setFocus(false) internally. Do not call the deprecated setFocus method.

        -
        Parameters
        - - - -
        [in]eventNameCanonical event name. Accepted values:
          -
        • "PlaybackSessionStarted"
        • -
        • "PlaybackSessionEnded"
        • -
        • "PlaybackStarted"
        • -
        • "PlaybackStopped"
        • -
        -
        [in]sessionIdA universally unique identifier (UUID) generated according to the RFC 4122 specification. If playback session is started because of LocalMediaSource::play(ContentSelector contentSelectorType, const std::string& payload, const std::string& sessionId), use the same session Id. If the session is started due to any other reason, generate unique UUID and use it as a session ID until session is not ended.
        -
        -
        - -
        -
        - -

        ◆ playerError()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::alexa::LocalMediaSource::playerError (const std::string & errorName,
        long code,
        const std::string & description,
        bool fatal,
        const std::string & sessionId = "" 
        )
        -
        -

        Should be called on a local media source player error.

        -
        Parameters
        - - - - - - -
        [in]errorNameThe name of the error. Accepted values:
          -
        • "INTERNAL_ERROR"
        • -
        -
        [in]codeThe error code
        [in]descriptionThe detailed error description
        [in]fataltrue if the error is fatal
        [in]sessionIdA universally unique identifier (UUID) generated according to the RFC 4122 specification. If playback session is started because of LocalMediaSource::play(ContentSelector contentSelectorType, const std::string& payload, const std::string& sessionId), use the same session Id. If the session is started due to any other reason, generate unique UUID and use it as a session ID until session is not ended.
        -
        -
        - -
        -
        - -

        ◆ setFocus()

        - -
        -
        - - - - - - - - -
        void aace::alexa::LocalMediaSource::setFocus (bool focusAcquire = true)
        -
        -
        Deprecated:
        This function will be removed very soon. Use the LocalMediaSource::playerEvent(const std::string& eventName, const std::string& sessionId) instead with playbackSessionStarted and playbackSessionEnded events Should be called on local media source player events. This will switch the media focus to that context. Note: PlaybackSessionStarted and PlaybackSessionEnded handles the setFocus(true) and setFocus(false) internally. Do not call the deprecated setFocus method.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state-members.html deleted file mode 100644 index 98a8e8f6e..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::LocalMediaSource::LocalMediaSourceState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html deleted file mode 100644 index 9914f92ef..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::LocalMediaSource::LocalMediaSourceState Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::LocalMediaSource::LocalMediaSourceState Class Reference
        -
        -
        - - - - - -

        -Public Member Functions

        LocalMediaSourceState ()
         Default constructor.
         
        - - - - - - - -

        -Public Attributes

        -SessionState sessionState
         Variable to hold the session state.
         
        -PlaybackState playbackState
         Variable to hold the playback state.
         
        -

        Detailed Description

        -

        Class that encapsulates an player session and playback state.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state-members.html deleted file mode 100644 index 4cf37bdba..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state-members.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::LocalMediaSource::PlaybackState Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::LocalMediaSource::PlaybackState, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - - - - - - - -
        albumIdaace::alexa::LocalMediaSource::PlaybackState
        albumNameaace::alexa::LocalMediaSource::PlaybackState
        artistIdaace::alexa::LocalMediaSource::PlaybackState
        artistNameaace::alexa::LocalMediaSource::PlaybackState
        coverIdaace::alexa::LocalMediaSource::PlaybackState
        durationaace::alexa::LocalMediaSource::PlaybackState
        favoritesaace::alexa::LocalMediaSource::PlaybackState
        largeURLaace::alexa::LocalMediaSource::PlaybackState
        mediaProvideraace::alexa::LocalMediaSource::PlaybackState
        mediaTypeaace::alexa::LocalMediaSource::PlaybackState
        mediumURLaace::alexa::LocalMediaSource::PlaybackState
        playbackSourceaace::alexa::LocalMediaSource::PlaybackState
        playbackSourceIdaace::alexa::LocalMediaSource::PlaybackState
        PlaybackState()aace::alexa::LocalMediaSource::PlaybackState
        repeatEnabledaace::alexa::LocalMediaSource::PlaybackState
        repeatOneEnabledaace::alexa::LocalMediaSource::PlaybackState
        shuffleEnabledaace::alexa::LocalMediaSource::PlaybackState
        smallURLaace::alexa::LocalMediaSource::PlaybackState
        supportedOperationsaace::alexa::LocalMediaSource::PlaybackState
        tinyURLaace::alexa::LocalMediaSource::PlaybackState
        trackIdaace::alexa::LocalMediaSource::PlaybackState
        trackNameaace::alexa::LocalMediaSource::PlaybackState
        trackNumberaace::alexa::LocalMediaSource::PlaybackState
        trackOffsetaace::alexa::LocalMediaSource::PlaybackState
        typeaace::alexa::LocalMediaSource::PlaybackState
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html deleted file mode 100644 index ac76f91be..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::LocalMediaSource::PlaybackState Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::LocalMediaSource::PlaybackState Class Reference
        -
        -
        - - - - - -

        -Public Member Functions

        PlaybackState ()
         Default constructor.
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

        -std::vector< SupportedPlaybackOperationsupportedOperations
         The set of states the default player can move into from its current state. default {}.
         
        -std::chrono::milliseconds trackOffset
         The offset of the track in milliseconds. default 0.
         
        -bool shuffleEnabled
         Bool to identify if shuffling is enabled. default false.
         
        -bool repeatEnabled
         Bool to identify if looping of songs is enabled. default false.
         
        -bool repeatOneEnabled
         Bool to identify if repeating the track is enabled. default false.
         
        -Favorites favorites
         The favorite status FAVORITED/UNFAVORITED/NOT_RATED. default NOT_RATED.
         
        -std::string type
         The type of the media item should be "ExternalMediaAdapterMusicItem". default "ExternalMediaAdapterMusicItem".
         
        -std::string playbackSource
         The display name for current playback context, e.g. playlist name. default "".
         
        std::string playbackSourceId
         
        -std::string trackName
         The display name for the currently playing trackname of the track. default "".
         
        -std::string trackId
         The arbitrary identifier for currently playing trackid of the track as per the music provider. default "".
         
        std::string trackNumber
         
        -std::string artistName
         The display name for the currently playing artist. default "".
         
        std::string artistId
         
        -std::string albumName
         The display name of the currently playing album. default "".
         
        std::string albumId
         
        -std::string tinyURL
         The URL for tiny cover art image resource. default "".
         
        -std::string smallURL
         The URL for small cover art image resource. default "".
         
        -std::string mediumURL
         The URL for medium cover art image resource. default "".
         
        -std::string largeURL
         The URL for large cover art image resource. default "".
         
        std::string coverId
         
        std::string mediaProvider
         
        -MediaType mediaType
         The Media type TRACK/PODCAST/STATION/AD/SAMPLE/OTHER . default OTHER.
         
        -std::chrono::milliseconds duration
         Media item duration in milliseconds. default 0.
         
        -

        Detailed Description

        -

        struct that encapsulates a players playback state.

        -

        Member Data Documentation

        - -

        ◆ playbackSourceId

        - -
        -
        - - - - -
        std::string aace::alexa::LocalMediaSource::PlaybackState::playbackSourceId
        -
        -

        An arbitrary identifier for current playback context as per the music provider, e.g. a URI that can be saved as a preset or queried to Music Service Provider services for additional info. default ""

        - -
        -
        - -

        ◆ trackNumber

        - -
        -
        - - - - -
        std::string aace::alexa::LocalMediaSource::PlaybackState::trackNumber
        -
        -

        The display value for the number or abstract position of the currently playing track in the album or context trackNumber of the track. default ""

        - -
        -
        - -

        ◆ artistId

        - -
        -
        - - - - -
        std::string aace::alexa::LocalMediaSource::PlaybackState::artistId
        -
        -

        An arbitrary identifier for currently playing artist as per the music provider, e.g. a URI that can be queried to MSP services for additional info. default ""

        - -
        -
        - -

        ◆ albumId

        - -
        -
        - - - - -
        std::string aace::alexa::LocalMediaSource::PlaybackState::albumId
        -
        -

        Arbitrary identifier for currently playing album specific to the music provider, e.g. a URI that can be queried to MSP services for additional info. default ""

        - -
        -
        - -

        ◆ coverId

        - -
        -
        - - - - -
        std::string aace::alexa::LocalMediaSource::PlaybackState::coverId
        -
        -

        The Arbitrary identifier for cover art image resource specific to the music provider, for retrieval from an MSP API. default ""

        - -
        -
        - -

        ◆ mediaProvider

        - -
        -
        - - - - -
        std::string aace::alexa::LocalMediaSource::PlaybackState::mediaProvider
        -
        -

        Music Service Provider name for the currently playing media item; distinct from the application identity although the two may be the same. default ""

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_session_state-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_session_state-members.html deleted file mode 100644 index 8169952e1..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_session_state-members.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::LocalMediaSource::SessionState Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html deleted file mode 100644 index d945b84cc..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::LocalMediaSource::SessionState Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::LocalMediaSource::SessionState Class Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Attributes

        -std::string endpointId
         The unique device endpoint. default "".
         
        -bool loggedIn
         Flag that identifies if a user is currently logged in. default false.
         
        -std::string userName
         The username of the user currently logged in via a Login directive from Alexa. default "".
         
        -bool isGuest
         Flag that identifies if the user currently logged in is a guest. default false.
         
        -bool launched
         Flag that identifies if an source is currently enabled. default true.
         
        bool active
         
        std::string accessToken
         
        -std::chrono::milliseconds tokenRefreshInterval
         The validity period of the token in milliseconds. default 0.
         
        -std::vector< ContentSelectorsupportedContentSelectors
         Array of content selector types supported by the player. default {}.
         
        -std::string spiVersion
         The only spiVersion that currently exists is "1.0". default "1.0".
         
        -

        Detailed Description

        -

        struct that represents the session state of a player.

        -

        Member Data Documentation

        - -

        ◆ active

        - -
        -
        - - - - -
        bool aace::alexa::LocalMediaSource::SessionState::active
        -
        -

        Flag that identifies if the application is currently active. This could mean different things for different applications. default false

        - -
        -
        - -

        ◆ accessToken

        - -
        -
        - - - - -
        std::string aace::alexa::LocalMediaSource::SessionState::accessToken
        -
        -

        The access token used to log in a user. The access token may also be used as a bearer token if the adapter makes an authenticated Web API to the music provider. default ""

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_engine_interface-members.html deleted file mode 100644 index 600ea523d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_engine_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::LocalMediaSourceEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::LocalMediaSourceEngineInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_engine_interface.html deleted file mode 100644 index 86220a372..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_local_media_source_engine_interface.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::LocalMediaSourceEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::LocalMediaSourceEngineInterface Class Referenceabstract
        -
        -
        -

        Detailed Description

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor-members.html deleted file mode 100644 index 11b6118cb..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::MediaPlaybackRequestor Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::MediaPlaybackRequestor, including all inherited members.

        - - - -
        mediaPlaybackResponse(MediaPlaybackRequestStatus mediaPlaybackRequestStatus)=0aace::alexa::MediaPlaybackRequestorpure virtual
        requestMediaPlayback(InvocationReason invocationReason=InvocationReason::AUTOMOTIVE_STARTUP, long long int elapsedBootTime=0)aace::alexa::MediaPlaybackRequestor
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor.html deleted file mode 100644 index c749225ae..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor.html +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::MediaPlaybackRequestor Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::MediaPlaybackRequestor Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Member Functions

        virtual void mediaPlaybackResponse (MediaPlaybackRequestStatus mediaPlaybackRequestStatus)=0
         
        void requestMediaPlayback (InvocationReason invocationReason=InvocationReason::AUTOMOTIVE_STARTUP, long long int elapsedBootTime=0)
         
        -

        Detailed Description

        -

        MediaPlaybackRequestor platform interface should be extended and registered into the Alexa Engine. This class is used to send an event to AVS when client is expected to automatically resume the last playing media. Alexa can use this event to push the last playing media on the device.

        -

        Member Function Documentation

        - -

        ◆ mediaPlaybackResponse()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::MediaPlaybackRequestor::mediaPlaybackResponse (MediaPlaybackRequestStatus mediaPlaybackRequestStatus)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of the delivery status of requestMediaPlayback.

        - -
        -
        - -

        ◆ requestMediaPlayback()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::alexa::MediaPlaybackRequestor::requestMediaPlayback (InvocationReason invocationReason = InvocationReason::AUTOMOTIVE_STARTUP,
        long long int elapsedBootTime = 0 
        )
        -
        -

        Platform implementation is expected to call this method whenever Alexa is the right source for the media resume. Automatic media resume is supported only within the threashold duration to avoid sudden surprise music playback to driver while driving.

        -

        : Please refer the README file to know more about the threashold and its configuration.

        -
        Parameters
        - - -
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface-members.html deleted file mode 100644 index a96e9912d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::MediaPlaybackRequestorEngineInterface Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html deleted file mode 100644 index f5bf787e5..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::MediaPlaybackRequestorEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::MediaPlaybackRequestorEngineInterface Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Types

        enum  InvocationReason {
        -  InvocationReason::AUTOMOTIVE_STARTUP, -
        -  InvocationReason::EXPLICIT_USER_ACTION -
        - }
         
        enum  MediaPlaybackRequestStatus {
        -  MediaPlaybackRequestStatus::SUCCESS, -
        -  MediaPlaybackRequestStatus::FAILED_CAN_RETRY, -
        -  MediaPlaybackRequestStatus::FAILED_TIMEOUT, -
        -  MediaPlaybackRequestStatus::ERROR -
        - }
         
        -

        Detailed Description

        -

        Member Enumeration Documentation

        - -

        ◆ InvocationReason

        - -
        -
        -

        This enumeration represents the reason requestMediaPlayback API

        - - - -
        Enumerator
        AUTOMOTIVE_STARTUP 

        Initiating the media resume by the system

        -
        EXPLICIT_USER_ACTION 
        Note
        : This reason is not accepted yet.
        -

        Initiating the media resume by the driver through physical button.

        -
        - -
        -
        - -

        ◆ MediaPlaybackRequestStatus

        - -
        -
        -

        Describes the response status of the requestMediaPlayback call for the media resume.

        - - - - - -
        Enumerator
        SUCCESS 

        Event call is successful

        -
        FAILED_CAN_RETRY 

        Event call is failed because Alexa is not connected, please retry.

        -
        FAILED_TIMEOUT 

        Event call is failed because of the threshold timeout.

        -
        ERROR 

        Event call is failed because of an error.

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_notifications-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_notifications-members.html deleted file mode 100644 index 77630fdd4..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_notifications-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::Notifications Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::Notifications, including all inherited members.

        - - - - -
        IndicatorState enum nameaace::alexa::Notifications
        onNotificationReceived()aace::alexa::Notificationsinlinevirtual
        setIndicator(IndicatorState state)=0aace::alexa::Notificationspure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_notifications.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_notifications.html deleted file mode 100644 index 855991467..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_notifications.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::Notifications Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::Notifications Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        enum  IndicatorState {
        -  IndicatorState::OFF = 0, -
        -  IndicatorState::ON = 1, -
        -  IndicatorState::UNKNOWN -
        - }
         
        - - - - - -

        -Public Member Functions

        virtual void setIndicator (IndicatorState state)=0
         
        virtual void onNotificationReceived ()
         
        -

        Detailed Description

        -

        Notifications should be extended to handle rendering indicators for notifications from AVS.

        -

        The platform implementation is responsible for rendering visual cues for an active notification. The Notifications MediaPlayer will receive directives from the Engine for rendering audio indicators required by a change in Notifications::IndicatorState.

        -
        Note
        This interface provides indicators that a notification was received, not the content of the notification.
        -
        See also
        AudioChannel
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Enumeration Documentation

        - -

        ◆ IndicatorState

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::Notifications::IndicatorState
        -
        -strong
        -
        -

        Specifies whether a notification indicator should be rendered on the platform

        - - - - -
        Enumerator
        OFF 

        The notification indicator should be turned off

        -
        ON 

        The notification indicator should be turned on

        -
        UNKNOWN 

        The notification indicator state is unknown.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ setIndicator()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::alexa::Notifications::setIndicator (IndicatorState state)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of whether a notification indicator should be rendered

        -
        Parameters
        - - -
        [in]stateThe new notification indicator state
        -
        -
        - -
        -
        - -

        ◆ onNotificationReceived()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual void aace::alexa::Notifications::onNotificationReceived ()
        -
        -inlinevirtual
        -
        -

        Notifies the platform implementation of notification received

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller-members.html deleted file mode 100644 index 52cb6e29c..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::PlaybackController Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::PlaybackController, including all inherited members.

        - - - - - -
        buttonPressed(PlaybackButton button)aace::alexa::PlaybackController
        PlaybackButton typedefaace::alexa::PlaybackController
        PlaybackToggle typedefaace::alexa::PlaybackController
        togglePressed(PlaybackToggle toggle, bool action)aace::alexa::PlaybackController
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller.html deleted file mode 100644 index 3e931519b..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::PlaybackController Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::PlaybackController Class Reference
        -
        -
        - - - - - - -

        -Public Types

        using PlaybackButton = aace::alexa::PlaybackControllerEngineInterface::PlaybackButton
         
        using PlaybackToggle = aace::alexa::PlaybackControllerEngineInterface::PlaybackToggle
         
        - - - - - -

        -Public Member Functions

        void buttonPressed (PlaybackButton button)
         
        void togglePressed (PlaybackToggle toggle, bool action)
         
        -

        Detailed Description

        -

        PlaybackController should be extended to handle playback control operations such as on-platform button presses for the AudioPlayer. The Engine will respond to PlaybackController events with playback control directives on the AudioPlayer MediaPlayer.

        -
        Note
        The TemplateRuntime::renderPlayerInfo() payload includes information about what playback control buttons should be enabled on screen with a player info display card.
        -
        See also
        AudioPlayer
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ PlaybackButton

        - - - -

        ◆ PlaybackToggle

        - - -

        Member Function Documentation

        - -

        ◆ buttonPressed()

        - -
        -
        - - - - - - - - -
        void aace::alexa::PlaybackController::buttonPressed (PlaybackButton button)
        -
        -

        Notifies the Engine of a platform button request (i.e. Play/Pause/Next/Previous/Skip Forward/Skip Backward) For certain playback types, the Engine will issue playback directives to the AudioPlayer MediaPlayer to control playback on the platform.

        Parameters
        - - -
        [in]buttonThe playback button type
        -
        -
        - -
        -
        - -

        ◆ togglePressed()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::alexa::PlaybackController::togglePressed (PlaybackToggle toggle,
        bool action 
        )
        -
        -

        Notifies the Engine of a platform toggle request (i.e. Shuffle/Loop/Repeat/Thumbs Up/Thumbs Down) For certain playback types, the Engine will issue playback directives to the AudioPlayer MediaPlayer to control playback on the platform.

        Parameters
        - - - -
        [in]toggleThe playback toggle type
        [in]actionThe toggle action ( selected/deselected )
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller_engine_interface-members.html deleted file mode 100644 index b6681d9be..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller_engine_interface-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::PlaybackControllerEngineInterface Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller_engine_interface.html deleted file mode 100644 index 4e8be7734..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_playback_controller_engine_interface.html +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::PlaybackControllerEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::PlaybackControllerEngineInterface Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Types

        enum  PlaybackButton {
        -  PlaybackButton::PLAY, -
        -  PlaybackButton::PAUSE, -
        -  PlaybackButton::NEXT, -
        -  PlaybackButton::PREVIOUS, -
        -  PlaybackButton::SKIP_FORWARD, -
        -  PlaybackButton::SKIP_BACKWARD -
        - }
         
        enum  PlaybackToggle {
        -  PlaybackToggle::SHUFFLE, -
        -  PlaybackToggle::LOOP, -
        -  PlaybackToggle::REPEAT, -
        -  PlaybackToggle::THUMBS_UP, -
        -  PlaybackToggle::THUMBS_DOWN -
        - }
         
        -

        Detailed Description

        -

        Member Enumeration Documentation

        - -

        ◆ PlaybackButton

        - -
        -
        -

        Describes the playback button type

        - - - - - - - -
        Enumerator
        PLAY 

        'Play' button.

        -
        PAUSE 

        'Pause' button.

        -
        NEXT 

        'Next' button.

        -
        PREVIOUS 

        'Previous' button.

        -
        SKIP_FORWARD 

        'Skip Forward' button.

        -
        SKIP_BACKWARD 

        'Skip Backward' button.

        -
        - -
        -
        - -

        ◆ PlaybackToggle

        - -
        -
        -

        Describes the playback button type

        - - - - - - -
        Enumerator
        SHUFFLE 

        'Shuffle' toggle.

        -
        LOOP 

        'Loop' toggle.

        -
        REPEAT 

        'Repeat' toggle.

        -
        THUMBS_UP 

        'Thumbs Up' toggle.

        -
        THUMBS_DOWN 

        'Thumbs Down' toggle.

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer-members.html deleted file mode 100644 index 7aec9bb8d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer-members.html +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::SpeechRecognizer Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::SpeechRecognizer, including all inherited members.

        - - - - - - - - -
        endOfSpeechDetected()aace::alexa::SpeechRecognizervirtual
        holdToTalk()aace::alexa::SpeechRecognizer
        Initiator typedefaace::alexa::SpeechRecognizer
        startCapture(Initiator initiator, uint64_t keywordBegin=UNSPECIFIED_INDEX, uint64_t keywordEnd=UNSPECIFIED_INDEX, const std::string &keyword="")aace::alexa::SpeechRecognizer
        stopCapture()aace::alexa::SpeechRecognizer
        tapToTalk()aace::alexa::SpeechRecognizer
        wakewordDetected(const std::string &wakeword)aace::alexa::SpeechRecognizervirtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer.html deleted file mode 100644 index 87e1a6f83..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::SpeechRecognizer Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::SpeechRecognizer Class Reference
        -
        -
        - - - - -

        -Public Types

        using Initiator = SpeechRecognizerEngineInterface::Initiator
         
        - - - - - - - - - - - - - -

        -Public Member Functions

        bool holdToTalk ()
         
        bool tapToTalk ()
         
        bool startCapture (Initiator initiator, uint64_t keywordBegin=UNSPECIFIED_INDEX, uint64_t keywordEnd=UNSPECIFIED_INDEX, const std::string &keyword="")
         
        bool stopCapture ()
         
        virtual bool wakewordDetected (const std::string &wakeword)
         
        virtual void endOfSpeechDetected ()
         
        -

        Detailed Description

        -

        SpeechRecognizer should be extended to initiate voice interactions with Alexa.

        -

        SpeechRecognizer provides interfaces for

          -
        • Initiating a dialog interaction with Alexa via press-and-hold, press-and-release, and voice-initiated user actions
        • -
        • Streaming audio input to the Engine
        • -
        • Enabling and disabling the wake word engine
        • -
        • Handling wake word and end of speech detection
        • -
        -
        Note
        For observing Alexa dialog state transitions, see AlexaClient::dialogStateChanged().
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ Initiator

        - -
        -
        -

        Describes type of event that initiated the speech request

        See also
        aace::alexa::SpeechRecognizerEngineInterface::Initiator
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ holdToTalk()

        - -
        -
        - - - - - - - -
        bool aace::alexa::SpeechRecognizer::holdToTalk ()
        -
        -

        Notifies the Engine of a speech recognition event initiated by a press-and-hold action on the platform. The Engine will call aace::audio::AudioInput::startAudioInput() to notify the platform implementation when to start writing audio samples.

        -

        The platform implementation should call stopCapture() to terminate speech recognition on release of the press-and-hold action.

        -
        Returns
        true if the Engine successfully initiated a recognize event, else false
        - -
        -
        - -

        ◆ tapToTalk()

        - -
        -
        - - - - - - - -
        bool aace::alexa::SpeechRecognizer::tapToTalk ()
        -
        -

        Notifies the Engine of a speech recognition event initiated by a press-and-release action on the platform. The Engine will call aace::audio::AudioInput::startAudioInput() to notify the platform implementation when to start writing audio samples.

        -

        The Engine will terminate the recognize event initiated by the press-and-release action when end of speech is detected.

        -
        Returns
        true if the Engine successfully started a recognize event, else false
        - -
        -
        - -

        ◆ startCapture()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::alexa::SpeechRecognizer::startCapture (Initiator initiator,
        uint64_t keywordBegin = UNSPECIFIED_INDEX,
        uint64_t keywordEnd = UNSPECIFIED_INDEX,
        const std::string & keyword = "" 
        )
        -
        -

        Notifies the Engine of a speech recognition event.

        -

        If the initiator type is HOLD_TO_TALK, then the platform implementation should call stopCapture() to terminate speech recognition on release of the press-and-hold action. Otherwise, the Engine will terminate the recognize event when end of speech is detected.

        -
        Parameters
        - - - - - -
        [in]initiatorThe Initiator type for the speech recognition event
        [in]keywordBeginThe sample index where the keyword begins. This is required when the initiator type is WAKEWORD, otherwise should be set to SpeechRecognizer::UNSPECIFIED_INDEX.
        [in]keywordEndThe sample index where the keyword ends. This is required when the initiator type is WAKEWORD, otherwise should be set to SpeechRecognizer::UNSPECIFIED_INDEX.
        [in]keywordThe keyword being recognized, e.g. "alexa". This is required when the initiator type is WAKEWORD, otherwise should be set to an empty string.
        -
        -
        -
        Returns
        true if the Engine successfully started a recognize event, else false
        - -
        -
        - -

        ◆ stopCapture()

        - -
        -
        - - - - - - - -
        bool aace::alexa::SpeechRecognizer::stopCapture ()
        -
        -

        Notifies the Engine to terminate the current recognize event. The Engine will call aace::audio::AudioInput::stopAudioInput() to notify the platform implementation when to stop writing audio samples.

        -
        Returns
        true if the Engine successfully terminated the current recognize event, else false
        - -
        -
        - -

        ◆ wakewordDetected()

        - -
        -
        - - - - - -
        - - - - - - - - -
        bool aace::alexa::SpeechRecognizer::wakewordDetected (const std::string & wakeword)
        -
        -virtual
        -
        -

        Notifies the platform implementation when a wake word is detected

        -
        Parameters
        - - -
        [in]wakewordThe wake word that was detected
        -
        -
        -
        Returns
        true if the Engine should initiate a recognize event, false if the Engine should ignore the invocation
        - -
        -
        - -

        ◆ endOfSpeechDetected()

        - -
        -
        - - - - - -
        - - - - - - - -
        void aace::alexa::SpeechRecognizer::endOfSpeechDetected ()
        -
        -virtual
        -
        -

        Notifies the platform implementation when end of speech is detected for the current recognize event

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer_engine_interface-members.html deleted file mode 100644 index 91ee6da69..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer_engine_interface-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::SpeechRecognizerEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::SpeechRecognizerEngineInterface, including all inherited members.

        - - -
        Initiator enum nameaace::alexa::SpeechRecognizerEngineInterface
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html deleted file mode 100644 index 758fc4ff6..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::SpeechRecognizerEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::SpeechRecognizerEngineInterface Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        enum  Initiator {
        -  Initiator::HOLD_TO_TALK, -
        -  Initiator::TAP_TO_TALK, -
        -  Initiator::WAKEWORD -
        - }
         
        -

        Detailed Description

        -

        Member Enumeration Documentation

        - -

        ◆ Initiator

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::SpeechRecognizerEngineInterface::Initiator
        -
        -strong
        -
        -

        Describes type of event that initiated the speech request.

        - - - - -
        Enumerator
        HOLD_TO_TALK 

        Hold-to-talk speech initiator type.

        -
        TAP_TO_TALK 

        Tap-to-talk speech initiator type.

        -
        WAKEWORD 

        Wakeword speech initiator type.

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_synthesizer-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_synthesizer-members.html deleted file mode 100644 index 2a9e75e56..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_synthesizer-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::SpeechSynthesizer Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::SpeechSynthesizer, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_synthesizer.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_synthesizer.html deleted file mode 100644 index 83babe102..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_speech_synthesizer.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::SpeechSynthesizer Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::SpeechSynthesizer Class Reference
        -
        -
        -

        Detailed Description

        -

        SpeechSynthesizer should be extended to handle Alexa speech output from the Engine.

        -

        The SpeechSynthesizer MediaPlayer and Speaker will receive directives from the Engine to handle Alexa speech playback.

        -
        Note
        For observing Alexa dialog state transitions, see AlexaClient::dialogStateChanged().
        -
        See also
        AudioChannel
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime-members.html deleted file mode 100644 index d1d637ba1..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::TemplateRuntime Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::TemplateRuntime, including all inherited members.

        - - - - - - - -
        clearPlayerInfo()=0aace::alexa::TemplateRuntimepure virtual
        clearTemplate()=0aace::alexa::TemplateRuntimepure virtual
        displayCardCleared()aace::alexa::TemplateRuntime
        FocusState typedefaace::alexa::TemplateRuntime
        renderPlayerInfo(const std::string &payload, PlayerActivity audioPlayerState, std::chrono::milliseconds offset, FocusState focusState)=0aace::alexa::TemplateRuntimepure virtual
        renderTemplate(const std::string &payload, FocusState focusState)=0aace::alexa::TemplateRuntimepure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime.html deleted file mode 100644 index 584864c22..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime.html +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::TemplateRuntime Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::TemplateRuntime Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        using FocusState = aace::alexa::FocusState
         
        - - - - - - - - - - - -

        -Public Member Functions

        virtual void renderTemplate (const std::string &payload, FocusState focusState)=0
         
        virtual void clearTemplate ()=0
         
        virtual void renderPlayerInfo (const std::string &payload, PlayerActivity audioPlayerState, std::chrono::milliseconds offset, FocusState focusState)=0
         
        virtual void clearPlayerInfo ()=0
         
        void displayCardCleared ()
         
        -

        Detailed Description

        -

        TemplateRuntime should be extended to handle directives from the Engine for rendering visual metadata with display cards.

        -

        Metadata is provided as structured JSON and should be parsed by the platform implementation for rendering cards that adhere to design guidelines for the platform device type. For screen-specific design guidance, see the AVS UX Design Overview: https://developer.amazon.com/docs/alexa-voice-service/ux-design-overview.html#displaycards

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ FocusState

        - -
        -
        -

        Alias the common FocusState and PlayerActivity namespaces.

        - -
        -
        -

        Member Function Documentation

        - -

        ◆ renderTemplate()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::alexa::TemplateRuntime::renderTemplate (const std::string & payload,
        FocusState focusState 
        )
        -
        -pure virtual
        -
        -

        Provides visual metadata associated with a user request to Alexa. The platform implementation should parse the template metadata and render a display card for the user.

        -

        For supported templates and rendering guidelines, see https://alexa.design/DevDocRenderTemplate

        -
        Parameters
        - - - -
        [in]payloadRenderable template metadata in structured JSON format
        [in]focusStateThe FocusState of the channel used by TemplateRuntime interface
        -
        -
        - -
        -
        - -

        ◆ clearTemplate()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual void aace::alexa::TemplateRuntime::clearTemplate ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to dismiss the template display card

        - -
        -
        - -

        ◆ renderPlayerInfo()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::alexa::TemplateRuntime::renderPlayerInfo (const std::string & payload,
        PlayerActivity audioPlayerState,
        std::chrono::milliseconds offset,
        FocusState focusState 
        )
        -
        -pure virtual
        -
        -

        Provides visual metadata associated with a user request to Alexa for audio playback. The platform implementation should parse the player info metadata and render a display card for the user. The audioPlayerState and offset are useful for implementing the progress bar in the display card. It is assumed that the client is responsible for progressing the progress bar when the AudioPlayer is in PLAYING state.

        -

        For rendering guidelines, see https://amzn.to/DevDocTemplatePlayerInfo

        -
        Parameters
        - - - - - -
        [in]payloadRenderable player info metadata in structured JSON format
        [in]audioPlayerStateThe state of the AudioPlayer
        [in]offsetThe offset in millisecond of the media that AudioPlayer is handling
        [in]focusStateThe FocusState of the channel used by TemplateRuntime interface
        -
        -
        -
        See also
        PlaybackController
        -
        -AudioPlayer
        - -
        -
        - -

        ◆ clearPlayerInfo()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual void aace::alexa::TemplateRuntime::clearPlayerInfo ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to dismiss the player info display card

        - -
        -
        - -

        ◆ displayCardCleared()

        - -
        -
        - - - - - - - -
        void aace::alexa::TemplateRuntime::displayCardCleared ()
        -
        -

        Notifies the Engine that a display card has been cleared from the screen. Upon getting this notification, the TemplateRuntime will release the visual channel.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime_engine_interface-members.html deleted file mode 100644 index 9e8f5e51f..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime_engine_interface-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::TemplateRuntimeEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::TemplateRuntimeEngineInterface, including all inherited members.

        - - -
        onDisplayCardCleared()=0aace::alexa::TemplateRuntimeEngineInterfacepure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime_engine_interface.html deleted file mode 100644 index d12d54612..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1_template_runtime_engine_interface.html +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::TemplateRuntimeEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::TemplateRuntimeEngineInterface Class Referenceabstract
        -
        -
        - - - - -

        -Public Member Functions

        virtual void onDisplayCardCleared ()=0
         
        -

        Detailed Description

        -

        Member Function Documentation

        - -

        ◆ onDisplayCardCleared()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual void aace::alexa::TemplateRuntimeEngineInterface::onDisplayCardCleared ()
        -
        -pure virtual
        -
        -

        Notifies the Engine that a display card has been cleared from the screen. Upon getting this notification, the TemplateRuntime will release the visual channel.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1config_1_1_alexa_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1config_1_1_alexa_configuration-members.html deleted file mode 100644 index 7ddb18e35..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1config_1_1_alexa_configuration-members.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::config::AlexaConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::config::AlexaConfiguration, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - - - -
        createAlertsConfig(const std::string &databaseFilePath)aace::alexa::config::AlexaConfigurationstatic
        createAuthProviderConfig(const std::vector< std::string > &providerNames)aace::alexa::config::AlexaConfigurationstatic
        createCapabilitiesDelegateConfig(const std::string &databaseFilePath)aace::alexa::config::AlexaConfigurationstatic
        createCertifiedSenderConfig(const std::string &databaseFilePath)aace::alexa::config::AlexaConfigurationstatic
        createCurlConfig(const std::string &certsPath, const std::string &iface="", const std::string &proxy="")aace::alexa::config::AlexaConfigurationstatic
        createDeviceInfoConfig(const std::string &deviceSerialNumber, const std::string &clientId, const std::string &productId, const std::string &manufacturerName, const std::string &description)aace::alexa::config::AlexaConfigurationstatic
        createDeviceSettingsConfig(const std::string &databaseFilePath, const std::vector< std::string > &locales={"en-US", "en-GB", "de-DE", "en-IN", "en-CA", "ja-JP", "en-AU", "fr-FR", "it-IT", "es-ES", "es-MX", "fr-CA", "es-US", "hi-IN", "pt-BR"}, const std::string &defaultLocale="en-US", const std::string &defaultTimezone="America/Vancouver", const std::vector< std::vector< std::string >> &localeCombinations={})aace::alexa::config::AlexaConfigurationstatic
        createDuckingConfig(bool duckingEnabled)aace::alexa::config::AlexaConfigurationstatic
        createEqualizerControllerConfig(const std::vector< EqualizerBand > &supportedBands={}, int minLevel=-6, int maxLevel=6, const std::vector< EqualizerBandLevel > &defaultBandLevels={})aace::alexa::config::AlexaConfigurationstatic
        createExternalMediaPlayerConfig(const std::string &agent)aace::alexa::config::AlexaConfigurationstatic
        createMiscStorageConfig(const std::string &databaseFilePath)aace::alexa::config::AlexaConfigurationstatic
        createNotificationsConfig(const std::string &databaseFilePath)aace::alexa::config::AlexaConfigurationstatic
        createSettingsConfig(const std::string &databaseFilePath, const std::string &locale="en-US")aace::alexa::config::AlexaConfigurationstatic
        createSpeakerManagerConfig(bool enabled)aace::alexa::config::AlexaConfigurationstatic
        createSpeechRecognizerConfig(const std::string &encoderName)aace::alexa::config::AlexaConfigurationstatic
        createSystemConfig(uint32_t firmwareVersion)aace::alexa::config::AlexaConfigurationstatic
        createTemplateRuntimeTimeoutConfig(const std::vector< TemplateRuntimeTimeout > &timeoutList)aace::alexa::config::AlexaConfigurationstatic
        EqualizerBand typedefaace::alexa::config::AlexaConfiguration
        EqualizerBandLevel typedefaace::alexa::config::AlexaConfiguration
        TemplateRuntimeTimeout typedefaace::alexa::config::AlexaConfiguration
        TemplateRuntimeTimeoutType enum nameaace::alexa::config::AlexaConfiguration
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1config_1_1_alexa_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1config_1_1_alexa_configuration.html deleted file mode 100644 index 6b0f0267a..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1alexa_1_1config_1_1_alexa_configuration.html +++ /dev/null @@ -1,925 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::config::AlexaConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::config::AlexaConfiguration Class Reference
        -
        -
        - - - - - - - - - - -

        -Public Types

        enum  TemplateRuntimeTimeoutType {
        -  TemplateRuntimeTimeoutType::DISPLAY_CARD_TTS_FINISHED_TIMEOUT, -
        -  TemplateRuntimeTimeoutType::DISPLAY_CARD_AUDIO_PLAYBACK_FINISHED_TIMEOUT, -
        -  TemplateRuntimeTimeoutType::DISPLAY_CARD_AUDIO_PLAYBACK_STOPPED_PAUSED_TIMEOUT -
        - }
         
        using TemplateRuntimeTimeout = std::pair< TemplateRuntimeTimeoutType, std::chrono::milliseconds >
         
        using EqualizerBand = aace::alexa::EqualizerControllerEngineInterface::EqualizerBand
         
        using EqualizerBandLevel = aace::alexa::EqualizerControllerEngineInterface::EqualizerBandLevel
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Static Public Member Functions

        static std::shared_ptr< aace::core::config::EngineConfigurationcreateDeviceInfoConfig (const std::string &deviceSerialNumber, const std::string &clientId, const std::string &productId, const std::string &manufacturerName, const std::string &description)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateAlertsConfig (const std::string &databaseFilePath)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateNotificationsConfig (const std::string &databaseFilePath)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateCertifiedSenderConfig (const std::string &databaseFilePath)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateCapabilitiesDelegateConfig (const std::string &databaseFilePath)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateCurlConfig (const std::string &certsPath, const std::string &iface="", const std::string &proxy="")
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateSettingsConfig (const std::string &databaseFilePath, const std::string &locale="en-US")
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateDeviceSettingsConfig (const std::string &databaseFilePath, const std::vector< std::string > &locales={"en-US", "en-GB", "de-DE", "en-IN", "en-CA", "ja-JP", "en-AU", "fr-FR", "it-IT", "es-ES", "es-MX", "fr-CA", "es-US", "hi-IN", "pt-BR"}, const std::string &defaultLocale="en-US", const std::string &defaultTimezone="America/Vancouver", const std::vector< std::vector< std::string >> &localeCombinations={})
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateMiscStorageConfig (const std::string &databaseFilePath)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateSpeakerManagerConfig (bool enabled)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateSystemConfig (uint32_t firmwareVersion)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateSpeechRecognizerConfig (const std::string &encoderName)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateTemplateRuntimeTimeoutConfig (const std::vector< TemplateRuntimeTimeout > &timeoutList)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateExternalMediaPlayerConfig (const std::string &agent)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateEqualizerControllerConfig (const std::vector< EqualizerBand > &supportedBands={}, int minLevel=-6, int maxLevel=6, const std::vector< EqualizerBandLevel > &defaultBandLevels={})
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateAuthProviderConfig (const std::vector< std::string > &providerNames)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateDuckingConfig (bool duckingEnabled)
         
        -

        Detailed Description

        -

        A factory interface for creating Alexa configuration objects

        -

        Member Typedef Documentation

        - -

        ◆ TemplateRuntimeTimeout

        - -
        -
        - - - - -
        using aace::alexa::config::AlexaConfiguration::TemplateRuntimeTimeout = std::pair<TemplateRuntimeTimeoutType, std::chrono::milliseconds>
        -
        -

        Identifies a Template Runtime configuration with a type and value pair

        - -
        -
        - -

        ◆ EqualizerBand

        - -
        -
        -

        Describes the equalizer bands supported by Alexa. The platform implementation may support a subset of these.

        -
        See also
        aace::alexa::EqualizerControllerEngineInterface::EqualizerBand
        - -
        -
        - -

        ◆ EqualizerBandLevel

        - - -

        Member Enumeration Documentation

        - -

        ◆ TemplateRuntimeTimeoutType

        - -
        -
        -

        enum specifying the configurable TemplateRuntime timeout.

        - - - - -
        Enumerator
        DISPLAY_CARD_TTS_FINISHED_TIMEOUT 

        Display Card timeout in ms when Alexa completes TTS

        -
        DISPLAY_CARD_AUDIO_PLAYBACK_FINISHED_TIMEOUT 

        Display Card timeout in ms when AudioPlayback Completes.

        -
        DISPLAY_CARD_AUDIO_PLAYBACK_STOPPED_PAUSED_TIMEOUT 

        Display Card timeout in ms when AudioPlayback Stopped or Paused.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ createDeviceInfoConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createDeviceInfoConfig (const std::string & deviceSerialNumber,
        const std::string & clientId,
        const std::string & productId,
        const std::string & manufacturerName,
        const std::string & description 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate device info configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "deviceInfo":
        {
        "deviceSerialNumber": "<DEVICE_SERIAL_NUMBER>"
        "clientId": "<CLIENT_ID>",
        "productId": "<PRODUCT_ID>"
        "manufacturerName": "<MANUFACTURER_NAME>"
        "description": "<DESCRIPTION>"
        }
        }
        Parameters
        - - - - - - -
        [in]deviceSerialNumberThe device serial number used to authorize the client with AVS
        [in]clientIdThe client ID used to authorize the client with AVS
        [in]productIdThe product ID used to authorize the client with AVS
        [in]manufacturerNameThe manufacturer name of the product
        [in]descriptionThe description of the product
        -
        -
        - -
        -
        - -

        ◆ createAlertsConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createAlertsConfig (const std::string & databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate alerts configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "alertsCapabilityAgent":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        [in]databaseFilePathThe file path to the SQLite database used to store persistent alerts data. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createNotificationsConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createNotificationsConfig (const std::string & databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate notifications configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "notifications":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        [in]databaseFilePathThe file path to the SQLite database used to store persistent notifications data. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createCertifiedSenderConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createCertifiedSenderConfig (const std::string & databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate certified sender configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "certifiedSender":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        [in]databaseFilePathThe file path to the SQLite database used to store persistent certified sender data. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createCapabilitiesDelegateConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createCapabilitiesDelegateConfig (const std::string & databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate capabilities delegate configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "capabilitiesDelegate":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        [in]databaseFilePathThe file path to the SQLite database used to store device capabilities. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createCurlConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createCurlConfig (const std::string & certsPath,
        const std::string & iface = "",
        const std::string & proxy = "" 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate CURL configuration data.

        -

        The 'libCurlUtils' sub-component of the global configuration supports the following options:

          -
        • CURLOPT_CAPATH If present, specifies a value for the libcurl property CURLOPT_CAPATH.
        • -
        • CURLOPT_INTERFACE if present, specifies a value for the libcurl property CURLOPT_INTERFACE.
        • -
        -

        The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "libcurlUtils" : {
        "CURLOPT_CAPATH" : "<CA_CERTIFICATES_FILE_PATH>",
        "CURLOPT_INTERFACE" : "<NETWORK_INTERFACE_NAME>",
        "CURLOPT_PROXY" : "<PROXY_ADDRESS>"
        }
        }
        Parameters
        - - - - -
        [in]certsPathThe file path to the directory holding CA certificates
        [in]ifaceThe specific network interface to use. This can be a network interface name, an IP address or a host name. Default to the system's primary network interface.
        [in]proxyThe proxy used for outgoing requests.
        -
        -
        - -
        -
        - -

        ◆ createSettingsConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createSettingsConfig (const std::string & databaseFilePath,
        const std::string & locale = "en-US" 
        )
        -
        -static
        -
        -
        Deprecated:
        Use AlexaConfiguration::createDeviceSettingsConfig().
        -

        Factory method used to programmatically generate settings configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "settings": {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>",
        "defaultAVSClientSettings": {
        "locale": "<LOCALE>"
        }
        }
        }
        Parameters
        - - - -
        [in]databaseFilePathThe file path to the SQLite database used to store persistent settings data. The database will be created on initialization if it does not already exist.
        [in]localeThe current locale setting on the client. Default to "en-US".
        -
        -
        - -
        -
        - -

        ◆ createDeviceSettingsConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createDeviceSettingsConfig (const std::string & databaseFilePath,
        const std::vector< std::string > & locales = {"en-US", "en-GB", "de-DE", "en-IN", "en-CA", "ja-JP", "en-AU", "fr-FR", "it-IT", "es-ES", "es-MX", "fr-CA", "es-US", "hi-IN", "pt-BR"},
        const std::string & defaultLocale = "en-US",
        const std::string & defaultTimezone = "America/Vancouver",
        const std::vector< std::vector< std::string >> & localeCombinations = {} 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate device settings configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "deviceSettings": {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>",
        "locales": [<LIST_OF_LOCALE_STRINGS>],
        "defaultLocale": "<DEFAULT_LOCALE_STRING>",
        "localeCombinations": [[<LOCALE_STRING_PAIR>]],
        "defaultTimezone": "<TIMEZONE>"
        }
        }
        Parameters
        - - - - - - -
        [in]databaseFilePathThe file path to the SQLite database used to store persistent settings data. The database will be created on initialization if it does not already exist.
        [in]localesA list of locales supported by the device. The default is ["en-US","en-GB","de-DE", "en-IN","en-CA","ja-JP","en-AU","fr-FR","it-IT","es-ES","es-MX","fr-CA","es-US","hi-IN","pt-BR"]. For the accepted values, refer to https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/system.html#locales
        [in]defaultLocaleThe default locale setting on the device. The default is "en-US".
        [in]defaultTimezoneThe default timezone setting on the device. The default is "America/Vancouver". For accepted values, refer to the accepted timezones here: https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/system.html#timezonechanged
        [in]localeCombinationsA list of locale combinations supported by the device for dual-locale mode. The permitted combinations are [["en-CA","fr-CA"],["fr-CA","en-CA"],["en-US","es-US"], ["es-US","en-US"],["en-IN","hi-IN"],["hi-IN","en-IN"],["en-US","fr-FR"],["fr-FR","en-US"], ["en-US","de-DE"],["de-DE","en-US"],["en-US","ja-JP"],["ja-JP","en-US"],["en-US","it-IT"], ["it-IT","en-US"],["en-US","es-ES"],["es-ES","en-US"]]. Any locale specified in this list must also be specified in the locales list.
        -
        -
        - -
        -
        - -

        ◆ createMiscStorageConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createMiscStorageConfig (const std::string & databaseFilePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate misc storage configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "miscDatabase":
        {
        "databaseFilePath": "<SQLITE_DATABASE_FILE_PATH>",
        }
        }
        Parameters
        - - -
        [in]databaseFilePathThe file path to the SQLite database used to store persistent misc storage data. The database will be created on initialization if it does not already exist.
        -
        -
        - -
        -
        - -

        ◆ createSpeakerManagerConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createSpeakerManagerConfig (bool enabled)
        -
        -static
        -
        -

        Factory method used to programmatically generate speaker manager configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "speakerManager": {
        "enabled": [true|false]
        }
        }
        }
        Parameters
        - - -
        [in]enabledEnable or disable the speaker manager (default is enabled)
        -
        -
        - -
        -
        - -

        ◆ createSystemConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createSystemConfig (uint32_t firmwareVersion)
        -
        -static
        -
        -

        Factory method used to programmatically generate system configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "system": {
        "firmwareVersion": "<FIRMWARE_VERSION>"
        }
        }
        }
        Parameters
        - - -
        [in]firmwareVersionThe firmware version of the client device
        -
        -
        - -
        -
        - -

        ◆ createSpeechRecognizerConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createSpeechRecognizerConfig (const std::string & encoderName)
        -
        -static
        -
        -

        Factory method used to programmatically generate encoder configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "speechRecognizer": {
        "encoder": {
        "name": "<ENCODER_NAME>"
        }
        }
        }
        }
        Parameters
        - - -
        [in]encoderNameThe encoder codec name to be used
        -
        -
        - -
        -
        - -

        ◆ createTemplateRuntimeTimeoutConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createTemplateRuntimeTimeoutConfig (const std::vector< TemplateRuntimeTimeout > & timeoutList)
        -
        -static
        -
        -

        Factory method used to programmatically generate template runtime configuration data. This is an optional configuration. Following are the accepted keys and their description.

          -
        • displayCardTTSFinishedTimeout If present, specifies the values in milli seconds to control the timeout of display card at the end of Alexa TTS.
        • -
        • displayCardAudioPlaybackFinishedTimeout If present, specifies the values in milli seconds to control the timeout of display card at the FINISHED state of AudioPlayback.
        • -
        • displayCardAudioPlaybackStoppedPausedTimeout If present, specifies the values in milli seconds to control the timeout of display card at STOP or PAUSE state of AudioPlayback. The data generated by this method is equivalent to providing the following JSON values in a configuration:
        • -
        -
        {
        "templateRuntimeCapabilityAgent": {
        "displayCardTTSFinishedTimeout": <TIMEOUT_IN_MS>,
        "displayCardAudioPlaybackFinishedTimeout": <TIMEOUT_IN_MS>,
        "displayCardAudioPlaybackStoppedPausedTimeout": <TIMEOUT_IN_MS>
        }
        }
        Parameters
        - - -
        [in]timeoutListA list of TemplateRuntimeTimeout type and value pairs
        -
        -
        - -
        -
        - -

        ◆ createExternalMediaPlayerConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createExternalMediaPlayerConfig (const std::string & agent)
        -
        -static
        -
        -

        Factory method used to programmatically generate external media player configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "externalMediaPlayer": {
        "agent": "<agent>"
        }
        }
        }
        Parameters
        - - -
        [in]agentThe external media player agent
        -
        -
        - -
        -
        - -

        ◆ createEqualizerControllerConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createEqualizerControllerConfig (const std::vector< EqualizerBand > & supportedBands = {},
        int minLevel = -6,
        int maxLevel = 6,
        const std::vector< EqualizerBandLevel > & defaultBandLevels = {} 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate equalizer controller configuration data. This is an optional configuration, and default settings will be used if configuration is not provided. This method produces configuration data according to the JSON structure in the sample below.

        -
        "equalizer": {
        "bands": {
        "BASS": true,
        "MIDRANGE": false,
        "TREBLE": true
        },
        "defaultState": {
        "bands": {
        "BASS": 4,
        "TREBLE": -1
        }
        },
        "minLevel": -6,
        "maxLevel": 6
        }

        The configuration branches are used as follows:

        -
          -
        • equalizer.bands: Specifies which bands are supported by the device and will be enabled for control with Alexa. Each child key is the name of an Alexa-supported band ("BASS", "MIDRANGE", or "TREBLE") and value is whether the device supports the band. Only bands explicitly declared supported will be enabled in the SDK and Alexa. Omitting this branch enables all bands by default.
        • -
        -
          -
        • equalizer.defaultState: Describes the default or reset state of the equalizer. These settings are used to reset the equalizer with Alexa such as by saying "Alexa, reset bass." If this branch or its child is omitted, default values will be used.
        • -
        • equalizer.defaultState.bands: Defines the default gain level setting in dB for each supported equalizer band. Each element key is the name of a supported band and value is a level (int) specifying the default gain in dB. All of the supported bands must be provided once this branch is defined. All dB levels must obey the limits declared in "equalizer.minLevel" and "equalizer.maxLevel". Omitting this branch uses the default 0dB for each band.
        • -
        -
          -
        • equalizer.minLevel and equalizer.maxLevel: Integer values specifying the decibel level range on which Alexa may operate for the supported bands. The device may support a different range internally, but Alexa will know only about the limits declared here. Values should be specified as absolute amplitude gain in integer dB and scaled to the platform's internal range as necessary. If these values are omitted, the default range min -6dB and max +6dB will be used.
        • -
        -
        Parameters
        - - - - - -
        supportedBandsA list of supported equalizer bands. Corresponds to the "equalizer.bands" config branch. Only bands provided in the list will be enabled. Unspecified or empty supportedBands omits the config branch. Nonempty supportedBands includes the branch and declares each band in the list with a value "true".
        minLevelThe minimum gain level for the equalizer bands in integer dB. Corresponds to "equalizer.minLevel". Unspecified minLevel uses the -6dB default.
        maxLevelThe maximum gain level for the equalizer bands in integer dB. Corresponds to "equalizer.maxLevel". Unspecified maxLevel uses the +6dB default.
        defaultBandLevelsThe default or reset state of the equalizer bands. Corresponds to the "equalizer.defaultState.bands" config branch. Unspecified or empty defaultBandLevels omits the config branch.
        -
        -
        - -
        -
        - -

        ◆ createAuthProviderConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createAuthProviderConfig (const std::vector< std::string > & providerNames)
        -
        -static
        -
        -

        Factory method used to programmatically generate auth provider configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "authProvider": {
        "providers": [<LIST_OF_PROVIDER_NAMES_STRINGS>]
        }
        }
        }
        Parameters
        - - -
        providerNamesThe list of auth providers
        -
        -
        - -
        -
        - -

        ◆ createDuckingConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::alexa::config::AlexaConfiguration::createDuckingConfig (bool duckingEnabled)
        -
        -static
        -
        -

        Factory method used to programmatically generate music ducking configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.alexa": {
        "audio" : {
        "audioOutputType.music": {
        "ducking": {
        "enabled" : [true|false]
        }
        }
        }
        }
        Parameters
        - - -
        duckingEnabledtrue if ducking is enabled
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1_a_p_l-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1_a_p_l-members.html deleted file mode 100644 index 887db968f..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1_a_p_l-members.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::apl::APL Member List
        -
        -
        - -

        This is the complete list of members for aace::apl::APL, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - -
        clearAllExecuteCommands()aace::apl::APL
        clearCard()aace::apl::APL
        clearDocument(const std::string &token)=0aace::apl::APLpure virtual
        dataSourceUpdate(const std::string &sourceType, const std::string &jsonPayload, const std::string &token)=0aace::apl::APLpure virtual
        executeCommands(const std::string &jsonPayload, const std::string &token)=0aace::apl::APLpure virtual
        executeCommandsResult(const std::string &token, const bool result, const std::string &error)aace::apl::APL
        interruptCommandSequence(const std::string &token)=0aace::apl::APLpure virtual
        processActivityEvent(const std::string &source, const ActivityEvent event)aace::apl::APL
        renderDocument(const std::string &jsonPayload, const std::string &token, const std::string &windowId)=0aace::apl::APLpure virtual
        renderDocumentResult(const std::string &token, const bool result, const std::string &error)aace::apl::APL
        sendDataSourceFetchRequestEvent(const std::string &type, const std::string &payload)aace::apl::APL
        sendDeviceWindowState(const std::string &state)aace::apl::APL
        sendDocumentState(const std::string &state)aace::apl::APL
        sendRuntimeErrorEvent(const std::string &payload)aace::apl::APL
        sendUserEvent(const std::string &payload)aace::apl::APL
        setAPLMaxVersion(const std::string &aplMaxVersion)aace::apl::APL
        setDocumentIdleTimeout(std::chrono::milliseconds documentIdleTimeout)aace::apl::APL
        setPlatformProperty(const std::string &name, const std::string &value)aace::apl::APL
        updateAPLRuntimeProperties(const std::string &properties)=0aace::apl::APLpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1_a_p_l.html b/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1_a_p_l.html deleted file mode 100644 index 39ad32d05..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1_a_p_l.html +++ /dev/null @@ -1,789 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::apl::APL Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::apl::APL Class Referenceabstract
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual void renderDocument (const std::string &jsonPayload, const std::string &token, const std::string &windowId)=0
         
        virtual void clearDocument (const std::string &token)=0
         
        virtual void executeCommands (const std::string &jsonPayload, const std::string &token)=0
         
        virtual void interruptCommandSequence (const std::string &token)=0
         
        virtual void dataSourceUpdate (const std::string &sourceType, const std::string &jsonPayload, const std::string &token)=0
         
        virtual void updateAPLRuntimeProperties (const std::string &properties)=0
         
        void clearCard ()
         
        void clearAllExecuteCommands ()
         
        void sendUserEvent (const std::string &payload)
         
        void sendDataSourceFetchRequestEvent (const std::string &type, const std::string &payload)
         
        void sendRuntimeErrorEvent (const std::string &payload)
         
        void setAPLMaxVersion (const std::string &aplMaxVersion)
         
        void setDocumentIdleTimeout (std::chrono::milliseconds documentIdleTimeout)
         
        void renderDocumentResult (const std::string &token, const bool result, const std::string &error)
         
        void executeCommandsResult (const std::string &token, const bool result, const std::string &error)
         
        void processActivityEvent (const std::string &source, const ActivityEvent event)
         
        void sendDocumentState (const std::string &state)
         
        void sendDeviceWindowState (const std::string &state)
         
        void setPlatformProperty (const std::string &name, const std::string &value)
         
        -

        Detailed Description

        -

        APL should be extended to handle receiving Alexa Presentation RenderDocument and ExecuteCommands directives from AVS. These directives contain metadata for rendering or operating on display cards for devices with GUI support. For more information about Alexa Presentation Language (APL) see the interface overview:

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/understand-apl.html

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ renderDocument()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::apl::APL::renderDocument (const std::string & jsonPayload,
        const std::string & token,
        const std::string & windowId 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation that a RenderDocument directive has been received. Once called, the client should render the document based on the APL specification in the payload in structured JSON format.

        -
        Note
        The payload may contain customer sensitive information and should be used with utmost care. Failure to do so may result in exposing or mishandling of customer data.
        -
        Parameters
        - - - - -
        [in]jsonPayloadThe payload of the Alexa.Presentation.APL.RenderDocument directive which follows the APL specification.
        [in]tokenThe APL presentation token associated with the document in the payload.
        [in]windowIdThe target windowId.
        -
        -
        - -
        -
        - -

        ◆ clearDocument()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::apl::APL::clearDocument (const std::string & token)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation when the client should clear the APL display card. Once the card is cleared, the platform implementation should call clearCard().

        -
        Parameters
        - - -
        [in]tokenThe APL presentation token associated with the current rendered document.
        -
        -
        - -
        -
        - -

        ◆ executeCommands()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::apl::APL::executeCommands (const std::string & jsonPayload,
        const std::string & token 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation that an ExecuteCommands directive has been received.

        -
        Parameters
        - - - -
        [in]jsonPayloadThe payload of the Alexa.Presentation.APL.ExecuteCommands directive in structured JSON format.
        [in]tokenThe APL presentation token associated with the current rendered document.
        -
        -
        - -
        -
        - -

        ◆ interruptCommandSequence()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::apl::APL::interruptCommandSequence (const std::string & token)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation that a command execution sequence should be interrupted.

        -
        Parameters
        - - -
        [in]tokenThe APL presentation token associated with the current rendered document.
        -
        -
        - -
        -
        - -

        ◆ dataSourceUpdate()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::apl::APL::dataSourceUpdate (const std::string & sourceType,
        const std::string & jsonPayload,
        const std::string & token 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of a dynamic data source update. Please refer to APL documentation for more information:

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-data-source.html

        -
        Parameters
        - - - - -
        [in]sourceTypeDataSource type.
        [in]jsonPayloadThe payload of the directive in structured JSON format.
        [in]tokenThe APL presentation token associated with the current rendered document.
        -
        -
        - -
        -
        - -

        ◆ updateAPLRuntimeProperties()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::apl::APL::updateAPLRuntimeProperties (const std::string & properties)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of APL runtime environment properties that must be updated. The Engine will generate these values based on the setAPLProperty() values. The APL runtime will be affected by these values.

        -
        Parameters
        - - -
        [in]propertiesA JSON object in string form containing the APL runtime properties that need to be updated.
        {
        "<property name>" : "<property value>"
        }
        -
        -
        -
        Attention
        Supported names and values.
        - - - - - - - - - -
        Name Value Description
        drivingState parked, moving Sets the Automobile driving state runtime property.
        theme light, dark, light-<themeId>, dark-<themeId> APL viewport theme value.
        video enabled, disabled Indicates if video should be allowed in the APL document.
        - -
        -
        - -

        ◆ clearCard()

        - -
        -
        - - - - - - - -
        void aace::apl::APL::clearCard ()
        -
        -

        Notifies the Engine to clear the card from the screen and release any focus being held.

        - -
        -
        - -

        ◆ clearAllExecuteCommands()

        - -
        -
        - - - - - - - -
        void aace::apl::APL::clearAllExecuteCommands ()
        -
        -

        Notifies the Engine to clear all pending ExecuteCommands directives and mark them as failed.

        - -
        -
        - -

        ◆ sendUserEvent()

        - -
        -
        - - - - - - - - -
        void aace::apl::APL::sendUserEvent (const std::string & payload)
        -
        -

        Notifies the Engine to send UserEvent event to AVS.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-interface.html#userevent-request

        -
        Parameters
        - - -
        [in]payloadThe UserEvent event payload. The caller of this function is responsible to pass the payload as it defined by AVS.
        -
        -
        - -
        -
        - -

        ◆ sendDataSourceFetchRequestEvent()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::apl::APL::sendDataSourceFetchRequestEvent (const std::string & type,
        const std::string & payload 
        )
        -
        -

        Notifies the Engine to send a LoadIndexListData event to AVS.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-interface.html#loadindexlistdata-request https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-data-source.html

        -
        Parameters
        - - - -
        typeThe type of data source fetch request. The only supported value is "dynamicIndexList".
        payloadThe DataSourceFetchRequest event payload. The caller of this function is responsible to pass the payload as defined by AVS.
        -
        -
        - -
        -
        - -

        ◆ sendRuntimeErrorEvent()

        - -
        -
        - - - - - - - - -
        void aace::apl::APL::sendRuntimeErrorEvent (const std::string & payload)
        -
        -

        Notifies the Engine to send an APL RuntimeError event to AVS

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-presentation-language/apl-interface.html#runtimeerror-request

        -
        Parameters
        - - -
        payloadThe RuntimeError event payload. The caller of this function is responsible to pass the payload as defined by AVS.
        -
        -
        - -
        -
        - -

        ◆ setAPLMaxVersion()

        - -
        -
        - - - - - - - - -
        void aace::apl::APL::setAPLMaxVersion (const std::string & aplMaxVersion)
        -
        -

        Set the APL version supported by the runtime component.

        -
        Parameters
        - - -
        [in]aplMaxVersionThe APL version supported.
        -
        -
        - -
        -
        - -

        ◆ setDocumentIdleTimeout()

        - -
        -
        - - - - - - - - -
        void aace::apl::APL::setDocumentIdleTimeout (std::chrono::milliseconds documentIdleTimeout)
        -
        -

        Set a custom document idle timeout. When the idle timeout is reached, the Engine will call clearDocument().

        -
        Parameters
        - - -
        [in]documentIdleTimeoutThe timeout in milliseconds.
        -
        -
        -
        Note
        Will be reset for every directive received from AVS.
        - -
        -
        - -

        ◆ renderDocumentResult()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::apl::APL::renderDocumentResult (const std::string & token,
        const bool result,
        const std::string & error 
        )
        -
        -

        Notifies the Engine with the result of a renderDocument notification.

        -
        Parameters
        - - - - -
        [in]tokenThe APL presentation token associated with the current rendered document.
        [in]resultRendering result (true on executed, false on exception).
        [in]errorError message provided in case result is false.
        -
        -
        - -
        -
        - -

        ◆ executeCommandsResult()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::apl::APL::executeCommandsResult (const std::string & token,
        const bool result,
        const std::string & error 
        )
        -
        -

        Notifies the Engine with the result of an executeCommands notification.

        -
        Parameters
        - - - - -
        [in]tokenThe APL presentation token associated with the current rendered document.
        [in]resultRendering result (true on executed, false on exception).
        [in]errorError message provided in case result is false.
        -
        -
        - -
        -
        - -

        ◆ processActivityEvent()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::apl::APL::processActivityEvent (const std::string & source,
        const ActivityEvent event 
        )
        -
        -

        Notifies the Engine of an activity change event. The APL runtime can report whether the rendered document is active or inactive. If active, the idle timer is stopped and prevents clearDocument. If inactive, the idle timer is started and clearDocument will be called after timer expiration.

        -
        Parameters
        - - - -
        [in]sourceThe source of the activity event.
        [in]eventThe activity change event.
        -
        -
        - -
        -
        - -

        ◆ sendDocumentState()

        - -
        -
        - - - - - - - - -
        void aace::apl::APL::sendDocumentState (const std::string & state)
        -
        -

        Notifies the Engine of rendered document state. The format of the state is a JSON string representing the payload object of the RenderedDocumentState sent with APL events.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/presentation-apl.html#rendereddocumentstate

        -
        Parameters
        - - -
        [in]stateThe visual state of the rendered components.
        -
        -
        - -
        -
        - -

        ◆ sendDeviceWindowState()

        - -
        -
        - - - - - - - - -
        void aace::apl::APL::sendDeviceWindowState (const std::string & state)
        -
        -

        Notifies the Engine of the current window state. The format of the state is a JSON string representing the payload object of the WindowState context sent for the Alexa.Display.Window interface.

        -

        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/display-window.html#windowstate-context-object

        -
        Parameters
        - - -
        [in]stateThe window state context object.
        -
        -
        - -
        -
        - -

        ◆ setPlatformProperty()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::apl::APL::setPlatformProperty (const std::string & name,
        const std::string & value 
        )
        -
        -

        The rendered APL experience will rely on the value of some defined properties. The platform implementation must report these values to provide a safe visual experience in the vehicle.

        -
        Parameters
        - - - -
        [in]nameThe name of the property.
        [in]valueThe value of the property.
        -
        -
        -
        Note
        Contact your Solutions Architect for an updated list of automotive themes identifiers.
        -
        Attention
        Supported names and values.
        - - - - - - - - - -
        Name Value Description
        drivingState parked, moving Set this property when vehicle driving state changes.
        uiMode day, night This affects the contrast of certified APL experiences.
        themeId (night) black, gray, (day) gray1, gray2 Optional value that can be empty string. Valid values for day and night mode are specified.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html deleted file mode 100644 index d0e89e860..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::apl::config::APLConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::apl::config::APLConfiguration, including all inherited members.

        - - - - -
        AlexaPresentationTimeout typedefaace::apl::config::APLConfiguration
        AlexaPresentationTimeoutType enum nameaace::apl::config::APLConfiguration
        createAlexaPresentationTimeoutConfig(const std::vector< AlexaPresentationTimeout > &timeoutList)aace::apl::config::APLConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html deleted file mode 100644 index b98623963..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::apl::config::APLConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::apl::config::APLConfiguration Class Reference
        -
        -
        - - - - - - -

        -Public Types

        enum  AlexaPresentationTimeoutType { AlexaPresentationTimeoutType::DISPLAY_DOCUMENT_INTERACTION_IDLE_TIMEOUT - }
         
        using AlexaPresentationTimeout = std::pair< AlexaPresentationTimeoutType, std::chrono::milliseconds >
         
        - - - -

        -Static Public Member Functions

        static std::shared_ptr< aace::core::config::EngineConfigurationcreateAlexaPresentationTimeoutConfig (const std::vector< AlexaPresentationTimeout > &timeoutList)
         
        -

        Detailed Description

        -

        A factory interface for creating APL configuration objects

        -

        Member Typedef Documentation

        - -

        ◆ AlexaPresentationTimeout

        - -
        -
        - - - - -
        using aace::apl::config::APLConfiguration::AlexaPresentationTimeout = std::pair<AlexaPresentationTimeoutType, std::chrono::milliseconds>
        -
        -

        Identifies a AlexaPresentationTimeout configuration with a type and value pair.

        - -
        -
        -

        Member Enumeration Documentation

        - -

        ◆ AlexaPresentationTimeoutType

        - -
        -
        -

        enum specifying the configurable AlexaPresentation timeout.

        - - -
        Enumerator
        DISPLAY_DOCUMENT_INTERACTION_IDLE_TIMEOUT 

        RenderDocument timeout in ms for display card timeout.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ createAlexaPresentationTimeoutConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::apl::config::APLConfiguration::createAlexaPresentationTimeoutConfig (const std::vector< AlexaPresentationTimeout > & timeoutList)
        -
        -static
        -
        -

        Factory method used to programmatically generate Alexa Presentation configuration data. This is an optional configuration. Following are the accepted keys and their description.

          -
        • displayDocumentInteractionIdleTimeout If present, the timeout in ms for display card timeout. The data generated by this method is equivalent to providing the following JSON values in a configuration file:
        • -
        -
        {
        "alexaPresentationCapabilityAgent": {
        "displayDocumentInteractionIdleTimeout": <TIMEOUT_IN_MS>
        }
        }
        Parameters
        - - -
        [in]timeoutListA list of AlexaPresentationTimeout type and value pairs
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_input_provider-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_input_provider-members.html deleted file mode 100644 index 656a3ce48..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_input_provider-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::audio::AudioInputProvider Member List
        -
        -
        - -

        This is the complete list of members for aace::audio::AudioInputProvider, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_input_provider.html b/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_input_provider.html deleted file mode 100644 index a2cb77a4d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_input_provider.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::audio::AudioInputProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::audio::AudioInputProvider Class Referenceabstract
        -
        -
        -

        Detailed Description

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output-members.html deleted file mode 100644 index 98d2849d4..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output-members.html +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::audio::AudioOutput Member List
        -
        -
        - -

        This is the complete list of members for aace::audio::AudioOutput, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - - - - - -
        audioFocusEvent(FocusAction action)aace::audio::AudioOutput
        FocusAction typedefaace::audio::AudioOutput
        getDuration()=0aace::audio::AudioOutputpure virtual
        getNumBytesBuffered()aace::audio::AudioOutputvirtual
        getPosition()=0aace::audio::AudioOutputpure virtual
        mayDuck()=0aace::audio::AudioOutputpure virtual
        MediaError typedefaace::audio::AudioOutput
        mediaError(MediaError error, const std::string &description="")aace::audio::AudioOutput
        MediaState typedefaace::audio::AudioOutput
        mediaStateChanged(MediaState state)aace::audio::AudioOutput
        MutedState enum nameaace::audio::AudioOutput
        mutedStateChanged(MutedState state)=0aace::audio::AudioOutputpure virtual
        pause()=0aace::audio::AudioOutputpure virtual
        play()=0aace::audio::AudioOutputpure virtual
        prepare(std::shared_ptr< AudioStream > stream, bool repeating)=0aace::audio::AudioOutputpure virtual
        prepare(const std::string &url, bool repeating)=0aace::audio::AudioOutputpure virtual
        resume()=0aace::audio::AudioOutputpure virtual
        setPosition(int64_t position)=0aace::audio::AudioOutputpure virtual
        startDucking()=0aace::audio::AudioOutputpure virtual
        stop()=0aace::audio::AudioOutputpure virtual
        stopDucking()=0aace::audio::AudioOutputpure virtual
        TIME_UNKNOWNaace::audio::AudioOutputstatic
        volumeChanged(float volume)=0aace::audio::AudioOutputpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output.html b/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output.html deleted file mode 100644 index e3210106e..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output.html +++ /dev/null @@ -1,800 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::audio::AudioOutput Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::audio::AudioOutput Class Referenceabstract
        -
        -
        - - - - - - - - - - -

        -Public Types

        enum  MutedState {
        -  MutedState::MUTED, -
        -  MutedState::UNMUTED -
        - }
         
        using MediaState = aace::audio::AudioOutputEngineInterface::MediaState
         
        using MediaError = aace::audio::AudioOutputEngineInterface::MediaError
         
        using FocusAction = aace::audio::AudioOutputEngineInterface::FocusAction
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual bool prepare (std::shared_ptr< AudioStream > stream, bool repeating)=0
         
        virtual bool prepare (const std::string &url, bool repeating)=0
         
        virtual void mayDuck ()=0
         
        virtual bool play ()=0
         
        virtual bool stop ()=0
         
        virtual bool pause ()=0
         
        virtual bool resume ()=0
         
        virtual bool startDucking ()=0
         
        virtual bool stopDucking ()=0
         
        virtual int64_t getPosition ()=0
         
        virtual bool setPosition (int64_t position)=0
         
        virtual int64_t getDuration ()=0
         
        virtual int64_t getNumBytesBuffered ()
         
        virtual bool volumeChanged (float volume)=0
         
        virtual bool mutedStateChanged (MutedState state)=0
         
        void mediaStateChanged (MediaState state)
         
        void mediaError (MediaError error, const std::string &description="")
         
        void audioFocusEvent (FocusAction action)
         
        - - - -

        -Static Public Attributes

        static const int64_t TIME_UNKNOWN = -1
         
        -

        Detailed Description

        -

        AudioOutput should be extended to play audio data provided by the Engine.

        -

        After returning true from a playback-controlling method invocation from the Engine (i.e. play(), pause(), stop(), resume()), it is required that platform implementation notify the Engine of a playback state change by calling one of mediaStateChanged() with the new MediaState or mediaError() with the MediaError. The Engine expects no call to mediaStateChanged() in response to an invocation for which the platform returned false.

        -

        The platform implementation may call mediaError() or mediaStateChanged() with MediaState::BUFFERING at any time during a playback operation to notify the Engine of an error or buffer underrun, respectively. When the media player resumes playback after a buffer underrun, the platform implementation should call mediaStateChanged() with MediaState::PLAYING.

        -
        Note
        The AudioOutput platform implementation should be able to support the audio formats recommended by AVS for a familiar Alexa experience: https://developer.amazon.com/docs/alexa-voice-service/recommended-media-support.html
        -

        Member Typedef Documentation

        - -

        ◆ MediaState

        - -
        -
        - - - - -
        using aace::audio::AudioOutput::MediaState = aace::audio::AudioOutputEngineInterface::MediaState
        -
        -

        Describes the playback state of the platform media player

        See also
        aace::alexa::MediaPlayerEngineInterface::MediaState
        - -
        -
        - -

        ◆ MediaError

        - -
        -
        - - - - -
        using aace::audio::AudioOutput::MediaError = aace::audio::AudioOutputEngineInterface::MediaError
        -
        -

        Describes an error during a media playback operation

        See also
        aace::alexa::MediaPlayerEngineInterface::MediaError
        - -
        -
        - -

        ◆ FocusAction

        - -
        -
        - - - - -
        using aace::audio::AudioOutput::FocusAction = aace::audio::AudioOutputEngineInterface::FocusAction
        -
        -

        Describes a focus action platform interface reports or requests

        See also
        aace::audio::AudioOutputEngineInterface::FocusAction
        - -
        -
        -

        Member Enumeration Documentation

        - -

        ◆ MutedState

        - -
        -
        - - - - - -
        - - - - -
        enum aace::audio::AudioOutput::MutedState
        -
        -strong
        -
        - - - -
        Enumerator
        MUTED 

        The audio channel state id muted.

        -
        UNMUTED 

        The audio channel state id unmuted.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ prepare() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual bool aace::audio::AudioOutput::prepare (std::shared_ptr< AudioStream > stream,
        bool repeating 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to prepare for playback of an AudioStream audio source. After returning true, the Engine will call play() to initiate audio playback.

        -
        Parameters
        - - - -
        [in]streamThe AudioStream object that provides the platform implementation audio data to play.
        [in]repeatingtrue if the platform should loop the audio when playing.
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ prepare() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual bool aace::audio::AudioOutput::prepare (const std::string & url,
        bool repeating 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to prepare for playback of a URL audio source. After returning true, the Engine will call play() to initiate audio playback.

        -
        Parameters
        - - - -
        [in]urlThe URL audio source to set in the platform media player
        [in]repeatingtrue if the platform should loop the audio when playing.
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mayDuck()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual void aace::audio::AudioOutput::mayDuck ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation only if prepared media allows platform interface to duck the volume if any high priority audio stream is in the focus. If platform interface ducks the volume, report the state using audioFocusEvent always. If mayDuck is not called, platform interface can assume that media is not allowed to duck.

        - -
        -
        - -

        ◆ play()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::audio::AudioOutput::play ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to start playback of the current audio source. After returning true, the platform implementation must call mediaStateChanged() with MediaState.PLAYING when the media player begins playing the audio or mediaError() if an error occurs.

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ stop()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::audio::AudioOutput::stop ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to stop playback of the current audio source. After returning true, the platform implementation must call mediaStateChanged() with MediaState.STOPPED when the media player stops playing the audio or immediately if it is already stopped, or mediaError() if an error occurs. A subsequent call to play() will be preceded by calls to prepare() and setPosition().

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ pause()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::audio::AudioOutput::pause ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to pause playback of the current audio source. After returning true, the platform implementation must call mediaStateChanged() with MediaState.STOPPED when the media player pauses the audio or mediaError() if an error occurs. A subsequent call to resume() will not be preceded by calls to prepare() and setPosition().

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ resume()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::audio::AudioOutput::resume ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to resume playback of the current audio source. After returning true, the platform implementation must call mediaStateChanged() with MediaState.PLAYING when the media player resumes the audio or mediaError() if an error occurs.

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ startDucking()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::audio::AudioOutput::startDucking ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to move the playback in background. If platform implementation supports audio ducking, reduce the media player volume according to platform guidelines.

        Returns
        true if the platform implementation successfully attenuated the volume, else false. If false is returned, stopDucking call will not be received.
        - -
        -
        - -

        ◆ stopDucking()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::audio::AudioOutput::stopDucking ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to move the playback in foreground. If platform implementation supports audio ducking, restore the media player volume to original value.

        Returns
        true if the platform implementation successfully restored the volume, else false. If false is returned, internal state considers that platform implementation is still in the ducked state which may result into unexpected behavior.
        - -
        -
        - -

        ◆ getPosition()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual int64_t aace::audio::AudioOutput::getPosition ()
        -
        -pure virtual
        -
        -

        Returns the current playback position of the platform media player. If the audio source is not playing, the most recent position played should be returned.

        -
        Returns
        The platform media player's playback position in milliseconds, or TIME_UNKNOWN if the current media position is unknown or invalid.
        - -
        -
        - -

        ◆ setPosition()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::audio::AudioOutput::setPosition (int64_t position)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to set the playback position of the current audio source in the platform media player.

        -
        Parameters
        - - -
        [in]positionThe playback position in milliseconds to set in the platform media player
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ getDuration()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual int64_t aace::audio::AudioOutput::getDuration ()
        -
        -pure virtual
        -
        -

        Returns the duration of the current audio source. If the duration is unknown, then TIME_UNKNOWN should be returned.

        -
        Returns
        The duration of the current audio source in milliseconds, or TIME_UNKNOWN.
        - -
        -
        - -

        ◆ getNumBytesBuffered()

        - -
        -
        - - - - - -
        - - - - - - - -
        int64_t aace::audio::AudioOutput::getNumBytesBuffered ()
        -
        -virtual
        -
        -

        Returns the amount of audio data buffered.

        -
        Returns
        the number of bytes of the audio data buffered, or 0 if it's unknown.
        - -
        -
        - -

        ◆ volumeChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::audio::AudioOutput::volumeChanged (float volume)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to set the volume of the output channel. The volume value should be scaled to fit the needs of the platform.

        -
        Parameters
        - - -
        [in]volumeThe volume to set on the output channel. volume is in the range [0,1].
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mutedStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::audio::AudioOutput::mutedStateChanged (MutedState state)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to apply a muted state has changed for the output channel

        -
        Parameters
        - - -
        [in]stateThe muted state to apply to the output channel. MutedState::MUTED when the output channel be muted, MutedState::UNMUTED when unmuted
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ mediaStateChanged()

        - -
        -
        - - - - - - - - -
        void aace::audio::AudioOutput::mediaStateChanged (MediaState state)
        -
        -

        Notifies the Engine of an audio playback state change in the platform implementation. Must be called when the platform media player transitions between stopped and playing states.

        -
        Parameters
        - - -
        [in]stateThe new playback state of the platform media player
        -
        -
        -
        See also
        MediaState
        - -
        -
        - -

        ◆ mediaError()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::audio::AudioOutput::mediaError (MediaError error,
        const std::string & description = "" 
        )
        -
        -

        Notifies the Engine of an error during audio playback

        -
        Parameters
        - - - -
        [in]errorThe error encountered by the platform media player during playback
        [in]descriptionA description of the error
        -
        -
        -
        See also
        MediaError
        - -
        -
        - -

        ◆ audioFocusEvent()

        - -
        -
        - - - - - - - - -
        void aace::audio::AudioOutput::audioFocusEvent (FocusAction action)
        -
        -

        Request engine to perform the action mentioned in the parameter.

        -
        Parameters
        - - -
        [in]actionAn FocusAction platform interface wishes to request.
        -
        -
        - -
        -
        -

        Member Data Documentation

        - -

        ◆ TIME_UNKNOWN

        - -
        -
        - - - - - -
        - - - - -
        const int64_t aace::audio::AudioOutput::TIME_UNKNOWN = -1
        -
        -static
        -
        -

        Used when audio time is unknown or indeterminate.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output_provider-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output_provider-members.html deleted file mode 100644 index c4067e9ea..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output_provider-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::audio::AudioOutputProvider Member List
        -
        -
        - -

        This is the complete list of members for aace::audio::AudioOutputProvider, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output_provider.html b/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output_provider.html deleted file mode 100644 index 96bb4c103..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_output_provider.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::audio::AudioOutputProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::audio::AudioOutputProvider Class Referenceabstract
        -
        -
        -

        Detailed Description

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_stream_property-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_stream_property-members.html deleted file mode 100644 index b44dcaf63..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_stream_property-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::audio::AudioStreamProperty Member List
        -
        -
        - -

        This is the complete list of members for aace::audio::AudioStreamProperty, including all inherited members.

        - - - - - - -
        AudioStreamProperty(const std::string &key, const std::string &value)aace::audio::AudioStreamPropertyinline
        AudioStreamProperty(const AudioStreamProperty &other)aace::audio::AudioStreamPropertyinline
        getKey()aace::audio::AudioStreamPropertyinline
        getValue()aace::audio::AudioStreamPropertyinline
        operator=(const AudioStreamProperty &other)=defaultaace::audio::AudioStreamProperty
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_stream_property.html b/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_stream_property.html deleted file mode 100644 index a770a81b8..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1audio_1_1_audio_stream_property.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::audio::AudioStreamProperty Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::audio::AudioStreamProperty Class Reference
        -
        -
        - - - - - - - - - - - - -

        -Public Member Functions

         AudioStreamProperty (const std::string &key, const std::string &value)
         
         AudioStreamProperty (const AudioStreamProperty &other)
         
        AudioStreamPropertyoperator= (const AudioStreamProperty &other)=default
         
        std::string getKey ()
         
        std::string getValue ()
         
        -

        Detailed Description

        -

        Key/value type for providing meta-data with the AudioStream.

        -

        Constructor & Destructor Documentation

        - -

        ◆ AudioStreamProperty() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        aace::audio::AudioStreamProperty::AudioStreamProperty (const std::string & key,
        const std::string & value 
        )
        -
        -inline
        -
        -

        AudioStreamProperty constructor

        -
        Parameters
        - - - -
        keyThe property key
        valueThe property value
        -
        -
        - -
        -
        - -

        ◆ AudioStreamProperty() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - -
        aace::audio::AudioStreamProperty::AudioStreamProperty (const AudioStreamPropertyother)
        -
        -inline
        -
        -

        AudioStreamProperty copy constructor

        -
        Parameters
        - - -
        propThe AudioStreamProperty being copied
        -
        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ operator=()

        - -
        -
        - - - - - -
        - - - - - - - - -
        AudioStreamProperty& aace::audio::AudioStreamProperty::operator= (const AudioStreamPropertyother)
        -
        -default
        -
        -

        AudioStreamProperty copy constructor

        -
        Parameters
        - - -
        otherThe AudioStreamProperty being assigned
        -
        -
        - -
        -
        - -

        ◆ getKey()

        - -
        -
        - - - - - -
        - - - - - - - -
        std::string aace::audio::AudioStreamProperty::getKey ()
        -
        -inline
        -
        -
        Returns
        The property key
        - -
        -
        - -

        ◆ getValue()

        - -
        -
        - - - - - -
        - - - - - - - -
        std::string aace::audio::AudioStreamProperty::getValue ()
        -
        -inline
        -
        -
        Returns
        The property value
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization-members.html deleted file mode 100644 index 8b5cfeeeb..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization-members.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::authorization::Authorization Member List
        -
        -
        - -

        This is the complete list of members for aace::authorization::Authorization, including all inherited members.

        - - - - - - - - - - - - -
        authorizationError(const std::string &service, const std::string &error, const std::string &message)=0aace::authorization::Authorizationpure virtual
        AuthorizationState typedefaace::authorization::Authorization
        authorizationStateChanged(const std::string &service, AuthorizationState state)=0aace::authorization::Authorizationpure virtual
        cancelAuthorization(const std::string &service)aace::authorization::Authorization
        eventReceived(const std::string &service, const std::string &event)=0aace::authorization::Authorizationpure virtual
        getAuthorizationData(const std::string &service, const std::string &key)=0aace::authorization::Authorizationpure virtual
        logout(const std::string &service)aace::authorization::Authorization
        sendEvent(const std::string &service, const std::string &event)aace::authorization::Authorization
        setAuthorizationData(const std::string &service, const std::string &key, const std::string &data)=0aace::authorization::Authorizationpure virtual
        startAuthorization(const std::string &service, const std::string &data)aace::authorization::Authorization
        ~Authorization()aace::authorization::Authorizationvirtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization.html b/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization.html deleted file mode 100644 index 391560353..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization.html +++ /dev/null @@ -1,507 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::authorization::Authorization Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::authorization::Authorization Class Referenceabstract
        -
        -
        - - - - - -

        -Public Types

        -using AuthorizationState = aace::authorization::AuthorizationEngineInterface::AuthorizationState
         Describes the authorization states.
         
        - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual void eventReceived (const std::string &service, const std::string &event)=0
         
        virtual void authorizationStateChanged (const std::string &service, AuthorizationState state)=0
         
        virtual void authorizationError (const std::string &service, const std::string &error, const std::string &message)=0
         
        virtual std::string getAuthorizationData (const std::string &service, const std::string &key)=0
         
        virtual void setAuthorizationData (const std::string &service, const std::string &key, const std::string &data)=0
         
        void startAuthorization (const std::string &service, const std::string &data)
         
        void cancelAuthorization (const std::string &service)
         
        void sendEvent (const std::string &service, const std::string &event)
         
        void logout (const std::string &service)
         
        virtual ~Authorization ()
         
        -

        Detailed Description

        -

        The Authorization class should be extended to carry out the authorizations required for the Engine.

        -

        This class serves as a single platform interface for all the authorization services supported by the Engine, (such as CBL). The platform implementation must use the platform interface to interact with the service and follows the protocol established by the service to authorize a device. For information about the protocol, see the README file appropriate to the authorization service. For example, see the README in the CBL module to see how the Authorization platform interface works with CBL.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Constructor & Destructor Documentation

        - -

        ◆ ~Authorization()

        - -
        -
        - - - - - -
        - - - - - - - -
        aace::authorization::Authorization::~Authorization ()
        -
        -virtualdefault
        -
        -

        Destructor

        - -
        -
        -

        Member Function Documentation

        - -

        ◆ eventReceived()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::authorization::Authorization::eventReceived (const std::string & service,
        const std::string & event 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation about the authorization event.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        eventJSON representation of the authorization event as defined by the authorization service.
        -
        -
        - -
        -
        - -

        ◆ authorizationStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::authorization::Authorization::authorizationStateChanged (const std::string & service,
        AuthorizationState state 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation about a change in authorization state.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        stateThe authorization state represented using AuthorizationState
        -
        -
        - -
        -
        - -

        ◆ authorizationError()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::authorization::Authorization::authorizationError (const std::string & service,
        const std::string & error,
        const std::string & message 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation about any error in the authorization process.

        -
        Parameters
        - - - - -
        serviceIndicates the authorization service.
        errorIndicates the type of authorization error. The possible types are defined by each authorization service.
        messageError message for logging purposes.
        -
        -
        - -
        -
        - -

        ◆ getAuthorizationData()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual std::string aace::authorization::Authorization::getAuthorizationData (const std::string & service,
        const std::string & key 
        )
        -
        -pure virtual
        -
        -

        Retrieves the authorization data from the platform implementation.

        Note
        A call to this API does not always necessitate a corresponding call to setAuthorizationData.
        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        keyThe key of the data requested.
        -
        -
        -
        Returns
        Returns the value of the key if available. Otherwise, returns an empty string.
        - -
        -
        - -

        ◆ setAuthorizationData()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::authorization::Authorization::setAuthorizationData (const std::string & service,
        const std::string & key,
        const std::string & data 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to store the authorization data.

        Note
        It is the responsibility of the platform implementation to securely store the data.
        -
        Parameters
        - - - - -
        serviceIndicates the authorization service.
        keyRepresents the key of the data
        dataRepresents the data to be stored.
        -
        -
        - -
        -
        - -

        ◆ startAuthorization()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::authorization::Authorization::startAuthorization (const std::string & service,
        const std::string & data 
        )
        -
        -

        Notifies the Engine to start the authorization process. Engine to call authorizationStateChanged with AUTHORIZING on the start of authorization process. Engine to call authorizationStateChanged with AUTHORIZED on the successful authorization.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        dataRepresents the data in JSON format. The content of the JSON object is defined by each authorization service.
        -
        -
        - -
        -
        - -

        ◆ cancelAuthorization()

        - -
        -
        - - - - - - - - -
        void aace::authorization::Authorization::cancelAuthorization (const std::string & service)
        -
        -

        Notifies the Engine to cancel the authorization process.

        Note
        The call does not log out the active authorization.
        -
        Parameters
        - - -
        serviceIndicates the authorization service.
        -
        -
        - -
        -
        - -

        ◆ sendEvent()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::authorization::Authorization::sendEvent (const std::string & service,
        const std::string & event 
        )
        -
        -

        Notifies the Engine of the authorization event from the platform implementation.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        eventRepresents the event in JSON format. The content of the JSON object is defined by each authorization service.
        -
        -
        - -
        -
        - -

        ◆ logout()

        - -
        -
        - - - - - - - - -
        void aace::authorization::Authorization::logout (const std::string & service)
        -
        -

        Notifies the Engine to log out of an authorization. Engine calls authorizationStateChanged with UNAUTHORIZED on the successful logout.

        -
        Parameters
        - - -
        serviceIndicates the authorization service of which the Engine will log out.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization_engine_interface-members.html deleted file mode 100644 index 281112ddf..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization_engine_interface-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::authorization::AuthorizationEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::authorization::AuthorizationEngineInterface, including all inherited members.

        - - - - - - -
        AuthorizationState enum nameaace::authorization::AuthorizationEngineInterface
        onCancelAuthorization(const std::string &service)=0aace::authorization::AuthorizationEngineInterfacepure virtual
        onLogout(const std::string &service)=0aace::authorization::AuthorizationEngineInterfacepure virtual
        onSendEvent(const std::string &service, const std::string &event)=0aace::authorization::AuthorizationEngineInterfacepure virtual
        onStartAuthorization(const std::string &service, const std::string &data)=0aace::authorization::AuthorizationEngineInterfacepure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization_engine_interface.html deleted file mode 100644 index 14ed1f25d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1authorization_1_1_authorization_engine_interface.html +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::authorization::AuthorizationEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::authorization::AuthorizationEngineInterface Class Referenceabstract
        -
        -
        - - - - - -

        -Public Types

        enum  AuthorizationState {
        -  AuthorizationState::UNAUTHORIZED, -
        -  AuthorizationState::AUTHORIZING, -
        -  AuthorizationState::AUTHORIZED -
        - }
         Describes the authorization states. More...
         
        - - - - - - - - - -

        -Public Member Functions

        virtual void onStartAuthorization (const std::string &service, const std::string &data)=0
         
        virtual void onCancelAuthorization (const std::string &service)=0
         
        virtual void onSendEvent (const std::string &service, const std::string &event)=0
         
        virtual void onLogout (const std::string &service)=0
         
        -

        Detailed Description

        -

        The class to interface with the Authorization Engine.

        -

        Member Enumeration Documentation

        - -

        ◆ AuthorizationState

        - -
        -
        - -

        Describes the authorization states.

        - - - - -
        Enumerator
        UNAUTHORIZED 

        Device is unauthorized.

        -
        AUTHORIZING 

        Device authorization in progress.

        -
        AUTHORIZED 

        Device is authorized.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ onStartAuthorization()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::authorization::AuthorizationEngineInterface::onStartAuthorization (const std::string & service,
        const std::string & data 
        )
        -
        -pure virtual
        -
        -

        Notifies the Engine to start the authorization process. This function is called when Authorization::startAuthorization is called. Engine to call authStateChanged with AUTHORIZING on the start of authorization process. Engine to call authStateChanged with AUTHORIZED on the successful authorization.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        dataRepresents the data in JSON format. The content of the JSON object is defined by each authorization service.
        -
        -
        - -
        -
        - -

        ◆ onCancelAuthorization()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::authorization::AuthorizationEngineInterface::onCancelAuthorization (const std::string & service)
        -
        -pure virtual
        -
        -

        Notifies the Engine to cancel the authorization. This function is called when Authorization::cancelAuthorization is called.

        Note
        This does not log out the active authorization.
        -
        Parameters
        - - -
        serviceIndicates the authorization service.
        -
        -
        - -
        -
        - -

        ◆ onSendEvent()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::authorization::AuthorizationEngineInterface::onSendEvent (const std::string & service,
        const std::string & event 
        )
        -
        -pure virtual
        -
        -

        Notifies the Engine of an event in the platform implementation.

        -
        Parameters
        - - - -
        serviceIndicates the authorization service.
        eventRepresents the event in JSON format. The content of the JSON object is defined by each authorization service.
        -
        -
        - -
        -
        - -

        ◆ onLogout()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::authorization::AuthorizationEngineInterface::onLogout (const std::string & service)
        -
        -pure virtual
        -
        -

        Notifies the Engine to log out of the authorization service. This function is called when Authorization::logout is called. Engine calls authorizationStateChanged with UNAUTHORIZED on the successful logout.

        -
        Parameters
        - - -
        serviceIndicates the authorization service of which the Engine will log out.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1bluetooth_1_1_bluetooth_provider-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1bluetooth_1_1_bluetooth_provider-members.html deleted file mode 100644 index 242ddd9f2..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1bluetooth_1_1_bluetooth_provider-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::bluetooth::BluetoothProvider Member List
        -
        -
        - -

        This is the complete list of members for aace::bluetooth::BluetoothProvider, including all inherited members.

        - - - - -
        createGATTServer()aace::bluetooth::BluetoothProvidervirtual
        listenUsingiAP2(const std::string &protocol)aace::bluetooth::BluetoothProvidervirtual
        listenUsingRfcomm(const std::string &name, const std::string &uuid)aace::bluetooth::BluetoothProvidervirtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1bluetooth_1_1_bluetooth_provider.html b/docs/docs/doxygen-docs/cpp/classaace_1_1bluetooth_1_1_bluetooth_provider.html deleted file mode 100644 index d06b61223..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1bluetooth_1_1_bluetooth_provider.html +++ /dev/null @@ -1,204 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::bluetooth::BluetoothProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::bluetooth::BluetoothProvider Class Reference
        -
        -
        - - - - - - - - -

        -Public Member Functions

        virtual std::shared_ptr< GATTServer > createGATTServer ()
         
        virtual std::shared_ptr< BluetoothServerSocket > listenUsingRfcomm (const std::string &name, const std::string &uuid)
         
        virtual std::shared_ptr< BluetoothServerSocket > listenUsingiAP2 (const std::string &protocol)
         
        -

        Detailed Description

        -

        Provide RFCOMM and/or GATT implementation.

        -

        Member Function Documentation

        - -

        ◆ createGATTServer()

        - -
        -
        - - - - - -
        - - - - - - - -
        std::shared_ptr< GATTServer > aace::bluetooth::BluetoothProvider::createGATTServer ()
        -
        -virtual
        -
        -

        Create a GATT Server.

        -
        Returns
        the created GATT server. nullptr if GATT is not supported.
        - -
        -
        - -

        ◆ listenUsingRfcomm()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        std::shared_ptr< BluetoothServerSocket > aace::bluetooth::BluetoothProvider::listenUsingRfcomm (const std::string & name,
        const std::string & uuid 
        )
        -
        -virtual
        -
        -

        Create a listening and secure RFCOMM server socket and register the corresponding SDP record. The connection accepted from the server socket should be encrypted and authenticated from trusted device.

        -
        Parameters
        - - - -
        nameservice name for SDP record
        uuiduuid for SDP record
        -
        -
        -
        Returns
        the created server socket
        - -
        -
        - -

        ◆ listenUsingiAP2()

        - -
        -
        - - - - - -
        - - - - - - - - -
        std::shared_ptr< BluetoothServerSocket > aace::bluetooth::BluetoothProvider::listenUsingiAP2 (const std::string & protocol)
        -
        -virtual
        -
        -

        Create a iAP2 server socket with specified protocol.

        -
        Parameters
        - - -
        protocolthe protocol to use when communicating with the device
        -
        -
        -
        Returns
        the created server socket. nullptr if any error occurs.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1_car_control-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1_car_control-members.html deleted file mode 100644 index d005fd442..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1_car_control-members.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::carControl::CarControl Member List
        -
        -
        - -

        This is the complete list of members for aace::carControl::CarControl, including all inherited members.

        - - - - - - - - - - - - - - - -
        adjustModeControllerValue(const std::string &endpointId, const std::string &controllerId, int delta)aace::carControl::CarControlvirtual
        adjustRangeControllerValue(const std::string &endpointId, const std::string &controllerId, double delta)aace::carControl::CarControlvirtual
        CarControl()=defaultaace::carControl::CarControl
        getModeControllerValue(const std::string &endpointId, const std::string &controllerId, std::string &value)aace::carControl::CarControlvirtual
        getRangeControllerValue(const std::string &endpointId, const std::string &controllerId, double &value)aace::carControl::CarControlvirtual
        isPowerControllerOn(const std::string &endpointId, bool &isOn)aace::carControl::CarControlvirtual
        isToggleControllerOn(const std::string &endpointId, const std::string &controllerId, bool &isOn)aace::carControl::CarControlvirtual
        setModeControllerValue(const std::string &endpointId, const std::string &controllerId, const std::string &value)aace::carControl::CarControlvirtual
        setRangeControllerValue(const std::string &endpointId, const std::string &controllerId, double value)aace::carControl::CarControlvirtual
        turnPowerControllerOff(const std::string &endpointId)aace::carControl::CarControlvirtual
        turnPowerControllerOn(const std::string &endpointId)aace::carControl::CarControlvirtual
        turnToggleControllerOff(const std::string &endpointId, const std::string &controllerId)aace::carControl::CarControlvirtual
        turnToggleControllerOn(const std::string &endpointId, const std::string &controllerId)aace::carControl::CarControlvirtual
        ~CarControl()aace::carControl::CarControlvirtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1_car_control.html b/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1_car_control.html deleted file mode 100644 index 3e703f16e..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1_car_control.html +++ /dev/null @@ -1,763 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::carControl::CarControl Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::carControl::CarControl Class Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         CarControl ()=default
         
        virtual ~CarControl ()
         
        virtual bool turnPowerControllerOn (const std::string &endpointId)
         
        virtual bool turnPowerControllerOff (const std::string &endpointId)
         
        virtual bool isPowerControllerOn (const std::string &endpointId, bool &isOn)
         
        virtual bool turnToggleControllerOn (const std::string &endpointId, const std::string &controllerId)
         
        virtual bool turnToggleControllerOff (const std::string &endpointId, const std::string &controllerId)
         
        virtual bool isToggleControllerOn (const std::string &endpointId, const std::string &controllerId, bool &isOn)
         
        virtual bool setRangeControllerValue (const std::string &endpointId, const std::string &controllerId, double value)
         
        virtual bool adjustRangeControllerValue (const std::string &endpointId, const std::string &controllerId, double delta)
         
        virtual bool getRangeControllerValue (const std::string &endpointId, const std::string &controllerId, double &value)
         
        virtual bool setModeControllerValue (const std::string &endpointId, const std::string &controllerId, const std::string &value)
         
        virtual bool adjustModeControllerValue (const std::string &endpointId, const std::string &controllerId, int delta)
         
        virtual bool getModeControllerValue (const std::string &endpointId, const std::string &controllerId, std::string &value)
         
        -

        Detailed Description

        -

        CarControl should be extended to interface the elements that can be controlled in the vehicle. Each controllable element is an 'endpoint' with a unique endpointId. CarControl provides interfaces for four types of controllers. A custom combination of these controllers describes controls of the entire vehicle:

          -
        • Power Controller: Controls the power state of an endpoint. A maximum of one Power Controller is allowed per endpoint, identified by endpointId.
        • -
        • Toggle Controller: Controls the power state of a particular setting of an endpoint. Multiple Toggle Controllers for unique settings are allowed per endpoint, each identified by the combination of endpointId and controllerId.
        • -
        • Range Controller: Controls the settings of an endpoint that can be accessed with a range of values. Multiple Range Controllers for unique settings are allowed per endpoint, each identified by the combination of endpointId and controllerId.
        • -
        • Mode Controller: Controls the settings of an endpoint that can be accessed with a set of modes. Multiple Mode Controllers for unique settings are allowed per endpoint, each identified by the combination of endpointId and controllerId.
        • -
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Constructor & Destructor Documentation

        - -

        ◆ CarControl()

        - -
        -
        - - - - - -
        - - - - - - - -
        aace::carControl::CarControl::CarControl ()
        -
        -default
        -
        -

        CarControl constructor.

        - -
        -
        - -

        ◆ ~CarControl()

        - -
        -
        - - - - - -
        - - - - - - - -
        aace::carControl::CarControl::~CarControl ()
        -
        -virtualdefault
        -
        -

        CarControl destructor.

        - -
        -
        -

        Member Function Documentation

        - -

        ◆ turnPowerControllerOn()

        - -
        -
        - - - - - -
        - - - - - - - - -
        bool aace::carControl::CarControl::turnPowerControllerOn (const std::string & controlId)
        -
        -virtual
        -
        -

        Notifies the platform implementation to power on the controller identified by endpointId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - -
        [in]endpointIdThe unique identifier of the endpoint.
        -
        -
        -
        Returns
        true if successful.
        -

        PowerController

        - -
        -
        - -

        ◆ turnPowerControllerOff()

        - -
        -
        - - - - - -
        - - - - - - - - -
        bool aace::carControl::CarControl::turnPowerControllerOff (const std::string & endpointId)
        -
        -virtual
        -
        -

        Notifies the platform implementation to power off the controller identified by endpointId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - -
        [in]endpointIdThe unique identifier of the endpoint.
        -
        -
        -
        Returns
        true if successful.
        - -
        -
        - -

        ◆ isPowerControllerOn()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::isPowerControllerOn (const std::string & endpointId,
        bool & isOn 
        )
        -
        -virtual
        -
        -

        Retrieves the power state of the controller identified by endpointId from the platform implementation.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [out]isOnTo be set to true by the implementation if the controller is powered on.
        -
        -
        -
        Returns
        true if isOn was successfully updated, false if the power state of the controller cannot be retrieved.
        - -
        -
        - -

        ◆ turnToggleControllerOn()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::turnToggleControllerOn (const std::string & controlId,
        const std::string & controllerId 
        )
        -
        -virtual
        -
        -

        Notifies the platform implementation to turn on the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [in]controllerIdThe unique identifier of the controller.
        -
        -
        -
        Returns
        true if successful.
        -

        ToggleController

        - -
        -
        - -

        ◆ turnToggleControllerOff()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::turnToggleControllerOff (const std::string & endpointId,
        const std::string & controllerId 
        )
        -
        -virtual
        -
        -

        Notifies the platform implementation to turn off the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [in]controllerIdThe unique identifier of the controller.
        -
        -
        -
        Returns
        true if successful.
        - -
        -
        - -

        ◆ isToggleControllerOn()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::isToggleControllerOn (const std::string & endpointId,
        const std::string & controllerId,
        bool & isOn 
        )
        -
        -virtual
        -
        -

        Retrieves the power state of the controller identified by endpointId and controllerId from the platform implementation.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [in]controllerIdThe unique identifier of the controller.
        [out]isOnTo be set to true by the implementation if the controller is turned on.
        -
        -
        -
        Returns
        true if isOn was successfully updated, false if the power state of the controller cannot be retrieved.
        - -
        -
        - -

        ◆ setRangeControllerValue()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::setRangeControllerValue (const std::string & controlId,
        const std::string & controllerId,
        double value 
        )
        -
        -virtual
        -
        -

        Notifies the platform implementation to set the range setting of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [in]controllerIdThe unique identifier of the controller.
        [in]valueThe new range setting.
        -
        -
        -
        Returns
        true if successful.
        -

        RangeController

        - -
        -
        - -

        ◆ adjustRangeControllerValue()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::adjustRangeControllerValue (const std::string & endpointId,
        const std::string & controllerId,
        double delta 
        )
        -
        -virtual
        -
        -

        Notifies the platform implementation to adjust the range setting of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [in]controllerIdThe unique identifier of the controller.
        [in]deltaThe delta by which to adjust the range setting.
        -
        -
        -
        Returns
        true if successful.
        - -
        -
        - -

        ◆ getRangeControllerValue()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::getRangeControllerValue (const std::string & endpointId,
        const std::string & controllerId,
        double & value 
        )
        -
        -virtual
        -
        -

        Retrieves the range setting of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [in]controllerIdThe unique identifier of the controller.
        [out]valueTo be set to the current range setting by the implementation.
        -
        -
        -
        Returns
        true if value was successfully updated, false if the range setting of the controller cannot be retrieved.
        - -
        -
        - -

        ◆ setModeControllerValue()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::setModeControllerValue (const std::string & controlId,
        const std::string & controllerId,
        const std::string & value 
        )
        -
        -virtual
        -
        -

        Notifies the platform implementation to set the mode of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [in]controllerIdThe unique identifier of the controller.
        [in]valueThe new mode to set.
        -
        -
        -
        Returns
        true if successful.
        -

        ModeController

        - -
        -
        - -

        ◆ adjustModeControllerValue()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::adjustModeControllerValue (const std::string & endpointId,
        const std::string & controllerId,
        int delta 
        )
        -
        -virtual
        -
        -

        Notifies the platform implementation to adjust the mode of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [in]controllerIdThe unique identifier of the controller.
        [in]deltaThe delta by which to adjust the mode.
        -
        -
        -
        Returns
        true if successful.
        - -
        -
        - -

        ◆ getModeControllerValue()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::carControl::CarControl::getModeControllerValue (const std::string & endpointId,
        const std::string & controllerId,
        std::string & value 
        )
        -
        -virtual
        -
        -

        Retrieves the mode of the controller identified by endpointId and controllerId.

        -
        Note
        The platform implementation must return within 5 seconds. Failure to do so will result in a timeout.
        -
        Parameters
        - - - - -
        [in]endpointIdThe unique identifier of the endpoint.
        [in]controllerIdThe unique identifier of the controller.
        [out]valueTo be set to the current mode by the implementation.
        -
        -
        -
        Returns
        true if value was successfully updated, false if the mode of the controller cannot be retrieved.
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1config_1_1_car_control_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1config_1_1_car_control_configuration-members.html deleted file mode 100644 index 07a33c326..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1config_1_1_car_control_configuration-members.html +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::carControl::config::CarControlConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::carControl::config::CarControlConfiguration, including all inherited members.

        - - - - - - - - - - - - - - - - - - - - - - -
        addActionAdjustMode(const std::vector< std::string > &actions, int delta)=0aace::carControl::config::CarControlConfigurationpure virtual
        addActionAdjustRange(const std::vector< std::string > &actions, double delta)=0aace::carControl::config::CarControlConfigurationpure virtual
        addActionSetMode(const std::vector< std::string > &actions, const std::string &value)=0aace::carControl::config::CarControlConfigurationpure virtual
        addActionSetRange(const std::vector< std::string > &actions, double value)=0aace::carControl::config::CarControlConfigurationpure virtual
        addActionTurnOff(const std::vector< std::string > &actions)=0aace::carControl::config::CarControlConfigurationpure virtual
        addActionTurnOn(const std::vector< std::string > &actions)=0aace::carControl::config::CarControlConfigurationpure virtual
        addAssetId(const std::string &assetId)=0aace::carControl::config::CarControlConfigurationpure virtual
        addCustomAssetsPath(const std::string &path)=0aace::carControl::config::CarControlConfigurationpure virtual
        addDefaultAssetsPath(const std::string &path)=0aace::carControl::config::CarControlConfigurationpure virtual
        addMembers(const std::vector< std::string > &endpointIds)=0aace::carControl::config::CarControlConfigurationpure virtual
        addModeController(const std::string &instanceId, bool retrievable, bool ordered)=0aace::carControl::config::CarControlConfigurationpure virtual
        addPowerController(bool retrievable)=0aace::carControl::config::CarControlConfigurationpure virtual
        addPreset(double value)=0aace::carControl::config::CarControlConfigurationpure virtual
        addRangeController(const std::string &instanceId, bool retrievable, double minimum, double maximum, double precision, const std::string &unit="")=0aace::carControl::config::CarControlConfigurationpure virtual
        addToggleController(const std::string &instanceId, bool retrievable)=0aace::carControl::config::CarControlConfigurationpure virtual
        addValue(const std::string &value)=0aace::carControl::config::CarControlConfigurationpure virtual
        create()aace::carControl::config::CarControlConfigurationstatic
        createEndpoint(const std::string &endpointId)=0aace::carControl::config::CarControlConfigurationpure virtual
        createZone(const std::string &zoneId)=0aace::carControl::config::CarControlConfigurationpure virtual
        getStream()=0aace::core::config::EngineConfigurationpure virtual
        setDefaultZone(const std::string &zoneId)=0aace::carControl::config::CarControlConfigurationpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1config_1_1_car_control_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1config_1_1_car_control_configuration.html deleted file mode 100644 index a54122212..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1car_control_1_1config_1_1_car_control_configuration.html +++ /dev/null @@ -1,952 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::carControl::config::CarControlConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::carControl::config::CarControlConfiguration Class Referenceabstract
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual CarControlConfigurationcreateEndpoint (const std::string &endpointId)=0
         
        virtual CarControlConfigurationaddAssetId (const std::string &assetId)=0
         
        virtual CarControlConfigurationaddPowerController (bool retrievable)=0
         
        virtual CarControlConfigurationaddToggleController (const std::string &instanceId, bool retrievable)=0
         
        virtual CarControlConfigurationaddActionTurnOn (const std::vector< std::string > &actions)=0
         
        virtual CarControlConfigurationaddActionTurnOff (const std::vector< std::string > &actions)=0
         
        virtual CarControlConfigurationaddRangeController (const std::string &instanceId, bool retrievable, double minimum, double maximum, double precision, const std::string &unit="")=0
         
        virtual CarControlConfigurationaddPreset (double value)=0
         
        virtual CarControlConfigurationaddActionSetRange (const std::vector< std::string > &actions, double value)=0
         
        virtual CarControlConfigurationaddActionAdjustRange (const std::vector< std::string > &actions, double delta)=0
         
        virtual CarControlConfigurationaddModeController (const std::string &instanceId, bool retrievable, bool ordered)=0
         
        virtual CarControlConfigurationaddValue (const std::string &value)=0
         
        virtual CarControlConfigurationaddActionSetMode (const std::vector< std::string > &actions, const std::string &value)=0
         
        virtual CarControlConfigurationaddActionAdjustMode (const std::vector< std::string > &actions, int delta)=0
         
        virtual CarControlConfigurationcreateZone (const std::string &zoneId)=0
         
        virtual CarControlConfigurationaddMembers (const std::vector< std::string > &endpointIds)=0
         
        virtual CarControlConfigurationsetDefaultZone (const std::string &zoneId)=0
         
        virtual CarControlConfigurationaddDefaultAssetsPath (const std::string &path)=0
         
        virtual CarControlConfigurationaddCustomAssetsPath (const std::string &path)=0
         
        - Public Member Functions inherited from aace::core::config::EngineConfiguration
        virtual std::shared_ptr< std::istream > getStream ()=0
         
        - - - -

        -Static Public Member Functions

        static std::shared_ptr< CarControlConfigurationcreate ()
         
        -

        Detailed Description

        -

        The CarControlConfiguration class programmatically generates the "aace.carControl" aace::core::config::EngineConfiguration. "aace.carControl" configuration specifies additional endpoints that are connected and controllable through the root endpoint that maintains the connection to the Alexa service. Each connected endpoint represents a controllable component of the vehicle and should be configured with any of the supported capabilities (i.e. PowerController and primitives ModeController, ToggleController, RangeController ) to model how the endpoint can be controlled with voice.

        -

        Using the methods on an instance of this class produces configuration data in the format of the following example:

        -
        {
        "aace.carControl": {
        "endpoints": [
        {
        "endpointId": "default.ac",
        "endpointResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.DeviceName.AirConditioner"
        }
        }
        ]
        },
        "capabilities": [
        {
        "type": "AlexaInterface",
        "interface": "Alexa.PowerController",
        "version": "3",
        "properties": {
        "supported": [
        {
        "name": "powerState"
        }
        ],
        "proactivelyReported": false,
        "retrievable": false
        }
        },
        {
        "type": "AlexaInterface",
        "interface": "Alexa.ModeController",
        "version": "3",
        "instance": "intensity",
        "capabilityResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Setting.Intensity"
        }
        }
        ]
        },
        "properties": {
        "supported": [
        {
        "name": "mode"
        }
        ],
        "proactivelyReported": false,
        "retrievable": false
        },
        "configuration": {
        "ordered": true,
        "supportedModes": [
        {
        "value": "LOW",
        "modeResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.Low"
        }
        },
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.Minimum"
        }
        }
        ]
        }
        },
        {
        "value": "MEDIUM",
        "modeResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.Medium"
        }
        }
        ]
        }
        },
        {
        "value": "HIGH",
        "modeResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.High"
        }
        },
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Value.Maximum"
        }
        }
        ]
        }
        }
        ]
        },
        "semantics" : {
        "actionMappings": [
        {
        "@type": "ActionsToDirective",
        "actions": ["Alexa.Actions.Raise"],
        "directive": {
        "name": "AdjustMode",
        "payload": {"modeDelta": 1}
        }
        },
        {
        "@type": "ActionsToDirective",
        "actions": ["Alexa.Actions.Lower"],
        "directive": {
        "name": "AdjustMode",
        "payload": {"modeDelta": -1}
        }
        }
        ]
        }
        }
        ]
        }
        ],
        "zones": [
        {
        "zoneId": "zone.default",
        "zoneResources": {
        "friendlyNames": [
        {
        "@type": "asset",
        "value": {
        "assetId": "Alexa.Automotive.Location.All"
        }
        }
        ]
        },
        "members": [
        {
        "endpointId": "default.ac"
        }
        ]
        }
        ],
        "defaultZoneId" : "zone.default",
        "assets" : {
        "customAssetsPath" : "/opt/AAC/assets-3P.json"
        }
        }
        }

        note This class acts as a configuration builder, so the method calls must be ordered to produce the intended configuration.

        -

        Member Function Documentation

        - -

        ◆ create()

        - -
        -
        - - - - - -
        - - - - - - - -
        static std::shared_ptr<CarControlConfiguration> aace::carControl::config::CarControlConfiguration::create ()
        -
        -static
        -
        -

        Create a CarControlConfiguration instance.

        - -
        -
        - -

        ◆ createEndpoint()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::createEndpoint (const std::string & endpointId)
        -
        -pure virtual
        -
        -

        Begin an endpoint definition using the specified endpoint ID. This creates a single entry in the "endpoints" array of 'aace.carControl'.

        -
        Note
        Do not use the following format for the endpointId: <clientId>::<productId>::<serialNumber>::[-<extEndpoint>]. The Engine internally prepends the 3-part device prefix to your specified endpointId before sending the configuration to the cloud in an AddOrUpdateReport event. Configuring the full ID directly results in duplication and excess characters.
        -
        Parameters
        - - -
        [in]endpointIdThe unique identifier for the endpoint.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addAssetId()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addAssetId (const std::string & assetId)
        -
        -pure virtual
        -
        -

        Add an asset ID to the enclosing element. This can be called to add an asset ID to the friendly names list for the following elements:

          -
        • The 'endpointResources' of an endpoint definition
        • -
        • The 'capabilityResources' of a ToggleController, RangeController, or ModeController definition
        • -
        • The 'presetResources' of a RangeController preset definition
        • -
        • The 'modeResources' of a ModeController mode definition
        • -
        -
        Note
        Specify only valid asset IDs. See CarControlAssets.h for a full list of the asset IDs supported by default.
        -
        Parameters
        - - -
        [in]assetIdThe identifier of the asset.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addPowerController()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addPowerController (bool retrievable)
        -
        -pure virtual
        -
        -

        Add a PowerController capability to the enclosing endpoint. Only one instance is allowed per endpoint.

        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/alexa-powercontroller.html.
        -
        Parameters
        - - -
        [in]retrievableWhether the state of this instance may be retrieved by the Alexa service. Only false is supported.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addToggleController()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addToggleController (const std::string & instanceId,
        bool retrievable 
        )
        -
        -pure virtual
        -
        -

        Add a ToggleController capability to the enclosing endpoint. Multiple instances are allowed per endpoint. Call addAsset() to add friendly names to the 'capabilityResources' of this instance.

        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/alexa-togglecontroller.html.
        -
        Parameters
        - - - -
        [in]instanceIdThe identifier of this ToggleController instance. Must be unique with respect to the enclosing endpoint.
        [in]retrievableWhether the state of this instance may be retrieved by the Alexa service. Only false is supported.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addActionTurnOn()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addActionTurnOn (const std::vector< std::string > & actions)
        -
        -pure virtual
        -
        -

        Maps the specified action IDs to the TurnOn directive for the enclosing ToggleController. This adds a 'semantics.actionMappings' entry to its definition. aace::carControl::CarControl::turnToggleControllerOn() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in the aace::carControl::config::action namespace are supported.
        -
        Parameters
        - - -
        [in]actionsThe action IDs to map to the TurnOn directive.
        -
        -
        - -
        -
        - -

        ◆ addActionTurnOff()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addActionTurnOff (const std::vector< std::string > & actions)
        -
        -pure virtual
        -
        -

        Maps the specified action IDs to the TurnOff directive for the enclosing ToggleController. This adds a 'semantics.actionMappings' entry to its definition. aace::carControl::CarControl::turnToggleControllerOff() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in the aace::carControl::config::action namespace are supported.
        -
        Parameters
        - - -
        [in]actionsThe action IDs to map to the TurnOff directive.
        -
        -
        - -
        -
        - -

        ◆ addRangeController()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addRangeController (const std::string & instanceId,
        bool retrievable,
        double minimum,
        double maximum,
        double precision,
        const std::string & unit = "" 
        )
        -
        -pure virtual
        -
        -

        Add a RangeController capability to the enclosing endpoint. Multiple instances are allowed per endpoint. Call addAsset() to add friendly names to the 'capabilityResources' of this instance.

        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/alexa-rangecontroller.html
        -
        Parameters
        - - - - - - - -
        [in]instanceIdThe identifier of this RangeController instance. Must be unique with respect to the enclosing endpoint.
        [in]retrievableWhether the state of this instance may be retrieved by the Alexa service. Only false is supported.
        [in]minimumThe minimum value of the range supported by this instance.
        [in]minimumThe maximum value of the range supported by this instance.
        [in]precisionThe amount by which the set value changes when iterating through the range.
        [in]unitThe unit of the measure.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addPreset()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addPreset (double value)
        -
        -pure virtual
        -
        -

        Add a 'preset' to the enclosing RangeController instance. A preset describes a value that can be invoked by name. Call addAsset() to add friendly names to 'presetResources' of this preset.

        -
        Parameters
        - - -
        [in]valueThe value within the range that has an associated named preset.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addActionSetRange()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addActionSetRange (const std::vector< std::string > & actions,
        double value 
        )
        -
        -pure virtual
        -
        -

        Maps the specified action IDs to the SetRangeValue directive for the enclosing RangeController. This adds a 'semantics.actionMappings' entry to its definition. aace::carControl::CarControl::setRangeControllerValue() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in the aace::carControl::config::action namespace are supported.
        -
        Parameters
        - - - -
        [in]actionsThe action IDs to map to the SetRangeValue directive.
        [in]valueThe value argument of setRangeControllerValue(). The value must be within the configured range of this RangeController instance.
        -
        -
        - -
        -
        - -

        ◆ addActionAdjustRange()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addActionAdjustRange (const std::vector< std::string > & actions,
        double delta 
        )
        -
        -pure virtual
        -
        -

        Maps the specified action IDs to AdjustRangeValue directive for the enclosing RangeController. This adds a 'semantics.actionMappings' entry to its definition. aace::carControl::CarControl::adjustRangeControllerValue() will be invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in the aace::carControl::config::action namespace are supported.
        -
        Parameters
        - - - -
        [in]actionsThe action IDs to map to the AdjustRangeValue directive.
        [in]deltaThe delta argument of adjustRangeControllerValue(). The absolute value must be <= (max - min) configured for this RangeController instance.
        -
        -
        - -
        -
        - -

        ◆ addModeController()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addModeController (const std::string & instanceId,
        bool retrievable,
        bool ordered 
        )
        -
        -pure virtual
        -
        -

        Add a ModeController capability to the enclosing endpoint. Multiple instances are allowed per endpoint. Call addAsset() to add friendly names to the 'capabilityResources' of this instance.

        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/alexa-modecontroller.html
        -
        Parameters
        - - - - -
        [in]instanceIdThe identifier of this ModeController instance. Must be unique with respect to the enclosing endpoint.
        [in]retrievableWhether the state of this instance may be retrieved by the Alexa service. Only false is supported.
        [in]Whetherthe modes are ordered, enabling iteration through them using the AdjustMode directive.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addValue()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addValue (const std::string & value)
        -
        -pure virtual
        -
        -

        Add a supported mode 'value' to the enclosing ModeController instance. If ordered is true, the order in which modes are created with calls to this method determines the ordering for iteration by voice. Call addAsset() to add friendly names to 'modeResources' of this mode.

        -
        Parameters
        - - -
        [in]valueThe identifier of the mode.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addActionSetMode()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addActionSetMode (const std::vector< std::string > & actions,
        const std::string & value 
        )
        -
        -pure virtual
        -
        -

        Maps the specified action IDs to the SetMode directive for the enclosing ModeController. This adds a 'semantics.actionMappings' entry to its definition. aace::carControl::CarControl::setModeControllerValue() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in the aace::carControl::config::action namespace are supported.
        -
        Parameters
        - - - -
        [in]actionsThe action IDs to map to the SetMode directive.
        [in]valueThe value argument of setModeControllerValue() specifying the mode to set. The value must be one configured for this ModeController instance.
        -
        -
        - -
        -
        - -

        ◆ addActionAdjustMode()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addActionAdjustMode (const std::vector< std::string > & actions,
        int delta 
        )
        -
        -pure virtual
        -
        -

        Maps the specified action IDs to the AdjustMode directive for the enclosing ModeController. This adds a 'semantics.actionMappings' entry to its definition. aace::carControl::CarControl::adjustModeControllerValue() is invoked when the user says the additional utterances enabled by the specified action ID(s).

        -
        Note
        This may only be used if ordered is true for this ModeController instance.
        -
        -Use a specific action ID only once per endpoint.
        -
        -Only the action IDs defined in the aace::carControl::config::action namespace are supported.
        -
        Parameters
        - - - -
        [in]actionsThe action IDs to map to the AdjustMode directive.
        [in]deltaThe delta argument of adjustModeControllerValue() specifying the number of modes to advance from the current mode setting.
        -
        -
        - -
        -
        - -

        ◆ createZone()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::createZone (const std::string & zoneId)
        -
        -pure virtual
        -
        -

        Begin a zone definition using the specified zone ID. This creates a single entry in the "zones" array of 'aace.carControl'. Call addMembers() to add endpoint IDs as members of this zone.

        -
        Parameters
        - - -
        [in]zoneIdThe unique identifier for the zone.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addMembers()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addMembers (const std::vector< std::string > & endpointIds)
        -
        -pure virtual
        -
        -

        Add the specified endpoint IDs to the definition of the enclosing zone.

        -
        Note
        An endpoint ID added to this zone instance may belong to other zones as well.
        -
        Parameters
        - - -
        [in]endpointIdsThe IDs of the endpoints belonging to this zone. Endpoint IDs used must correspond to endpoints created with createEndpoint().
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ setDefaultZone()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::setDefaultZone (const std::string & zoneId)
        -
        -pure virtual
        -
        -

        Set the default zone to the specified zone ID. This allows the endpoints in the specified default zone to take precedence over endpoints not in the default zone when the user does not specify any zone in the utterance.

        -
        Note
        There can only be one default zone. Multiple calls to this method will override the previously set default.
        -
        Parameters
        - - -
        [in]zoneIdThe ID of the default zone.
        -
        -
        -
        Returns
        CarControlConfiguration to allow chaining.
        - -
        -
        - -

        ◆ addDefaultAssetsPath()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addDefaultAssetsPath (const std::string & path)
        -
        -pure virtual
        -
        -
        Deprecated:
        -

        Specify the path to a file that defines the default assets. This creates an "assets.defaultAssetsPath" entry in 'aace.carControl'.

        -
        Note
        Using this method is not necessary or recommended. The default assets are already defined internally. including all supported locales and use the asset IDs present in CarControlAssets.h. This method can override the internal asset definitions in online-only use cases (without the LVC extension).
        -
        Parameters
        - - -
        [in]pathThe path to the file defining the default assets.
        -
        -
        - -
        -
        - -

        ◆ addCustomAssetsPath()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual CarControlConfiguration& aace::carControl::config::CarControlConfiguration::addCustomAssetsPath (const std::string & path)
        -
        -pure virtual
        -
        -

        Specify the path to a file that defines additional assets. This creates an "assets.customAssetsPath" entry in 'aace.carControl'. Specify a path to additional assets if you have endpoints that cannot be modeled using the default asset IDs present in CarControlAssets.h.

        -
        Parameters
        - - -
        [in]pathThe path to the file defining additional assets.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1_c_b_l-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1_c_b_l-members.html deleted file mode 100644 index 20079901e..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1_c_b_l-members.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::cbl::CBL Member List
        -
        -
        - -

        This is the complete list of members for aace::cbl::CBL, including all inherited members.

        - - - - - - - - - - - -
        cancel()aace::cbl::CBL
        CBLState enum nameaace::cbl::CBL
        cblStateChanged(CBLState state, CBLStateChangedReason reason, const std::string &url, const std::string &code)=0aace::cbl::CBLpure virtual
        CBLStateChangedReason enum nameaace::cbl::CBL
        clearRefreshToken()=0aace::cbl::CBLpure virtual
        getRefreshToken()=0aace::cbl::CBLpure virtual
        reset()aace::cbl::CBL
        setRefreshToken(const std::string &refreshToken)=0aace::cbl::CBLpure virtual
        setUserProfile(const std::string &name, const std::string &email)=0aace::cbl::CBLpure virtual
        start()aace::cbl::CBL
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1_c_b_l.html b/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1_c_b_l.html deleted file mode 100644 index d121206e4..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1_c_b_l.html +++ /dev/null @@ -1,449 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::cbl::CBL Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::cbl::CBL Class Referenceabstract
        -
        -
        - - - - - - -

        -Public Types

        enum  CBLState {
        -  CBLState::STARTING, -
        -  CBLState::REQUESTING_CODE_PAIR, -
        -  CBLState::CODE_PAIR_RECEIVED, -
        -  CBLState::REFRESHING_TOKEN, -
        -  CBLState::REQUESTING_TOKEN, -
        -  CBLState::STOPPING -
        - }
         
        enum  CBLStateChangedReason {
        -  CBLStateChangedReason::SUCCESS, -
        -  CBLStateChangedReason::ERROR, -
        -  CBLStateChangedReason::TIMEOUT, -
        -  CBLStateChangedReason::CODE_PAIR_EXPIRED, -
        -  CBLStateChangedReason::AUTHORIZATION_EXPIRED, -
        -  CBLStateChangedReason::NONE -
        - }
         
        - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual void cblStateChanged (CBLState state, CBLStateChangedReason reason, const std::string &url, const std::string &code)=0
         
        virtual void clearRefreshToken ()=0
         
        virtual void setRefreshToken (const std::string &refreshToken)=0
         
        virtual std::string getRefreshToken ()=0
         
        virtual void setUserProfile (const std::string &name, const std::string &email)=0
         
        void start ()
         
        void cancel ()
         
        void reset ()
         
        -

        Detailed Description

        -

        CBL should be extended to perform CBL authentication

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Enumeration Documentation

        - -

        ◆ CBLState

        - -
        -
        - - - - - -
        - - - - -
        enum aace::cbl::CBL::CBLState
        -
        -strong
        -
        -

        Specifies the state of the authorization flow

        -
        Deprecated:
        This enum is being deprecated as this platform interface is being deprecated.
        - - - - - - - -
        Enumerator
        STARTING 

        CBL process is starting

        -
        REQUESTING_CODE_PAIR 

        Initiating the process to request a code pair

        -
        CODE_PAIR_RECEIVED 

        Code pair is received and is waiting on user to authenticate

        -
        REFRESHING_TOKEN 

        Refreshing token stage has begun

        -
        REQUESTING_TOKEN 

        Requesting for authorization token

        -
        STOPPING 

        CBL process is ending

        -
        - -
        -
        - -

        ◆ CBLStateChangedReason

        - -
        -
        - - - - - -
        - - - - -
        enum aace::cbl::CBL::CBLStateChangedReason
        -
        -strong
        -
        -

        Specifies the reason for the state change

        -
        Deprecated:
        This enum is being deprecated as this platform interface is being deprecated.
        - - - - - - - -
        Enumerator
        SUCCESS 

        The CBL state changed successfully

        -
        ERROR 

        Error occurred in the CBL process

        -
        TIMEOUT 

        Request timed out

        -
        CODE_PAIR_EXPIRED 

        Code pair has expired and user will need to initiate the authentication process again

        -
        AUTHORIZATION_EXPIRED 

        The refresh token is invalid, revoked, or was issued to a different client.

        -
        NONE 

        No reason specified

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ cblStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::cbl::CBL::cblStateChanged (CBLState state,
        CBLStateChangedReason reason,
        const std::string & url,
        const std::string & code 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of an authorization flow state change

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ clearRefreshToken()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual void aace::cbl::CBL::clearRefreshToken ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to clear the refresh token

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ setRefreshToken()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::cbl::CBL::setRefreshToken (const std::string & refreshToken)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to set the refresh token

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ getRefreshToken()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual std::string aace::cbl::CBL::getRefreshToken ()
        -
        -pure virtual
        -
        -

        Returns the refresh token stored by the platform implementation, otherwise return an empty string

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ setUserProfile()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::cbl::CBL::setUserProfile (const std::string & name,
        const std::string & email 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to set the user profile requestUserProfile must be enabled in configuration

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ start()

        - -
        -
        - - - - - - - -
        void aace::cbl::CBL::start ()
        -
        -

        Notifies the Engine to begin the authorization process

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ cancel()

        - -
        -
        - - - - - - - -
        void aace::cbl::CBL::cancel ()
        -
        -

        Notifies the Engine to cancel the authorization process

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        - -
        -
        - -

        ◆ reset()

        - -
        -
        - - - - - - - -
        void aace::cbl::CBL::reset ()
        -
        -

        Notifies the Engine to reset the authorization state

        -
        Deprecated:
        This method is being deprecated as this platform interface is being deprecated.
        -

        Note: Starting with Auto SDK 3.1, this API ensures that all the persisted user-related data is removed. You no longer have to restart the Engine before starting the next user login process.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html deleted file mode 100644 index ba9435baf..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::cbl::config::CBLConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::cbl::config::CBLConfiguration, including all inherited members.

        - - - -
        createCBLConfig(const int seconds=60, bool enableUserProfile=false)aace::cbl::config::CBLConfigurationstatic
        createCBLUserProfileConfig(bool enableUserProfile)aace::cbl::config::CBLConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html deleted file mode 100644 index 31585cf4d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::cbl::config::CBLConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::cbl::config::CBLConfiguration Class Reference
        -
        -
        - - - - - - -

        -Static Public Member Functions

        static std::shared_ptr< aace::core::config::EngineConfigurationcreateCBLConfig (const int seconds=60, bool enableUserProfile=false)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateCBLUserProfileConfig (bool enableUserProfile)
         
        -

        Detailed Description

        -

        The CBLConfiguration class is a factory interface for creating CBL service configuration objects.

        -

        Member Function Documentation

        - -

        ◆ createCBLConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::cbl::config::CBLConfiguration::createCBLConfig (const int seconds = 60,
        bool enableUserProfile = false 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate cbl configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.cbl" : {
        "requestTimeout" : <REQUEST_TIMEOUT_IN_SECONDS>,
        "enableUserProfile" : <true/false>
        }
        }
        Parameters
        - - - -
        [in]requestTimeoutThe timeout used for requesting code pair. The default value is 60s
        [in]enableUserProfileTo request user profile. The default value is false.
        -
        -
        - -
        -
        - -

        ◆ createCBLUserProfileConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::cbl::config::CBLConfiguration::createCBLUserProfileConfig (bool enableUserProfile)
        -
        -static
        -
        -

        Factory method used to programmatically generate cbl configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        Deprecated:
        This method is deprecated, use createCBLConfig instead.
        -
        {
        "aace.cbl": {
        "enableUserProfile": <true/false>
        }
        }
        Parameters
        - - -
        [in]enableUserProfileEnable functionality to request user profile
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1connectivity_1_1_alexa_connectivity-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1connectivity_1_1_alexa_connectivity-members.html deleted file mode 100644 index 5f9acd579..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1connectivity_1_1_alexa_connectivity-members.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::connectivity::AlexaConnectivity Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1connectivity_1_1_alexa_connectivity.html b/docs/docs/doxygen-docs/cpp/classaace_1_1connectivity_1_1_alexa_connectivity.html deleted file mode 100644 index 5c61f31a3..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1connectivity_1_1_alexa_connectivity.html +++ /dev/null @@ -1,324 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::connectivity::AlexaConnectivity Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::connectivity::AlexaConnectivity Class Referenceabstract
        -
        -
        - - - - - -

        -Public Types

        -using StatusCode = aace::connectivity::AlexaConnectivityEngineInterface::StatusCode
         Represents the delivery status of sendConnectivityEvent.
         
        - - - - - - - - - - - -

        -Public Member Functions

        virtual std::string getConnectivityState ()=0
         
        virtual std::string getIdentifier ()
         
        bool connectivityStateChange ()
         
        void sendConnectivityEvent (const std::string &event, const std::string &token="")
         
        virtual void connectivityEventResponse (const std::string &token, StatusCode statusCode)
         
        -

        Detailed Description

        -

        AlexaConnectivity should be extended to send network connectivity status and data plan status to Alexa. The information sent determines what Alexa features are available to the device.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ getConnectivityState()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual std::string aace::connectivity::AlexaConnectivity::getConnectivityState ()
        -
        -pure virtual
        -
        -

        Retrieve the connectivity state from the platform implementation.

        -

        ConnectivityState

        - - - - - - - - - - - - - -
        Name Description Type Status
        managedProvider Provides information about connectivity of the device. Object Required
        dataPlan Provides the active data plan type and end date. Object Optional
        dataPlansAvailable Indicates the data plans that can be activated on a device. Array Optional
        termsStatus Indicates whether the customer has accepted the terms and conditions of the OEM and network provider. String Optional
        termsVersion Indicates the version of the terms and conditions put forward to the user. Max 250 characters String Optional
        -

        managedProvider

        - - - - - - - -
        Name Description Type Status
        type Type of the managed provider, MANAGED or NOT_MANAGED (see below). String Required
        id Specifies the name of the provider that manages connectivity. The only accepted value is AMAZON. String Required*
        -

        managedProvider.type

        -

        Set to MANAGED if the device's internet connectivity is managed by a provider. The only possible provider that manages connectivity is Amazon. When managedProvider.type is MANAGED, the Alexa experience is affected by the attribute values of the InternetDataPlan capability. Set to NOT_MANAGED if the device's internet connectivity is not managed by a provider (for example, if the customer accesses the internet via a WiFi network or mobile hotspot). In this case, the customer can access all Alexa features, regardless of the attribute values of the InternetDataPlan capability.

        -

        managedProvider.id

        -

        * Required only when managedProvider.type is MANAGED.

        -

        dataPlan

        - - - - - - - -
        Name Description Type Status
        type Type of the data plan (see below). String Required
        endDate RFC 3339 format date on which the current data plan ends. String Optional
        -

        dataPlan.type

        -

        Possible values are PAID, TRIAL, and AMAZON_SPONSORED. A customer with either of these data plan has unrestricted access to all Alexa features. PAID indicates that the device has an active data plan paid for by the customer.TRIAL indicates that the device has an active data plan which has been provided to the customer as a promotional event. AMAZON_SPONSORED means that the customer has not paid for a data plan or signed up for a free trial. The customer can connect to the internet via a plan sponsored by Amazon and can access a limited number of Alexa features.

        -

        For example:

        {
        "managedProvider": {
        "type": "MANAGED",
        "id": "AMAZON"
        },
        "dataPlan": {
        "type": "AMAZON_SPONSORED",
        "endDate": "2021-12-31T23:59:59.999Z"
        },
        "dataPlansAvailable": [
        "TRIAL", "PAID", "AMAZON_SPONSORED"
        ],
        "termsStatus": "ACCEPTED",
        "termsVersion": "1"
        }
        Note
        AlexaConnectivity platform interface registration requires a valid connectivity state.
        -
        -You may return an empty string to indicate that connectivity state is not available.
        -
        Returns
        A std::string representing the connectivity state in structured JSON format.
        - -
        -
        - -

        ◆ getIdentifier()

        - -
        -
        - - - - - -
        - - - - - - - -
        std::string aace::connectivity::AlexaConnectivity::getIdentifier ()
        -
        -virtual
        -
        -

        Retrieve the network identifier from the platform implementation.

        -

        The network identifier is agnostic of the data plan and is assigned when initially integrated into the vehicle. It links the device with the network provider and enables the network provider to identify and provide device connectivity. The network identifier is optional, return an empty string to automatically use VEHICLE_IDENTIFIER from Engine configuration instead.

        -
        Returns
        A std::string representing the network identifier, or empty for default behavior.
        -
        See also
        VehicleConfiguration
        - -
        -
        - -

        ◆ connectivityStateChange()

        - -
        -
        - - - - - - - -
        bool aace::connectivity::AlexaConnectivity::connectivityStateChange ()
        -
        -

        Notifies the Engine of a change in the connectivity state. The Engine calls getConnectivityState to retrieve the the connectivity state and communicate any changes to Alexa.

        -
        Returns
        true if connectivity state was processed successfully, false otherwise.
        - -
        -
        - -

        ◆ sendConnectivityEvent()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::connectivity::AlexaConnectivity::sendConnectivityEvent (const std::string & event,
        const std::string & token = "" 
        )
        -
        -

        Notifies the Engine of an event in connectivity.

        -
        Parameters
        - - -
        [in]eventThe stringified JSON containing the event.
        {
        "type": "{{STRING}}"
        }
          -
        • type (required) : Indicates the connectivity event type.
        • -
        -Activating Trial
        -
        -
        -

        Set event type to "ACTIVATE_TRIAL" for Alexa to begin the trial data plan activation (if available) via voice conversation with the customer. Alexa, upon receiving this event, may perform some validations and eligibility checks before starting the voice conversation.

        -
        Note
        Alexa requires the customer to have accepted the OEM and network provider's terms and conditions before starting the voice conversation for activating the trial data plan.
        -
        -If the platform implementation cannot determine the data plan type, then send this event. Alexa would first check the trial eligibility. If customer is not eligible, Alexa begins the paid plan voice conversation.
        -

        Example:

        {
        "type": "ACTIVATE_TRIAL"
        }

        Starting Paid Plan

        -

        Set event type to "ACTIVATE_PAID_PLAN" for Alexa to begin the paid data plan activation via voice conversation with the customer. Alexa, upon receiving this event, may perform some validations and eligibility checks before starting the voice conversation.

        -
        Note
        Alexa requires the customer to have accepted the OEM and network provider's terms and conditions before starting the voice conversation for activating the paid data plan.
        -

        Example:

        {
        "type": "ACTIVATE_PAID_PLAN"
        }
        Parameters
        - - -
        tokenAn identifier to correlate connectivityEventResponse to sendConnectivityEvent. Default value is empty, but override this to a unique non-empty value for engine to call connectivityEventResponse. If it is empty, engine will not call connectivityEventResponse.
        -
        -
        - -
        -
        - -

        ◆ connectivityEventResponse()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::connectivity::AlexaConnectivity::connectivityEventResponse (const std::string & token,
        StatusCode statusCode 
        )
        -
        -inlinevirtual
        -
        -

        Notifies the platform implementation of the delivery status of sendConnectivityEvent. This is only called if a non-empty token was provided in the sendConnectivityEvent.

        -
        Parameters
        - - - -
        [in]tokenThe identifier that was provided in sendConnectivityEvent call.
        [in]statusCodeRepresents the delivery status of event sent using sendConnectivityEvent.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_engine-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_engine-members.html deleted file mode 100644 index a6d442ab0..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_engine-members.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::core::Engine Member List
        -
        -
        - -

        This is the complete list of members for aace::core::Engine, including all inherited members.

        - - - - - - - - - - -
        configure(std::initializer_list< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)=0aace::core::Enginepure virtual
        configure(std::vector< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)=0aace::core::Enginepure virtual
        configure(std::shared_ptr< aace::core::config::EngineConfiguration > configuration)=0aace::core::Enginepure virtual
        getMessageBroker()=0aace::core::Enginepure virtual
        registerPlatformInterface(std::shared_ptr< aace::core::PlatformInterface > platformInterface)=0aace::core::Enginepure virtual
        registerPlatformInterface(std::initializer_list< std::shared_ptr< aace::core::PlatformInterface >> platformInterfaceList)=0aace::core::Enginepure virtual
        shutdown()=0aace::core::Enginepure virtual
        start()=0aace::core::Enginepure virtual
        stop()=0aace::core::Enginepure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_engine.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_engine.html deleted file mode 100644 index 01edcf86a..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_engine.html +++ /dev/null @@ -1,396 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::core::Engine Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::core::Engine Class Referenceabstract
        -
        -
        - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual bool configure (std::initializer_list< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)=0
         
        virtual bool configure (std::vector< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)=0
         
        virtual bool configure (std::shared_ptr< aace::core::config::EngineConfiguration > configuration)=0
         
        virtual bool start ()=0
         
        virtual bool stop ()=0
         
        virtual bool shutdown ()=0
         
        virtual bool registerPlatformInterface (std::shared_ptr< aace::core::PlatformInterface > platformInterface)=0
         
        virtual bool registerPlatformInterface (std::initializer_list< std::shared_ptr< aace::core::PlatformInterface >> platformInterfaceList)=0
         
        virtual std::shared_ptr< MessageBrokergetMessageBroker ()=0
         
        -

        Detailed Description

        -

        The Engine must be instantiated by the platform implementation. Along with the platform interfaces, it is responsible for managing the interactions between the platform and AVS.

        -

        The platform implementation should not extend Engine; it is extended in the SDK.

        -

        Member Function Documentation

        - -

        ◆ configure() [1/3]

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::core::Engine::configure (std::initializer_list< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)
        -
        -pure virtual
        -
        -

        Sets the Engine configuration to a set of configuration objects

        -
        Parameters
        - - -
        [in]configurationListA collection of aace::core::config::EngineConfiguration objects as an std::initializer_list<aace::core::config::EngineConfiguration*>
        -
        -
        -
        Returns
        true if the Engine configuration was successful, else false
        - -
        -
        - -

        ◆ configure() [2/3]

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::core::Engine::configure (std::vector< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)
        -
        -pure virtual
        -
        -

        Sets the Engine configuration to a set of configuration objects

        -
        Parameters
        - - -
        [in]configurationListA collection of aace::core::config::EngineConfiguration objects as an std::vector<aace::core::config::EngineConfiguration*>
        -
        -
        -
        Returns
        true if the Engine configuration was successful, else false
        - -
        -
        - -

        ◆ configure() [3/3]

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::core::Engine::configure (std::shared_ptr< aace::core::config::EngineConfigurationconfiguration)
        -
        -pure virtual
        -
        -

        Sets the Engine configuration to a single configuration object

        -
        Parameters
        - - -
        [in]configurationAn aace::core::config::EngineConfiguration object
        -
        -
        -
        Returns
        true if the Engine configuration was successful, else false
        - -
        -
        - -

        ◆ start()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::core::Engine::start ()
        -
        -pure virtual
        -
        -

        Starts the Engine and attempts to establish a connection to AVS

        -
        Returns
        true if the Engine was started, else false
        -
        See also
        stop()
        - -
        -
        - -

        ◆ stop()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::core::Engine::stop ()
        -
        -pure virtual
        -
        -

        Stops the Engine and shuts down the connection to AVS

        -
        Returns
        true if the Engine was stopped, else false
        -
        See also
        start()
        - -
        -
        - -

        ◆ shutdown()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::core::Engine::shutdown ()
        -
        -pure virtual
        -
        -

        Shuts down the Engine and releases all of its resources

        -
        Returns
        true if the Engine was shut down, else false
        - -
        -
        - -

        ◆ registerPlatformInterface() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::core::Engine::registerPlatformInterface (std::shared_ptr< aace::core::PlatformInterfaceplatformInterface)
        -
        -pure virtual
        -
        -

        Registers a PlatformInterface instance with the Engine

        -

        The platform implementation must register each interface required by the application.

        -
        Parameters
        - - -
        [in]platformInterfaceThe PlatformInterface instance to register
        -
        -
        -
        Returns
        true if the PlatformInterface instance was registered, else false
        -
        See also
        aace::core::PlatformInterface
        - -
        -
        - -

        ◆ registerPlatformInterface() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::core::Engine::registerPlatformInterface (std::initializer_list< std::shared_ptr< aace::core::PlatformInterface >> platformInterfaceList)
        -
        -pure virtual
        -
        -

        Registers a list of PlatformInterface instances with the Engine

        -

        The platform implementation must register each interface required by the application.

        -
        Parameters
        - - -
        [in]platformInterfaceListThe list of PlatformInterface instances to register
        -
        -
        -
        Returns
        true if all PlatformInterface instances were registered, else false
        -
        See also
        aace::core::PlatformInterface
        -
        -registerPlatformInterface( std::shared_ptr<aace::core::PlatformInterface> platformInterface )
        - -
        -
        - -

        ◆ getMessageBroker()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual std::shared_ptr<MessageBroker> aace::core::Engine::getMessageBroker ()
        -
        -pure virtual
        -
        -

        Returns the Engine's MessageBroker instance.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_message_broker-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_message_broker-members.html deleted file mode 100644 index 8f575b349..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_message_broker-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::core::MessageBroker Member List
        -
        -
        - -

        This is the complete list of members for aace::core::MessageBroker, including all inherited members.

        - - - - -
        openStream(const std::string &streamId, MessageStream::Mode mode)=0aace::core::MessageBrokerpure virtual
        publish(const std::string &message)=0aace::core::MessageBrokerpure virtual
        subscribe(MessageHandler handler, const std::string &topic="", const std::string &action="")=0aace::core::MessageBrokerpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_message_broker.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_message_broker.html deleted file mode 100644 index 01bd6ec40..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_message_broker.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::core::MessageBroker Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::core::MessageBroker Class Referenceabstract
        -
        -
        - - - - - - - - -

        -Public Member Functions

        virtual void publish (const std::string &message)=0
         
        virtual void subscribe (MessageHandler handler, const std::string &topic="", const std::string &action="")=0
         
        virtual std::shared_ptr< MessageStream > openStream (const std::string &streamId, MessageStream::Mode mode)=0
         
        -

        Detailed Description

        -

        MessageBroker should be extended to handle sending and receiving messages to and from the Engine.

        -

        Member Function Documentation

        - -

        ◆ publish()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::core::MessageBroker::publish (const std::string & message)
        -
        -pure virtual
        -
        -

        Publishes a message to the Engine.

        -
        Parameters
        - - -
        [in]messageThe message.
        -
        -
        - -
        -
        - -

        ◆ subscribe()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::core::MessageBroker::subscribe (MessageHandler handler,
        const std::string & topic = "",
        const std::string & action = "" 
        )
        -
        -pure virtual
        -
        -

        Subscribes to messages that are sent from the Engine.

        -
        Parameters
        - - - - -
        [in]handlerThe message handler.
        [in]topicMessage topic to subscribe to.
        [in]actionMessage action to subscribe to.
        -
        -
        - -
        -
        - -

        ◆ openStream()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual std::shared_ptr<MessageStream> aace::core::MessageBroker::openStream (const std::string & streamId,
        MessageStream::Mode mode 
        )
        -
        -pure virtual
        -
        -

        Opens an message stream that has been registered by the Engine.

        -
        Parameters
        - - - -
        [in]streamIdThe id of the stream being opened.
        [in]modeThe stream operation @ mode being requested.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_platform_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_platform_interface-members.html deleted file mode 100644 index 6cbfc6032..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_platform_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::core::PlatformInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::core::PlatformInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_platform_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_platform_interface.html deleted file mode 100644 index a12c79b7d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1_platform_interface.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::core::PlatformInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::core::PlatformInterface Class Reference
        -
        -
        -

        Detailed Description

        -

        PlatformInterface is the base class for all platform interfaces. It can be extended to create custom platform interfaces.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_configuration_file-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_configuration_file-members.html deleted file mode 100644 index b1b0b2b0d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_configuration_file-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::core::config::ConfigurationFile Member List
        -
        -
        - -

        This is the complete list of members for aace::core::config::ConfigurationFile, including all inherited members.

        - - - -
        create(const std::string &configFilePath)aace::core::config::ConfigurationFilestatic
        getStream() overrideaace::core::config::ConfigurationFilevirtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_configuration_file.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_configuration_file.html deleted file mode 100644 index 8d3a9ecc2..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_configuration_file.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::core::config::ConfigurationFile Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::core::config::ConfigurationFile Class Reference
        -
        -
        - - - - -

        -Public Member Functions

        std::shared_ptr< std::istream > getStream () override
         
        - - - -

        -Static Public Member Functions

        static std::shared_ptr< ConfigurationFilecreate (const std::string &configFilePath)
         
        -

        Detailed Description

        -

        Configuration class used to provide configuration data from a file. The contents of the file should be JSON data with values corresponding to the content provided by the other configuration objects.

        -

        Member Function Documentation

        - -

        ◆ create()

        - -
        -
        - - - - - -
        - - - - - - - - -
        std::shared_ptr< ConfigurationFile > aace::core::config::ConfigurationFile::create (const std::string & configFilePath)
        -
        -static
        -
        -

        Creates a new instance of ConfigurationFile by providing the path to a configuration file containing JSON data.

        -
        Parameters
        - - -
        [in]configFilePathThe path to the configuration file
        -
        -
        - -
        -
        - -

        ◆ getStream()

        - -
        -
        - - - - - -
        - - - - - - - -
        std::shared_ptr< std::istream > aace::core::config::ConfigurationFile::getStream ()
        -
        -overridevirtual
        -
        -
        Returns
        A pointer to a std::istream object containing the JSON configuration data
        - -

        Implements aace::core::config::EngineConfiguration.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_engine_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_engine_configuration-members.html deleted file mode 100644 index cc0fa2ae7..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_engine_configuration-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::core::config::EngineConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::core::config::EngineConfiguration, including all inherited members.

        - - -
        getStream()=0aace::core::config::EngineConfigurationpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_engine_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_engine_configuration.html deleted file mode 100644 index af38e0dd0..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_engine_configuration.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::core::config::EngineConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::core::config::EngineConfiguration Class Referenceabstract
        -
        -
        - - - - -

        -Public Member Functions

        virtual std::shared_ptr< std::istream > getStream ()=0
         
        -

        Detailed Description

        -

        Base class for providing JSON configuration data to the Engine.

        -

        Member Function Documentation

        - -

        ◆ getStream()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual std::shared_ptr<std::istream> aace::core::config::EngineConfiguration::getStream ()
        -
        -pure virtual
        -
        -
        Returns
        A pointer to a std::istream object containing the JSON configuration data
        - -

        Implemented in aace::core::config::ConfigurationFile, and aace::core::config::StreamConfiguration.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_stream_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_stream_configuration-members.html deleted file mode 100644 index afac32f8c..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_stream_configuration-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::core::config::StreamConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::core::config::StreamConfiguration, including all inherited members.

        - - - -
        create(std::shared_ptr< std::istream > stream)aace::core::config::StreamConfigurationstatic
        getStream() overrideaace::core::config::StreamConfigurationvirtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_stream_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_stream_configuration.html deleted file mode 100644 index ee397514c..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1core_1_1config_1_1_stream_configuration.html +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::core::config::StreamConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::core::config::StreamConfiguration Class Reference
        -
        -
        - - - - -

        -Public Member Functions

        std::shared_ptr< std::istream > getStream () override
         
        - - - -

        -Static Public Member Functions

        static std::shared_ptr< StreamConfigurationcreate (std::shared_ptr< std::istream > stream)
         
        -

        Detailed Description

        -

        Configuration class used to provide configuration data from a stream. The contents of the stream should be JSON data with values corresponding to the stream content provided by the other configuration objects.

        -

        Member Function Documentation

        - -

        ◆ create()

        - -
        -
        - - - - - -
        - - - - - - - - -
        std::shared_ptr< StreamConfiguration > aace::core::config::StreamConfiguration::create (std::shared_ptr< std::istream > stream)
        -
        -static
        -
        -

        Creates a new instance of StreamConfiguration by providing the input stream containing JSON data

        -
        Parameters
        - - -
        [in]streamThe input stream
        -
        -
        - -
        -
        - -

        ◆ getStream()

        - -
        -
        - - - - - -
        - - - - - - - -
        std::shared_ptr< std::istream > aace::core::config::StreamConfiguration::getStream ()
        -
        -overridevirtual
        -
        -
        Returns
        A pointer to a std::istream object containing the JSON configuration data
        - -

        Implements aace::core::config::EngineConfiguration.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage-members.html deleted file mode 100644 index d02c31609..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::deviceUsage::DeviceUsage Member List
        -
        -
        - -

        This is the complete list of members for aace::deviceUsage::DeviceUsage, including all inherited members.

        - - -
        reportNetworkDataUsage(const std::string &usage)aace::deviceUsage::DeviceUsage
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage.html b/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage.html deleted file mode 100644 index add06978f..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::deviceUsage::DeviceUsage Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::deviceUsage::DeviceUsage Class Reference
        -
        -
        - - - - -

        -Public Member Functions

        void reportNetworkDataUsage (const std::string &usage)
         
        -

        Detailed Description

        -

        Device Usage should be extended by the platform implementation to provide the Alexa app usage on the device to Auto SDK. The interface currently supports providing the network data consumption only.

        -

        Member Function Documentation

        - -

        ◆ reportNetworkDataUsage()

        - -
        -
        - - - - - - - - -
        void aace::deviceUsage::DeviceUsage::reportNetworkDataUsage (const std::string & usage)
        -
        -

        Reports the network usage data consumed by the Alexa application between the startTimeStamp and endTimeStamp

        -
        Parameters
        - - -
        [in]usageThe network usage data.
        {
        "startTimeStamp" : {{LONG}},
        "endTimeStamp" : {{LONG}},
        "networkInterfaceType": "{{STRING}}",
        "dataPlanType" : "{{STRING}}",
        "bytesUsage" :{
        "rxBytes" : {{LONG}},
        "txBytes" : {{LONG}}
        }
        }
          -
        • startTimeStamp The starting timestamp in milliseconds from when the network usage data is captured
        • -
        • endTimeStamp The ending timestamp in milliseconds till when the network usage data is captured
        • -
        • networkInterfaceType The network interface name over which the data is recorded. For e.g WIFI, MOBILE
        • -
        • dataPlanType The type of current data plan the device is subscribed to. This is an optional field and should be provided only when the aace::connectivity::AlexaConnectivity platform interface is registered by the platform implementation. Refer to aace::connectivity::AlexaConnectivity for more details about dataPlanType
        • -
        • bytesUsage.rxBytes The received bytes over the networkInterfaceType
        • -
        • bytesUsage.txBytes The transmitted bytes over the networkInterfaceType
        • -
        -
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage_engine_interface-members.html deleted file mode 100644 index b7a569b2f..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage_engine_interface-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::deviceUsage::DeviceUsageEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::deviceUsage::DeviceUsageEngineInterface, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage_engine_interface.html deleted file mode 100644 index d1a07a095..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1device_usage_1_1_device_usage_engine_interface.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::deviceUsage::DeviceUsageEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::deviceUsage::DeviceUsageEngineInterface Class Referenceabstract
        -
        -
        -

        Detailed Description

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location-members.html deleted file mode 100644 index 69ad7560b..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location-members.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::location::Location Member List
        -
        -
        - -

        This is the complete list of members for aace::location::Location, including all inherited members.

        - - - - - - - - - - - -
        getAccuracy()aace::location::Location
        getAltitude()aace::location::Location
        getLatitude()aace::location::Location
        getLongitude()aace::location::Location
        getTime()aace::location::Location
        getTimeAsString()aace::location::Location
        isValid()aace::location::Location
        Location()aace::location::Location
        Location(double latitude, double longitude, double altitude=UNDEFINED, double accuracy=UNDEFINED, std::chrono::system_clock::time_point time=std::chrono::system_clock::now())aace::location::Location
        Location(const Location &location)aace::location::Location
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location.html b/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location.html deleted file mode 100644 index b5b51ee66..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location.html +++ /dev/null @@ -1,346 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::location::Location Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::location::Location Class Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

         Location ()
         
         Location (double latitude, double longitude, double altitude=UNDEFINED, double accuracy=UNDEFINED, std::chrono::system_clock::time_point time=std::chrono::system_clock::now())
         
         Location (const Location &location)
         
        bool isValid ()
         
        double getLatitude ()
         
        double getLongitude ()
         
        double getAltitude ()
         
        double getAccuracy ()
         
        std::chrono::system_clock::time_point getTime ()
         
        std::string getTimeAsString ()
         
        -

        Detailed Description

        -

        Represents a location object and provides accessor methods to its data

        -

        Constructor & Destructor Documentation

        - -

        ◆ Location() [1/3]

        - -
        -
        - - - - - - - -
        aace::location::Location::Location ()
        -
        -

        Default constructor

        - -
        -
        - -

        ◆ Location() [2/3]

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        aace::location::Location::Location (double latitude,
        double longitude,
        double altitude = UNDEFINED,
        double accuracy = UNDEFINED,
        std::chrono::system_clock::time_point time = std::chrono::system_clock::now() 
        )
        -
        -

        Location constructor

        -
        Parameters
        - - - - - - -
        [in]latitudeA location latitude
        [in]longitudeA location longitude
        [in]altitudeA location altitude in meters
        [in]accuracyA location accuracy in meters
        [in]timeThe time of measurement. Default is time of construction
        -
        -
        - -
        -
        - -

        ◆ Location() [3/3]

        - -
        -
        - - - - - - - - -
        aace::location::Location::Location (const Locationlocation)
        -
        -

        Copy constructor for a Location object

        -
        Parameters
        - - -
        [in]locationA Location object to copy
        -
        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ isValid()

        - -
        -
        - - - - - - - -
        bool aace::location::Location::isValid ()
        -
        -

        Checks if the Location is valid

        -
        Returns
        true if the location is valid, else false
        - -
        -
        - -

        ◆ getLatitude()

        - -
        -
        - - - - - - - -
        double aace::location::Location::getLatitude ()
        -
        -

        Location accessor method for latitude

        -
        Returns
        The latitude for the location
        - -
        -
        - -

        ◆ getLongitude()

        - -
        -
        - - - - - - - -
        double aace::location::Location::getLongitude ()
        -
        -

        Location accessor method for longitude

        -
        Returns
        The longitude for the location
        - -
        -
        - -

        ◆ getAltitude()

        - -
        -
        - - - - - - - -
        double aace::location::Location::getAltitude ()
        -
        -

        Location accessor method for altitude

        -
        Returns
        The altitude for the location
        - -
        -
        - -

        ◆ getAccuracy()

        - -
        -
        - - - - - - - -
        double aace::location::Location::getAccuracy ()
        -
        -

        Location accessor method for accuracy

        -
        Returns
        The accuracy for the location
        - -
        -
        - -

        ◆ getTime()

        - -
        -
        - - - - - - - -
        std::chrono::system_clock::time_point aace::location::Location::getTime ()
        -
        -

        Location accessor method for time

        -
        Returns
        std::chrono::system_clock::time_point The time of location measurement
        - -
        -
        - -

        ◆ getTimeAsString()

        - -
        -
        - - - - - - - -
        std::string aace::location::Location::getTimeAsString ()
        -
        -

        Location accessor method for time

        -
        Returns
        std::string The time of location measurement as a string
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider-members.html deleted file mode 100644 index e74854c78..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::location::LocationProvider Member List
        -
        -
        - -

        This is the complete list of members for aace::location::LocationProvider, including all inherited members.

        - - - - -
        getCountry()aace::location::LocationProvidervirtual
        getLocation()=0aace::location::LocationProviderpure virtual
        locationServiceAccessChanged(LocationServiceAccess access)aace::location::LocationProvider
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider.html b/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider.html deleted file mode 100644 index d48abfee2..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::location::LocationProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::location::LocationProvider Class Referenceabstract
        -
        -
        - - - - - - - - -

        -Public Member Functions

        virtual aace::location::Location getLocation ()=0
         
        virtual std::string getCountry ()
         
        void locationServiceAccessChanged (LocationServiceAccess access)
         
        -

        Detailed Description

        -

        LocationProvider should be extended to report geolocation to the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ getLocation()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual aace::location::Location aace::location::LocationProvider::getLocation ()
        -
        -pure virtual
        -
        -

        Returns the current geolocation of the device

        -
        Returns
        The current location
        - -
        -
        - -

        ◆ getCountry()

        - -
        -
        - - - - - -
        - - - - - - - -
        std::string aace::location::LocationProvider::getCountry ()
        -
        -virtual
        -
        -

        Returns the ISO country code for the current geolocation of the device. If no country can be determined, this method should return an empty string.

        -
        Returns
        The current country
        - -
        -
        - -

        ◆ locationServiceAccessChanged()

        - -
        -
        - - - - - - - - -
        void aace::location::LocationProvider::locationServiceAccessChanged (LocationServiceAccess access)
        -
        -

        Notifies the Engine of a change in location service access. Use this function when the device's access to location service provider changes. E.g., system location access is not granted to the application.

        -
        Parameters
        - - -
        [in]accessAccess to the location service
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider_engine_interface-members.html deleted file mode 100644 index a0ea2fdd9..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider_engine_interface-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::location::LocationProviderEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::location::LocationProviderEngineInterface, including all inherited members.

        - - -
        LocationServiceAccess enum nameaace::location::LocationProviderEngineInterface
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider_engine_interface.html deleted file mode 100644 index ce267a5c5..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1location_1_1_location_provider_engine_interface.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::location::LocationProviderEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::location::LocationProviderEngineInterface Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        enum  LocationServiceAccess {
        -  LocationServiceAccess::DISABLED, -
        -  LocationServiceAccess::ENABLED -
        - }
         
        -

        Detailed Description

        -

        Member Enumeration Documentation

        - -

        ◆ LocationServiceAccess

        - -
        -
        -

        Describes the access to the geolocation service on the device.

        - - - -
        Enumerator
        DISABLED 

        The location service on the device is disabled (e.g., GPS is turned off).

        -
        ENABLED 

        The location service on the device is enabled (e.g., GPS is turned on).

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger-members.html deleted file mode 100644 index 519f6b2b6..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger-members.html +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::logger::Logger Member List
        -
        -
        - -

        This is the complete list of members for aace::logger::Logger, including all inherited members.

        - - - - -
        Level typedefaace::logger::Logger
        log(Level level, const std::string &tag, const std::string &message)aace::logger::Logger
        logEvent(aace::logger::Logger::Level level, std::chrono::system_clock::time_point time, const std::string &source, const std::string &message)aace::logger::Loggervirtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger.html b/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger.html deleted file mode 100644 index 9906ffbcd..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::logger::Logger Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::logger::Logger Class Reference
        -
        -
        - - - - -

        -Public Types

        using Level = aace::logger::LoggerEngineInterface::Level
         
        - - - - - -

        -Public Member Functions

        virtual bool logEvent (aace::logger::Logger::Level level, std::chrono::system_clock::time_point time, const std::string &source, const std::string &message)
         
        void log (Level level, const std::string &tag, const std::string &message)
         
        -

        Detailed Description

        -

        Logger should be extended handle log events from the AAC SDK.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ Level

        - -
        -
        -

        Specifies the severity level of a log message

        See also
        aace::logger::LoggerEngineInterface::Level
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ logEvent()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::logger::Logger::logEvent (aace::logger::Logger::Level level,
        std::chrono::system_clock::time_point time,
        const std::string & source,
        const std::string & message 
        )
        -
        -virtual
        -
        -

        Notifies the platform implementation of a log event from the AAC SDK logger

        -
        Parameters
        - - - - - -
        [in]levelThe log level
        [in]timeThe timestamp of the logged message
        [in]sourceThe source of the log message
        [in]messageThe log message
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the log event, else false
        - -
        -
        - -

        ◆ log()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::logger::Logger::log (Level level,
        const std::string & tag,
        const std::string & message 
        )
        -
        -

        Notifies the Engine to use the AAC SDK logger to log a message originating on the platform. The log event will be received by the platform with a call to logEvent() from the Engine.

        -
        Parameters
        - - - - -
        [in]levelThe log level
        [in]tagThe log tag
        [in]messageThe log message
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger_engine_interface-members.html deleted file mode 100644 index a510d9147..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger_engine_interface-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::logger::LoggerEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::logger::LoggerEngineInterface, including all inherited members.

        - - -
        Level enum nameaace::logger::LoggerEngineInterface
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger_engine_interface.html deleted file mode 100644 index 498fbecbe..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1_logger_engine_interface.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::logger::LoggerEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::logger::LoggerEngineInterface Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        enum  Level {
        -  Level::VERBOSE, -
        -  Level::INFO, -
        -  Level::METRIC, -
        -  Level::WARN, -
        -  Level::ERROR, -
        -  Level::CRITICAL -
        - }
         
        -

        Detailed Description

        -

        Member Enumeration Documentation

        - -

        ◆ Level

        - -
        -
        - - - - - -
        - - - - -
        enum aace::logger::LoggerEngineInterface::Level
        -
        -strong
        -
        -

        Specifies the severity level of a log message

        - - - - - - - -
        Enumerator
        VERBOSE 

        Verbose log of an event, enabled only for debug builds

        -
        INFO 

        Log of a normal event. Used in release builds

        -
        METRIC 

        Log of a metric, enabled only for builds with metrics enabled

        -
        WARN 

        Log of an event that may indicate a problem

        -
        ERROR 

        Log of an event that indicates an error

        -
        CRITICAL 

        Log of an event that indicates an unrecoverable error

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1config_1_1_logger_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1config_1_1_logger_configuration-members.html deleted file mode 100644 index 9374c77c6..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1config_1_1_logger_configuration-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::logger::config::LoggerConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::logger::config::LoggerConfiguration, including all inherited members.

        - - - - - - -
        createConsoleSinkConfig(const std::string &id, Level level)aace::logger::config::LoggerConfigurationstatic
        createFileSinkConfig(const std::string &id, Level level, const std::string &path, const std::string &prefix="aace", uint32_t maxSize=5242880, uint32_t maxFiles=3, bool append=true)aace::logger::config::LoggerConfigurationstatic
        createLoggerRuleConfig(const std::string &sink, Level level, const std::string &sourceFilter="", const std::string &tagFilter="", const std::string &messageFilter="")aace::logger::config::LoggerConfigurationstatic
        createSyslogSinkConfig(const std::string &id, Level level)aace::logger::config::LoggerConfigurationstatic
        Level typedefaace::logger::config::LoggerConfiguration
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1config_1_1_logger_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1config_1_1_logger_configuration.html deleted file mode 100644 index d15ed56a0..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1logger_1_1config_1_1_logger_configuration.html +++ /dev/null @@ -1,353 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::logger::config::LoggerConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::logger::config::LoggerConfiguration Class Reference
        -
        -
        - - - - -

        -Public Types

        using Level = aace::logger::LoggerEngineInterface::Level
         
        - - - - - - - - - -

        -Static Public Member Functions

        static std::shared_ptr< aace::core::config::EngineConfigurationcreateConsoleSinkConfig (const std::string &id, Level level)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateSyslogSinkConfig (const std::string &id, Level level)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateFileSinkConfig (const std::string &id, Level level, const std::string &path, const std::string &prefix="aace", uint32_t maxSize=5242880, uint32_t maxFiles=3, bool append=true)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateLoggerRuleConfig (const std::string &sink, Level level, const std::string &sourceFilter="", const std::string &tagFilter="", const std::string &messageFilter="")
         
        -

        Detailed Description

        -
        {
        "aace.logger":
        {
        "sinks": [<Sink>],
        "rules": [{"sink": "<SINK_ID>", "rule": <Rule>}]
        }
        }
        <Sink>: {
        "id": "<SINK_ID>"
        "type": "<SINK_TYPE>",
        "config": {
        <CONFIG_DATA>
        },
        "rules": [<RuleConfiguration>]
        }
        <Rule>: {
        "level": "<LOG_LEVEL>",
        "source": "<SOURCE_FILTER>",
        "tag": "<TAG_FILTER>",
        "message": "<MESSAGE_FILTER>"
        }

        Member Typedef Documentation

        - -

        ◆ Level

        - - -

        Member Function Documentation

        - -

        ◆ createConsoleSinkConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::logger::config::LoggerConfiguration::createConsoleSinkConfig (const std::string & id,
        Level level 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate logger configuration data for a console sink. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "sinks": [{
        "id": "<SINK_ID>",
        "type": "aace.logger.sink.console",
        "rules": [{
        "level": <LOG_LEVEL>
        }]
        }
        }
        }
        Parameters
        - - - -
        [in]idThe id of sink object
        [in]levelThe log level to be used to filter logs to this sink
        -
        -
        - -
        -
        - -

        ◆ createSyslogSinkConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::logger::config::LoggerConfiguration::createSyslogSinkConfig (const std::string & id,
        Level level 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate logger configuration data for a syslog sink. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "sinks": [{
        "id": "<SINK_ID>",
        "type": "aace.logger.sink.syslog",
        "rules": [{
        "level": <LOG_LEVEL>
        }]
        }
        }
        }
        Parameters
        - - - -
        [in]idThe id of sink object
        [in]levelThe log level to be used to filter logs to this sink
        -
        -
        - -
        -
        - -

        ◆ createFileSinkConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::logger::config::LoggerConfiguration::createFileSinkConfig (const std::string & id,
        Level level,
        const std::string & path,
        const std::string & prefix = "aace",
        uint32_t maxSize = 5242880,
        uint32_t maxFiles = 3,
        bool append = true 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate logger configuration data for a file sink. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "sinks": [{
        "id": "<SINK_ID>",
        "type": "aace.logger.sink.file",
        "config": {
        "path": "<PATH>",
        "prefix": "<PREFIX>",
        "maxSize": <MAX_SIZE>,
        "maxFiles": <MAX_FILES>,
        "append": <APPEND>
        }
        "rules": [{
        "level": <LOG_LEVEL>
        }]
        }
        }
        }
        Parameters
        - - - - - - - - -
        [in]idThe id of sink object
        [in]levelThe log level to be used to filter logs to this sink
        [in]pathThe parent path where the log files will be written (must exist)
        [in]prefixThe prefix name given to the log file
        [in]maxSizeThe maximum log file size in bytes
        [in]maxFilesThe maximum number of log files to rotate
        [in]appendtrue If the logs should be appended to the existing file, false if the file should be overwritten
        -
        -
        - -
        -
        - -

        ◆ createLoggerRuleConfig()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::logger::config::LoggerConfiguration::createLoggerRuleConfig (const std::string & sink,
        Level level,
        const std::string & sourceFilter = "",
        const std::string & tagFilter = "",
        const std::string & messageFilter = "" 
        )
        -
        -static
        -
        -

        Factory method used to programmatically generate configuration data for a logger rule. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.logger":
        {
        "rules": [{
        "sink": "<SINK_ID>",
        "rule": {
        "level": <LOG_LEVEL>,
        "source": "<SOURCE_FILTER>",
        "tag": "<TAG_FILTER>",
        "message": "<MESSAGE_FILTER>"
        }
        }
        }
        }
        Parameters
        - - - - - - -
        [in]sinkThe id of sink object to which this rule is applied
        [in]levelThe log level to be used as a filter for this rule
        [in]sourceFilterThe source regex to be used as a filter for this rule
        [in]tagFilterThe tag regex to be used as a filter for this rule
        [in]messageFilterThe message regex to be used as a filter for this rule
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1messaging_1_1_messaging-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1messaging_1_1_messaging-members.html deleted file mode 100644 index 82e6973c0..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1messaging_1_1_messaging-members.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::messaging::Messaging Member List
        -
        -
        - -

        This is the complete list of members for aace::messaging::Messaging, including all inherited members.

        - - - - - - - - - - - - - -
        ConnectionState typedefaace::messaging::Messaging
        conversationsReport(const std::string &token, const std::string &conversations)aace::messaging::Messaging
        ErrorCode typedefaace::messaging::Messaging
        PermissionState typedefaace::messaging::Messaging
        sendMessage(const std::string &token, const std::string &message, const std::string &recipients)=0aace::messaging::Messagingpure virtual
        sendMessageFailed(const std::string &token, ErrorCode code, const std::string &message="")aace::messaging::Messaging
        sendMessageSucceeded(const std::string &token)aace::messaging::Messaging
        updateMessagesStatus(const std::string &token, const std::string &conversationId, const std::string &status)=0aace::messaging::Messagingpure virtual
        updateMessagesStatusFailed(const std::string &token, ErrorCode code, const std::string &message="")aace::messaging::Messaging
        updateMessagesStatusSucceeded(const std::string &token)aace::messaging::Messaging
        updateMessagingEndpointState(ConnectionState connectionState, PermissionState sendPermission, PermissionState readPermission)aace::messaging::Messaging
        uploadConversations(const std::string &token)=0aace::messaging::Messagingpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1messaging_1_1_messaging.html b/docs/docs/doxygen-docs/cpp/classaace_1_1messaging_1_1_messaging.html deleted file mode 100644 index 95c7cd0fa..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1messaging_1_1_messaging.html +++ /dev/null @@ -1,552 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::messaging::Messaging Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::messaging::Messaging Class Referenceabstract
        -
        -
        - - - - - - - - -

        -Public Types

        using ErrorCode = MessagingEngineInterface::ErrorCode
         
        using ConnectionState = MessagingEngineInterface::ConnectionState
         
        using PermissionState = MessagingEngineInterface::PermissionState
         
        - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual void sendMessage (const std::string &token, const std::string &message, const std::string &recipients)=0
         
        virtual void uploadConversations (const std::string &token)=0
         
        virtual void updateMessagesStatus (const std::string &token, const std::string &conversationId, const std::string &status)=0
         
        void sendMessageSucceeded (const std::string &token)
         
        void sendMessageFailed (const std::string &token, ErrorCode code, const std::string &message="")
         
        void conversationsReport (const std::string &token, const std::string &conversations)
         
        void updateMessagesStatusSucceeded (const std::string &token)
         
        void updateMessagesStatusFailed (const std::string &token, ErrorCode code, const std::string &message="")
         
        void updateMessagingEndpointState (ConnectionState connectionState, PermissionState sendPermission, PermissionState readPermission)
         
        -

        Detailed Description

        -

        Messaging should be extended to allow a user to use Alexa to interact with a device that provides Short Messaging Service (SMS) capabilities, such as a connected mobile phone.

        -
        Note
        The device is referred to as the messaging endpoint.
        -

        The platform implementation is responsible for uploading unread messages to the cloud when the messaging endpoint is connected, and when new messages are received. Alexa reads messages in the order they are uploaded. Additionally, the platform implementation is responsible for sending messages, updating message status, and providing the messaging endpoint connection state and permissions.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ ErrorCode

        - -
        -
        - - - - -
        using aace::messaging::Messaging::ErrorCode = MessagingEngineInterface::ErrorCode
        -
        -

        Describes the ErrorCode for failed responses.

        - -
        -
        - -

        ◆ ConnectionState

        - -
        -
        - - - - -
        using aace::messaging::Messaging::ConnectionState = MessagingEngineInterface::ConnectionState
        -
        -

        Describes the ConnectionState of the messaging endpoint.

        - -
        -
        - -

        ◆ PermissionState

        - -
        -
        - - - - -
        using aace::messaging::Messaging::PermissionState = MessagingEngineInterface::PermissionState
        -
        -

        Describes the PermissionState of the messaging endpoint.

        - -
        -
        -

        Member Function Documentation

        - -

        ◆ sendMessage()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::messaging::Messaging::sendMessage (const std::string & token,
        const std::string & message,
        const std::string & recipients 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to send an SMS message via the messaging endpoint. The message text contains a short lived URL that contains the audio data from which the message was generated.

        -
        Parameters
        - - - - -
        [in]tokenThe identifier for the request.
        [in]messageThe body of the message, which includes the text and a URL pointing to the audio the audio data from which the message was generated. The text and the URL are separated by a '
        -' character.
        [in]recipientsJSON data containing the recipients of the message.
        {
        "recipients" : [
        {
        "address" : "{{STRING}}",
        "addressType" : "PhoneNumberAddress"
        }
        ]
        }
          -
        • recipients (required) : The list of phone numbers to which the user intends to send the message.
        • -
        • address (required) : The phone number of the recipient.
        • -
        • addressType (required) : Describes the type of value address contains. Currently, only "PhoneNumberAddress" is supported.
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ uploadConversations()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::messaging::Messaging::uploadConversations (const std::string & token)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to upload all unread messages to the cloud. This method is called if message playback is interrupted or when Alexa has finished reading all messages. This ensures that the cloud and the messaging endpoint stay in sync with the status of unread messages. Upload messages via the conversationsReport API using the token received.

        -
        Parameters
        - - -
        [in]tokenThe identifier for the request.
        -
        -
        - -
        -
        - -

        ◆ updateMessagesStatus()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::messaging::Messaging::updateMessagesStatus (const std::string & token,
        const std::string & conversationId,
        const std::string & status 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation that a message has been read, and therefore the messaging device must update the message status to reflect that. The platform implementation is responsible for maintaining the list of unread messages. It must send a response to the cloud via updateMessagesStatusSucceeded or updateMessagesStatusFailed depending on the result of the status update.

        -
        Parameters
        - - - - -
        [in]tokenThe identifier for the request.
        [in]conversationIdThe identifier for the conversation whose status will be updated. This is the value provided by the platform via the conversationsReport API.
        [in]statusContains the set of message identifiers that need to be updated to the associated status.
        {
        "statusMap" : {
        "read" : [{{STRING}}],
        }
        }
          -
        • read The list of message ids that were read in the associated conversationId.
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ sendMessageSucceeded()

        - -
        -
        - - - - - - - - -
        void aace::messaging::Messaging::sendMessageSucceeded (const std::string & token)
        -
        -

        Notifies the cloud that the sendMessage request succeeded.

        -
        Parameters
        - - -
        [in]tokenThe token received from the sendMessage request.
        -
        -
        - -
        -
        - -

        ◆ sendMessageFailed()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::messaging::Messaging::sendMessageFailed (const std::string & token,
        ErrorCode code,
        const std::string & message = "" 
        )
        -
        -

        Notifies the cloud that the sendMessage request failed.

        -
        Parameters
        - - - - -
        [in]tokenThe token received from the sendMessage request.
        [in]codeThe error code describing the reason for the failure.
        [in]messageOptional error message describing the failure.
        -
        -
        - -
        -
        - -

        ◆ conversationsReport()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::messaging::Messaging::conversationsReport (const std::string & token,
        const std::string & conversations 
        )
        -
        -

        Updates the cloud with the list of unread messages that Alexa will play back. Call this method when the messaging endpoint is connected and read permission has been granted. Additionally, use this method to reply to a uploadConversations request, passing back the token that was sent in that request.

        -
        Note
        The conversation report is a JSON Array and therefore must be enclosed in brackets [].
        -

        The list of conversations is a JSON array. Each conversation must contain a unique identifier that will be used by the updateMessagesStatus request to identify the conversation whose messages must be updated.

        -

        The "otherParticipants" field of the conversation report contains the phone numbers of all participants in the conversation, except for the phone number of the messaging endpoint.

        -
        Parameters
        - - - -
        [in]Thetoken received from uploadConversations, otherwise an empty string.
        [in]conversationsA JSON array representing the unread messages of the messaging endpoint.
        [
        {
        "id": "{{STRING}}",
        "otherParticipants": [
        {
        "address":"{{STRING}}",
        "addressType":"PhoneNumberAddress"
        }
        ],
        "messages": [
        {
        "id":"{{STRING}}",
        "payload": {
        "@type":"text",
        "text":"{{STRING}}"
        },
        "status":"unread",
        "createdTime":"{{STRING}}",
        "sender": {
        "address":"{{STRING}}",
        "addressType":"PhoneNumberAddress"
        }
        }
        ],
        "unreadMessageCount": {{INTEGER}}
        }
        ]
          -
        • id A unique identifier generated by the application for the conversation.
        • -
        • otherParticipants Additional recipients of the message used for group conversation or empty.
        • -
        • otherParticipants.address The phone number of the recipient.
        • -
        • otherParticipants.addressType Hard coded string "PhoneNumberAddress" indicating the value of the address field.
        • -
        • messages.id A unique identifier generated by the application for the message.
        • -
        • messages.payload. Hard coded string "text" indicating the value of the text field.
        • -
        • messages.text The text for the message.
        • -
        • messages.createdTime (optional) The ISO 8601 timestamp of when the message was created on the device.
        • -
        • messages.sender.address The phone number of the sender.
        • -
        • messages.sender.addressType Hard coded string "PhoneNumberAddress" indicating the value of the address field.
        • -
        • unreadMessageCount The total number of unread messages in this conversation.
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ updateMessagesStatusSucceeded()

        - -
        -
        - - - - - - - - -
        void aace::messaging::Messaging::updateMessagesStatusSucceeded (const std::string & token)
        -
        -

        Notifies the cloud that the updateMessagesStatus request succeeded.

        -
        Parameters
        - - -
        [in]tokenThe token received from the
        -
        -
        -
        See also
        Messaging::updateMessagesStatus request.
        - -
        -
        - -

        ◆ updateMessagesStatusFailed()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::messaging::Messaging::updateMessagesStatusFailed (const std::string & token,
        ErrorCode code,
        const std::string & message = "" 
        )
        -
        -

        Notifies the cloud that the updateMessagesStatus request failed.

        -
        Parameters
        - - -
        [in]tokenThe token received from the
        -
        -
        -
        See also
        Messaging::updateMessagesStatus request.
        -
        Parameters
        - - - -
        [in]codeThe error code describing the reason for the failure.
        [in]messageOptional error message describing the failure.
        -
        -
        - -
        -
        - -

        ◆ updateMessagingEndpointState()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::messaging::Messaging::updateMessagingEndpointState (ConnectionState connectionState,
        PermissionState sendPermission,
        PermissionState readPermission 
        )
        -
        -

        Allows the platform implementation to provide the connection state of the messaging endpoint, and whether send and read permissions are granted by the user.

        -
        Parameters
        - - - - -
        [in]connectionStateCONNECTED If the messaging endpoint is connected, else DISCONNECTED
        [in]sendPermissionON If the messaging endpoint can send messages, else OFF
        [in]readPermissionON If the messaging endpoint messages be read, else OFF
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader-members.html deleted file mode 100644 index b6804431d..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::metrics::MetricsUploader Member List
        -
        -
        - -

        This is the complete list of members for aace::metrics::MetricsUploader, including all inherited members.

        - - - -
        DatapointType enum nameaace::metrics::MetricsUploader
        record(const std::vector< Datapoint > &datapoints, const std::unordered_map< std::string, std::string > &metadata, bool buffer, bool unique)=0aace::metrics::MetricsUploaderpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader.html b/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader.html deleted file mode 100644 index d1dfd3e5e..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::metrics::MetricsUploader Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::metrics::MetricsUploader Class Referenceabstract
        -
        -
        - - - - -

        -Classes

        class  Datapoint
         
        - - - -

        -Public Types

        enum  DatapointType {
        -  DatapointType::TIMER, -
        -  DatapointType::STRING, -
        -  DatapointType::COUNTER -
        - }
         
        - - - -

        -Public Member Functions

        virtual bool record (const std::vector< Datapoint > &datapoints, const std::unordered_map< std::string, std::string > &metadata, bool buffer, bool unique)=0
         
        -

        Detailed Description

        -

        MetricsUploader interface for recording metrics

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Enumeration Documentation

        - -

        ◆ DatapointType

        - -
        -
        - - - - - -
        - - - - -
        enum aace::metrics::MetricsUploader::DatapointType
        -
        -strong
        -
        -

        Describes the different types a datapoint can be

        - - - - -
        Enumerator
        TIMER 

        Datapoint is a timer capturing time data.

        -
        STRING 

        Datapoint is a string capturing key, value pair data.

        -
        COUNTER 

        Datapoint is a counter capturing data on # of occurrences.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ record()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual bool aace::metrics::MetricsUploader::record (const std::vector< Datapoint > & datapoints,
        const std::unordered_map< std::string, std::string > & metadata,
        bool buffer,
        bool unique 
        )
        -
        -pure virtual
        -
        -

        A method that can be overridden by the platform to upload the metric datapoints and metadata to the cloud

        -
        Parameters
        - - - - - -
        [in]datapointsThe list of datapoints to be added to the metric and recorded
        [in]metadataAdditional information in the form of key, value pairs to be added to the metric
        [in]bufferFlag to indicate if the metric needs to be buffered while the user is not authorized
        [in]uniqueFlag to indicate if the metric needs to be added with a unique identifier
        -
        -
        -
        Returns
        Returns true if record was successful and false if not implemented or recording failed
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint-members.html deleted file mode 100644 index a2f8a3208..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::metrics::MetricsUploader::Datapoint Member List
        -
        -
        - -

        This is the complete list of members for aace::metrics::MetricsUploader::Datapoint, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint.html b/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint.html deleted file mode 100644 index 663a0c547..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::metrics::MetricsUploader::Datapoint Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::metrics::MetricsUploader::Datapoint Class Reference
        -
        -
        -

        Detailed Description

        -

        Datapoint class that contains name of the data being capture, it's value, and how many times recorded

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1_navigation-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1_navigation-members.html deleted file mode 100644 index e9ad83fc8..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1_navigation-members.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::navigation::Navigation Member List
        -
        -
        - -

        This is the complete list of members for aace::navigation::Navigation, including all inherited members.

        - - - - - - - - - - -
        announceManeuver(const std::string &payload)=0aace::navigation::Navigationpure virtual
        announceRoadRegulation(RoadRegulation roadRegulation)=0aace::navigation::Navigationpure virtual
        cancelNavigation()=0aace::navigation::Navigationpure virtual
        ControlDisplay enum nameaace::navigation::Navigation
        getNavigationState()=0aace::navigation::Navigationpure virtual
        navigationError(ErrorType type, ErrorCode code, const std::string &description)aace::navigation::Navigation
        navigationEvent(EventName event)aace::navigation::Navigation
        showAlternativeRoutesSucceeded(const std::string &payload)aace::navigation::Navigation
        startNavigation(const std::string &payload)=0aace::navigation::Navigationpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1_navigation.html b/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1_navigation.html deleted file mode 100644 index d65e4e302..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1_navigation.html +++ /dev/null @@ -1,528 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::navigation::Navigation Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::navigation::Navigation Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        enum  ControlDisplay {
        -  ControlDisplay::SHOW_ROUTE_OVERVIEW, -
        -  ControlDisplay::SHOW_DIRECTIONS_LIST, -
        -  ControlDisplay::ZOOM_IN, -
        -  ControlDisplay::ZOOM_OUT, -
        -  ControlDisplay::CENTER_MAP_ON_CURRENT_LOCATION, -
        -  ControlDisplay::ORIENT_NORTH, -
        -  ControlDisplay::SCROLL_NORTH, -
        -  ControlDisplay::SCROLL_UP, -
        -  ControlDisplay::SCROLL_EAST, -
        -  ControlDisplay::SCROLL_RIGHT, -
        -  ControlDisplay::SCROLL_SOUTH, -
        -  ControlDisplay::SCROLL_DOWN, -
        -  ControlDisplay::SCROLL_WEST, -
        -  ControlDisplay::SCROLL_LEFT, -
        -  ControlDisplay::MUTE_ROUTE_GUIDANCE, -
        -  ControlDisplay::UNMUTE_ROUTE_GUIDANCE -
        - }
         
        - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual bool cancelNavigation ()=0
         
        virtual std::string getNavigationState ()=0
         
        virtual void startNavigation (const std::string &payload)=0
         
        virtual void announceManeuver (const std::string &payload)=0
         
        virtual void announceRoadRegulation (RoadRegulation roadRegulation)=0
         
        void navigationEvent (EventName event)
         
        void navigationError (ErrorType type, ErrorCode code, const std::string &description)
         
        void showAlternativeRoutesSucceeded (const std::string &payload)
         
        -

        Detailed Description

        -

        Navigation should be extended to handle navigation directives from the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Enumeration Documentation

        - -

        ◆ ControlDisplay

        - -
        -
        - - - - - -
        - - - - -
        enum aace::navigation::Navigation::ControlDisplay
        -
        -strong
        -
        - - - - - - - - - - - - - - - - - -
        Enumerator
        SHOW_ROUTE_OVERVIEW 

        A zoomed-out route overview for the active route.

        -
        SHOW_DIRECTIONS_LIST 

        A list of directions for the active route.

        -
        ZOOM_IN 

        Zoom in the map view.

        -
        ZOOM_OUT 

        Zoom out the map view.

        -
        CENTER_MAP_ON_CURRENT_LOCATION 

        Center the map on the user's current location.

        -
        ORIENT_NORTH 

        Rotate the map to align the north cardinal direction up.

        -
        SCROLL_NORTH 

        Scroll the map in the north cardinal direction.

        -
        SCROLL_UP 

        Scroll the map up, relative to the orientation shown on screen.

        -
        SCROLL_EAST 

        Scroll the map in the east cardinal direction.

        -
        SCROLL_RIGHT 

        Scroll the map right, relative to the orientation shown on screen.

        -
        SCROLL_SOUTH 

        Scroll the map in the south cardinal direction.

        -
        SCROLL_DOWN 

        Scroll the map down, relative to the orientation shown on screen.

        -
        SCROLL_WEST 

        Scroll the map in the west cardinal direction.

        -
        SCROLL_LEFT 

        Scroll the map left, relative to the orientation shown on screen.

        -
        MUTE_ROUTE_GUIDANCE 

        Mute the route guidance voice.

        -
        UNMUTE_ROUTE_GUIDANCE 

        Un-mute the route guidance voice.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ cancelNavigation()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual bool aace::navigation::Navigation::cancelNavigation ()
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to cancel navigation

        -
        Returns
        true if the platform implementation successfully handled the call, else false
        - -
        -
        - -

        ◆ getNavigationState()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual std::string aace::navigation::Navigation::getNavigationState ()
        -
        -pure virtual
        -
        -

        Retrieve the navigation state from the platform. NOTE: You may return an empty string to default the payload to NOT_NAVIGATING

        -
        Returns
        the current NavigationState JSON payload
        )
        "state": "{{STRING}}", //NAVIGATING or NOT_NAVIGATING
        "waypoints": [
        {
        "type": "{{STRING}}", //Type of the waypoint - SOURCE, DESTINATION or INTERIM
        "estimatedTimeOfArrival": {
        "ideal": {{STRING}}, //Expected clock time ETA based on the ideal conditions. ISO 8601 UTC format
        "predicted": {{STRING}} //predicted clock time ETA based on traffic conditions. ISO 8601 UTC format
        },
        "address": {
        "addressLine1": "{{STRING}}", //Address line 1
        "addressLine2": "{{STRING}}", //Address line 2
        "addressLine3": "{{STRING}}", //Address line 3
        "city": "{{STRING}}", //City
        "districtOrCounty": "{{STRING}}", //district or county
        "stateOrRegion": "{{STRING}}", //state or region
        "countryCode": "{{STRING}}", //3 letter country code
        "postalCode": "{{STRING}}", //postal code
        },
        "name": "{{STRING}}", // name of the waypoint such as home/starbucks etc.
        "coordinate": [{{LATITUDE_DOUBLE}},{{LONGITUDE_DOUBLE}}],
        },
        {
        "type": "{{STRING}}", //Type of the waypoint - SOURCE, DESTINATION or INTERIM
        "estimatedTimeOfArrival": {
        "ideal": {{STRING}}, //Expected clock time ETA based on the ideal conditions. ISO 8601 UTC format
        "predicted": {{STRING}} //predicted clock time ETA based on traffic conditions. ISO 8601 UTC format
        },
        "address": {
        "addressLine1": "{{STRING}}", //Address line 1
        "addressLine2": "{{STRING}}", //Address line 2
        "addressLine3": "{{STRING}}", //Address line 3
        "city": "{{STRING}}", //city
        "districtOrCounty": "{{STRING}}", //district or county
        "stateOrRegion": "{{STRING}}", // state or region
        "countryCode": "{{STRING}}", //3 letter country code
        "postalCode": "{{STRING}}", // postal code
        },
        "name": "{{STRING}}", // name of the waypoint such as home/starbucks etc.
        "coordinate": [{{LATITUDE_DOUBLE}},{{LONGITUDE_DOUBLE}}],
        "pointOfInterest": {
        "id": "{{STRING}}", //POI lookup Id vended from Alexa
        "hoursOfOperation": [
        {
        "dayOfWeek": "{{STRING}}",
        "hours": [
        {
        "open": "{{STRING}}", // ISO-8601 time with timezone format
        "close": "{{STRING}}" // ISO-8601 time with timezone format
        }
        ],
        "type": "{{STRING}}" // Can be: OPEN_DURING_HOURS, OPEN_24_HOURS, etc.
        }
        ],
        "phoneNumber": "{{STRING}}"
        }
        },
        ...
        ],
        "shapes": [
        [
        {{LATITUDE_DOUBLE}},
        {{LONGITUDE_DOUBLE}}
        ],
        [
        {{LATITUDE_DOUBLE}},
        {{LONGITUDE_DOUBLE}}
        ],
        ...
        ]
          -
        • state (required) : current navigation state
        • -
        • waypoints (required) : list of waypoints, which can be empty
        • -
        • shapes (required) : list of route shapes, which can be empty or limited to 100 entries
        • -
        -
        - -
        -
        - -

        ◆ startNavigation()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::navigation::Navigation::startNavigation (const std::string & payload)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to start the navigation

        -
        Parameters
        - - -
        [in]payloadJSON data containing the destination information
        )
        "transportationMode":"{{STRING}}",
        "waypoints":[
        {
        "type":"{{STRING}}",
        "estimatedTimeOfArrival":{
        "ideal":"{{STRING}}", //ISO-8601 time format
        "predicted":"{{STRING}}" //ISO-8601 time format
        },
        "address": {
        "addressLine1": "{{STRING}}", //Address line 1
        "addressLine2": "{{STRING}}", //Address line 2
        "addressLine3": "{{STRING}}", //Address line 3
        "city": "{{STRING}}", //city
        "districtOrCounty": "{{STRING}}", //district or county
        "stateOrRegion": "{{STRING}}", // state or region
        "countryCode": "{{STRING}}", //3 letter country code
        "postalCode": "{{STRING}}", // postal code
        },
        "coordinate":[
        "{{LATITUDE_DOUBLE}}",
        "{{LONGITUDE_DOUBLE}}"
        ],
        "name":"{{STRING}}"
        },
        {
        "type":"{{STRING}}",
        "estimatedTimeOfArrival":{
        "ideal":"{{STRING}}",
        "predicted":"{{STRING}}"
        },
        "address":"{{STRING}}",
        "coordinate":[
        "{{LATITUDE_DOUBLE}}",
        "{{LONGITUDE_DOUBLE}}"
        ],
        "name":"{{STRING}}"
        "poiOfInterest":{
        "id":"{{STRING}}",
        "hoursOfOperation":[
        {
        "dayOfWeek":"{{STRING}}",
        "hours":[
        {
        "open":"{{STRING}}",
        "close":"{{STRING}}"
        }
        ],
        "type":"{{STRING}}"
        }
        ],
        "phoneNumber":"{{STRING}}"
        }
        }
        ]
          -
        • transportationMode (optional) : Indicates the means by which to navigate to the destination (Values: BIKING, DRIVING, TRANSIT, WALKING)
        • -
        • waypoints (required) : list of waypoints, which can be empty
        • -
        • waypoints.type (required) : String from Enum Type of the waypoint - SOURCE, DESTINATION or INTERIM
        • -
        • estimatedTimeOfArrival (optional) : Arrival time at the destination
        • -
        • estimatedTimeOfArrival.ideal (optional) : Expected arrival time to the destination without considering any other signals such as traffic, diversions etc
        • -
        • estimatedTimeOfArrival.predicted (required) : Predicted arrival time to the destination based on traffic etc. In the case of actual and current matching, only current ETA will be populated
        • -
        • address (optional) : Waypoint address
        • -
        • address.addressLine1 (optional) : address line 1
        • -
        • address.addressLine2 (optional) : address line 2
        • -
        • address.addressLine3 (optional) : address line 3
        • -
        • address.city (optional) : city of destination address
        • -
        • address.stateOrRegion (optional) : city of destination address
        • -
        • address.countryCode (optional) : 3 letter country code in ISO 3166-1 alpha-3 format
        • -
        • address.districtOrCounty (optional) : district or county
        • -
        • address.postalCode (optional) : postal code
        • -
        • coordinate (required) : Contains the geolocation information of the destination
        • -
        • coordinate.latitudeInDegrees (required) : Latitude coordinate in degrees
        • -
        • coordinate.longitudeInDegrees (required) : Longitude coordinate in degrees
        • -
        • name (optional) : waypoint name
        • -
        • pointOfInterest (optional) : POI information related to the waypoint
        • -
        • pointOfInterest.id (optional) : Lookup Id for the POIs vended by Alexa
        • -
        • metadata.hoursOfOperation (optional) : Hours of operation for the business
        • -
        • hoursOfOperation.dayOfWeek (required) : Day of the week (Values: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY)
        • -
        • hoursOfOperation.hours (required): List of opening (open) and closing (close) hours for the day. Hours are in ISO-8601 time with timezone format
        • -
        • hoursOfOperation.type (required) : Indicates whether the location is open on this day or not (Values: OPEN_DURING_HOURS, OPEN_24_HOURS, CLOSED, UNKNOWN, HOLIDAY)
        • -
        • metadata.phoneNumber (optional) : The phone number of the location in E.164 format
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ announceManeuver()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::navigation::Navigation::announceManeuver (const std::string & payload)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to give details about a maneuver to next waypoint on the route or a completely different waypoint off route.

        -
        Parameters
        - - -
        [in]payloadJSON data containing the maneuver information
        )
        "maneuverType": "{{STRING}}", // requested maneuver type
        "queryTarget" : {
        "name": "{{STRING}}" // name of the requested location
        "address": { // address of requested location
        "addressLine1": "{{STRING}}", //Address line 1
        "addressLine2": "{{STRING}}", //Address line 2
        "addressLine3": "{{STRING}}", //Address line 3
        "city": "{{STRING}}", //city
        "districtOrCounty": "{{STRING}}", //district or county
        "stateOrRegion": "{{STRING}}", // state or region
        "countryCode": "{{STRING}}", //3 letter country code
        "postalCode": "{{STRING}}", // postal code
        },
        "coordinate": [{{LATITUDE_DOUBLE}},{{LONGITUDE_DOUBLE}}]
        }
          -
        • maneuverType (required) : Can take values : TURN, EXIT, ENTER, MERGE, LANE
        • -
        • queryTarget (optional) : Contains information about the targeted location on the route. If the location is a POI / user place / street address, Alexa will resolve and provide all 3 fields in the directive. If Alexa is not able to resolve the target, then at least one of the three fields will be present if a target was specified.
        • -
        • queryTarget.name (optional) : name of the requested location
        • -
        • queryTarget.coordinate (optional) : The geographic coordinates (lat, long) of the location as an ordered double list. (The order of the lat/long double list → [Latitude double , Longitude double])
        • -
        • queryTarget.address (optional) : Address of the requested location
        • -
        • queryTarget.address.addressLine1 (optional) : address line 1
        • -
        • queryTarget.address.addressLine2 (optional) : address line 2
        • -
        • queryTarget.address.addressLine3 (optional) : address line 3
        • -
        • queryTarget.address.city (optional) : city of destination address
        • -
        • queryTarget.address.stateOrRegion (optional) : city of destination address
        • -
        • queryTarget.address.countryCode (optional) : 3 letter country code in ISO 3166-1 alpha-3 format
        • -
        • queryTarget.address.districtOrCounty (optional) : district or county
        • -
        • queryTarget.address.postalCode (optional) : postal code
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ announceRoadRegulation()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::navigation::Navigation::announceRoadRegulation (RoadRegulation roadRegulation)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to give details about road regulations about the road segments that the user is on

        -
        Parameters
        - - -
        [in]roadRegulationType of road regulation requested.(Values: SPEED_LIMIT, CARPOOL_RULES)
        -
        -
        - -
        -
        - -

        ◆ navigationEvent()

        - -
        -
        - - - - - - - - -
        void aace::navigation::Navigation::navigationEvent (EventName event)
        -
        -

        Notifies the Engine of successful handling of a Navigation directive.

        -
        Parameters
        - - -
        [in]eventEventName describing which operation was successful.
          -
        • EventName values based on directive:
        • -
        • startNavigation(): NAVIGATION_STARTED
        • -
        • showPreviousWaypoints(): PREVIOUS_WAYPOINTS_SHOWN
        • -
        • navigateToPreviousWaypoint(): PREVIOUS_NAVIGATION_STARTED
        • -
        • controlDisplay(): ROUTE_OVERVIEW_SHOWN, DIRECTIONS_LIST_SHOWN, ZOOMED_IN, ZOOMED_OUT, MAP_CENTERED, ORIENTED_NORTH, SCROLLED_NORTH, SCROLLED_UP, SCROLLED_EAST, SCROLLED_RIGHT, SCROLLED_SOUTH, SCROLLED_DOWN, SCROLLED_WEST, SCROLLED_LEFT, ROUTE_GUIDANCE_MUTED, ROUTE_GUIDANCE_UNMUTED
        • -
        • announceManeuver(): TURN_GUIDANCE_ANNOUNCED, EXIT_GUIDANCE_ANNOUNCED, ENTER_GUIDANCE_ANNOUNCED, MERGE_GUIDANCE_ANNOUNCED, LANE_GUIDANCE_ANNOUNCED
        • -
        • announceRoadRegulation(): SPEED_LIMIT_REGULATION_ANNOUNCED, CARPOOL_RULES_REGULATION_ANNOUNCED
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ navigationError()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::navigation::Navigation::navigationError (ErrorType type,
        ErrorCode code,
        const std::string & description 
        )
        -
        -

        Notifies the Engine of error in handling a Navigation directive.

        -
        Parameters
        - - - - -
        typeErrorType describing which operation failed.
          -
        • ErrorType values based on directive:
        • -
        • startNavigation(): NAVIGATION_START_FAILED
        • -
        • showPreviousWaypoints(): SHOW_PREVIOUS_WAYPOINTS_FAILED
        • -
        • navigateToPreviousWaypoint(): PREVIOUS_NAVIGATION_START_FAILED
        • -
        • controlDisplay(): ROUTE_OVERVIEW_FAILED, DIRECTIONS_LIST_FAILED, ZOOM_IN_FAILED, ZOOM_OUT_FAILED, CENTER_FAILED, ORIENT_NORTH_FAILED, SCROLL_NORTH_FAILED, SCROLL_UP_FAILED, SCROLL_EAST_FAILED, SCROLL_RIGHT_FAILED, SCROLL_SOUTH_FAILED, SCROLL_DOWN_FAILED, SCROLL_WEST_FAILED, SCROLL_LEFT_FAILED, MUTED_ROUTE_GUIDANCE_FAILED, UNMUTED_ROUTE_GUIDANCE_FAILED
        • -
        • showAlternativeRoutes(): DEFAULT_ALTERNATE_ROUTES_FAILED, SHORTER_TIME_ROUTES_FAILED, SHORTER_DISTANCE_ROUTES_FAILED,
        • -
        • announceManeuver(): TURN_GUIDANCE_FAILED, EXIT_GUIDANCE_FAILED, ENTER_GUIDANCE_FAILED, MERGE_GUIDANCE_FAILED, LANE_GUIDANCE_FAILED,
        • -
        • announceRoadRegulation(): SPEED_LIMIT_REGULATION_FAILED, CARPOOL_RULES_REGULATION_FAILED
        • -
        -
        codeErrorCode describing the type of failure. (Values: INTERNAL_SERVICE_ERROR, ROUTE_NOT_FOUND, NO_PREVIOUS_WAYPOINTS, NOT_SUPPORTED, NOT_ALLOWED, NOT_NAVIGATING)
        descriptionString providing additional information.
        -
        -
        - -
        -
        - -

        ◆ showAlternativeRoutesSucceeded()

        - -
        -
        - - - - - - - - -
        void aace::navigation::Navigation::showAlternativeRoutesSucceeded (const std::string & payload)
        -
        -

        Notifies AVS of successful showing of alternative routes to the user

        -
        Parameters
        - - -
        [in]payloadJSON data containing the alternative route information
        )
        "inquiryType": "{{STRING}}" // DEFAULT, SHORTER_TIME, SHORTER_DISTANCE
        "alternateRoute":
        {
        "labels": ["{{STRING}}"],
        "savings": [
        {
        "type": "{{STRING}}", // DISTANCE, TIME
        "amount": {{FLOAT}},
        "unit": "{{STRING}}" // MINUTE, HOUR, YARD, FOOT, MILE, METER, KILOMETER
        }
        ]
        }
          -
        • inquiryType (required) : alternate route preference
        • -
        • alternateRoute (required) : The best route found that matches inquiryType.
        • -
        • labels (required) : Unique names within a route used to distinguish between alternative routes. The label might contain the direction of the route when passing by the detail.
        • -
        • savings (optional) : List of savings achieved by the route. Savings can be in: Time and/or Distance
        • -
        • savings.type (required) : The type of savings
        • -
        • savings.amount (required) : The amount of savings achieved by the route. Alexa will use prescribed unit to convert the amount of savings to improve the driver's experience, if needed.
        • -
        • savings.unit (required) : Measurement unit of the savings
        • -
        -
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1config_1_1_navigation_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1config_1_1_navigation_configuration-members.html deleted file mode 100644 index 3a8491879..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1config_1_1_navigation_configuration-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::navigation::config::NavigationConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::navigation::config::NavigationConfiguration, including all inherited members.

        - - -
        createNavigationConfig(const std::string &providerName)aace::navigation::config::NavigationConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1config_1_1_navigation_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1config_1_1_navigation_configuration.html deleted file mode 100644 index 5cb5014d8..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1navigation_1_1config_1_1_navigation_configuration.html +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::navigation::config::NavigationConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::navigation::config::NavigationConfiguration Class Reference
        -
        -
        - - - - -

        -Static Public Member Functions

        static std::shared_ptr< aace::core::config::EngineConfigurationcreateNavigationConfig (const std::string &providerName)
         
        -

        Detailed Description

        -

        A factory interface for creating Navigation configuration objects

        -

        Member Function Documentation

        - -

        ◆ createNavigationConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::navigation::config::NavigationConfiguration::createNavigationConfig (const std::string & providerName)
        -
        -static
        -
        -

        Factory method used to programmatically generate navigation configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.navigation": {
        "providerName": "<SERVICE_NAME>"
        }
        }
        Parameters
        - - -
        [in]providerNameThe navigation service provider name.
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider-members.html deleted file mode 100644 index f14b5d0dc..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::network::NetworkInfoProvider Member List
        -
        -
        - -

        This is the complete list of members for aace::network::NetworkInfoProvider, including all inherited members.

        - - - - - -
        getNetworkStatus()=0aace::network::NetworkInfoProviderpure virtual
        getWifiSignalStrength()=0aace::network::NetworkInfoProviderpure virtual
        NetworkStatus typedefaace::network::NetworkInfoProvider
        networkStatusChanged(NetworkStatus status, int wifiSignalStrength)aace::network::NetworkInfoProvider
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider.html b/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider.html deleted file mode 100644 index dc9cb3409..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::network::NetworkInfoProvider Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::network::NetworkInfoProvider Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        using NetworkStatus = aace::network::NetworkInfoProviderEngineInterface::NetworkStatus
         
        - - - - - - - -

        -Public Member Functions

        virtual NetworkStatus getNetworkStatus ()=0
         
        virtual int getWifiSignalStrength ()=0
         
        void networkStatusChanged (NetworkStatus status, int wifiSignalStrength)
         
        -

        Detailed Description

        -

        NetworkInfoProvider should be extended to report network connectivity events to the Engine.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ NetworkStatus

        - - -

        Member Function Documentation

        - -

        ◆ getNetworkStatus()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual NetworkStatus aace::network::NetworkInfoProvider::getNetworkStatus ()
        -
        -pure virtual
        -
        -

        Returns the current network connectivity status on the platform

        -
        Returns
        The connectivity status of the current network
        - -
        -
        - -

        ◆ getWifiSignalStrength()

        - -
        -
        - - - - - -
        - - - - - - - -
        virtual int aace::network::NetworkInfoProvider::getWifiSignalStrength ()
        -
        -pure virtual
        -
        -

        Returns the current signal strength (RSSI) of the WiFi connection on the platform

        -
        Returns
        The RSSI of the WiFi connection
        - -
        -
        - -

        ◆ networkStatusChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::network::NetworkInfoProvider::networkStatusChanged (NetworkStatus status,
        int wifiSignalStrength 
        )
        -
        -

        Notifies the Engine of a WiFi network status change on the platform

        -
        Parameters
        - - - -
        [in]statusThe connection status of the WiFi network
        [in]wifiSignalStrengthThe RSSI of the WiFi connection
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider_engine_interface-members.html deleted file mode 100644 index 34dafbe96..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider_engine_interface-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::network::NetworkInfoProviderEngineInterface Member List
        -
        -
        - -

        This is the complete list of members for aace::network::NetworkInfoProviderEngineInterface, including all inherited members.

        - - -
        NetworkStatus enum nameaace::network::NetworkInfoProviderEngineInterface
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider_engine_interface.html deleted file mode 100644 index 5b10bfdcf..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1network_1_1_network_info_provider_engine_interface.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::network::NetworkInfoProviderEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::network::NetworkInfoProviderEngineInterface Class Referenceabstract
        -
        -
        - - - - -

        -Public Types

        enum  NetworkStatus {
        -  NetworkStatus::UNKNOWN, -
        -  NetworkStatus::DISCONNECTED, -
        -  NetworkStatus::DISCONNECTING, -
        -  NetworkStatus::CONNECTED, -
        -  NetworkStatus::CONNECTING -
        - }
         
        -

        Detailed Description

        -

        Member Enumeration Documentation

        - -

        ◆ NetworkStatus

        - -
        -
        -

        Describes the status of network connectivity

        - - - - - - -
        Enumerator
        UNKNOWN 

        The network is unknown.

        -
        DISCONNECTED 

        The network is disconnected.

        -
        DISCONNECTING 

        The network is disconnecting.

        -
        CONNECTED 

        The network is connected.

        -
        CONNECTING 

        The network is connecting.

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller-members.html deleted file mode 100644 index c1e6d6a00..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller-members.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::phoneCallController::PhoneCallController Member List
        -
        -
        - -

        This is the complete list of members for aace::phoneCallController::PhoneCallController, including all inherited members.

        - - - - - - - - - - - - - - - - - - - -
        answer(const std::string &payload)=0aace::phoneCallController::PhoneCallControllerpure virtual
        callerIdReceived(const std::string &callId, const std::string &callerId)aace::phoneCallController::PhoneCallController
        CallError typedefaace::phoneCallController::PhoneCallController
        callFailed(const std::string &callId, CallError code, const std::string &message="")aace::phoneCallController::PhoneCallController
        CallingDeviceConfigurationProperty typedefaace::phoneCallController::PhoneCallController
        CallState typedefaace::phoneCallController::PhoneCallController
        callStateChanged(CallState state, const std::string &callId, const std::string &callerId="")aace::phoneCallController::PhoneCallController
        ConnectionState typedefaace::phoneCallController::PhoneCallController
        connectionStateChanged(ConnectionState state)aace::phoneCallController::PhoneCallController
        createCallId()aace::phoneCallController::PhoneCallController
        deviceConfigurationUpdated(std::unordered_map< CallingDeviceConfigurationProperty, bool > configurationMap)aace::phoneCallController::PhoneCallController
        dial(const std::string &payload)=0aace::phoneCallController::PhoneCallControllerpure virtual
        DTMFError typedefaace::phoneCallController::PhoneCallController
        redial(const std::string &payload)=0aace::phoneCallController::PhoneCallControllerpure virtual
        sendDTMF(const std::string &payload)=0aace::phoneCallController::PhoneCallControllerpure virtual
        sendDTMFFailed(const std::string &callId, DTMFError code, const std::string &message="")aace::phoneCallController::PhoneCallController
        sendDTMFSucceeded(const std::string &callId)aace::phoneCallController::PhoneCallController
        stop(const std::string &payload)=0aace::phoneCallController::PhoneCallControllerpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller.html b/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller.html deleted file mode 100644 index e82c24699..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller.html +++ /dev/null @@ -1,663 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::phoneCallController::PhoneCallController Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::phoneCallController::PhoneCallController Class Referenceabstract
        -
        -
        - - - - - - - - - - - - -

        -Public Types

        using ConnectionState = aace::phoneCallController::PhoneCallControllerEngineInterface::ConnectionState
         
        using CallState = aace::phoneCallController::PhoneCallControllerEngineInterface::CallState
         
        using CallingDeviceConfigurationProperty = aace::phoneCallController::PhoneCallControllerEngineInterface::CallingDeviceConfigurationProperty
         
        using CallError = aace::phoneCallController::PhoneCallControllerEngineInterface::CallError
         
        using DTMFError = aace::phoneCallController::PhoneCallControllerEngineInterface::DTMFError
         
        - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Public Member Functions

        virtual bool dial (const std::string &payload)=0
         
        virtual bool redial (const std::string &payload)=0
         
        virtual void answer (const std::string &payload)=0
         
        virtual void stop (const std::string &payload)=0
         
        virtual void sendDTMF (const std::string &payload)=0
         
        void connectionStateChanged (ConnectionState state)
         
        void callStateChanged (CallState state, const std::string &callId, const std::string &callerId="")
         
        void callFailed (const std::string &callId, CallError code, const std::string &message="")
         
        void callerIdReceived (const std::string &callId, const std::string &callerId)
         
        void sendDTMFSucceeded (const std::string &callId)
         
        void sendDTMFFailed (const std::string &callId, DTMFError code, const std::string &message="")
         
        void deviceConfigurationUpdated (std::unordered_map< CallingDeviceConfigurationProperty, bool > configurationMap)
         
        std::string createCallId ()
         
        -

        Detailed Description

        -

        PhoneCallController should be extended to allow a user to use Alexa to interact with a calling device such as a connected mobile phone. It provides interfaces for controlling inbound and outbound calls and for notifying the Engine of the state of a call session and the state of platform connection to a calling device.

        -

        The platform implementation is responsible for managing the lifecycle and user experience of a call session and connection to the calling device.

        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Typedef Documentation

        - -

        ◆ ConnectionState

        - - - -

        ◆ CallState

        - - - -

        ◆ CallingDeviceConfigurationProperty

        - - - -

        ◆ CallError

        - - - -

        ◆ DTMFError

        - -
        -
        -

        Describes an error preventing a DTMF signal from being delivered

        - -
        -
        -

        Member Function Documentation

        - -

        ◆ dial()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::phoneCallController::PhoneCallController::dial (const std::string & payload)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to initiate an outgoing phone call to the destination address

        -
        Parameters
        - - -
        [in]payloadDetails of the dial request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}",
        "callee": {
        "details": "{{STRING}}",
        "defaultContactAddress": {
        "protocol": "{{STRING}}",
        "format": "{{STRING}}",
        "value": "{{STRING}}"
        },
        "alternativeContactAddresses": [{
        "protocol": "{{STRING}}",
        "format": "{{STRING}}",
        "value": {{STRING}}
        }]
        },
        }
        }
          -
        • callId (required): A unique identifier for the call
        • -
        • callee (required): The destination of the outgoing call
        • -
        • callee.details (optional): Descriptive information about the callee
        • -
        • callee.defaultContactAddress (required): The default address to use for calling the callee
        • -
        • callee.alternativeContactAddresses (optional): An array of alternate addresses for the callee
        • -
        • address.protocol (required): The protocol for this address of the callee. One of PSTN, SIP, H.323
        • -
        • address.format (optional): The format for this address of the callee. One of E.164, E.163, E.123, MICROSOFT, DIN5008, RAW
        • -
        • address.value (required): The address of the callee.
        • -
        -
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call
        - -
        -
        - -

        ◆ redial()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual bool aace::phoneCallController::PhoneCallController::redial (const std::string & payload)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to redial the last called phone number.

        -

        After returning true, if no stored number is available to be redialed, PhoneCallController::callFailed with CallError::NO_NUMBER_FOR_REDIAL should be called.

        -
        Parameters
        - - -
        [in]payloadDetails of the redial request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}"
        }
          -
        • callId (required): A unique identifier for the call
        • -
        -
        -
        -
        -
        Returns
        true if the platform implementation successfully handled the call
        - -
        -
        - -

        ◆ answer()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::phoneCallController::PhoneCallController::answer (const std::string & payload)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to answer an inbound call

        -
        Parameters
        - - -
        [in]payloadDetails of the answer request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}",
        }
          -
        • callId (required): The unique identifier for the call to answer
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ stop()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::phoneCallController::PhoneCallController::stop (const std::string & payload)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to end an ongoing call or stop inbound or outbound call setup

        -
        Parameters
        - - -
        [in]payloadDetails of the stop request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}"
        }
          -
        • callId (required): The unique identifier for the call to be stopped
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ sendDTMF()

        - -
        -
        - - - - - -
        - - - - - - - - -
        virtual void aace::phoneCallController::PhoneCallController::sendDTMF (const std::string & payload)
        -
        -pure virtual
        -
        -

        Notifies the platform implementation to send a DTMF signal to the calling device

        -
        Parameters
        - - -
        [in]payloadDetails of the DTMF request in structured JSON format. See the following payload structure and the description of each field:
        {
        "callId": "{{STRING}}",
        "signal": "{{STRING}}"
        }
          -
        • callId (required): The unique identifier for the call
        • -
        • signal (required): The DTMF string to be sent to the calling device associated with the callId
        • -
        -
        -
        -
        - -
        -
        - -

        ◆ connectionStateChanged()

        - -
        -
        - - - - - - - - -
        void aace::phoneCallController::PhoneCallController::connectionStateChanged (ConnectionState state)
        -
        -

        Notifies the Engine of a change in connection to a calling device

        -
        Parameters
        - - -
        [in]stateThe state of connection to a calling device
        -
        -
        - -
        -
        - -

        ◆ callStateChanged()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::phoneCallController::PhoneCallController::callStateChanged (CallState state,
        const std::string & callId,
        const std::string & callerId = "" 
        )
        -
        -

        Notifies the Engine of a change in the state of an ongoing call

        -
        Parameters
        - - - - -
        [in]stateThe state of the call
        [in]callIdThe unique identifier associated with the call
        [in]callerIdThe identifier for a contact. May be included for CallState::CALL_RECEIVED
        -
        -
        - -
        -
        - -

        ◆ callFailed()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::phoneCallController::PhoneCallController::callFailed (const std::string & callId,
        CallError code,
        const std::string & message = "" 
        )
        -
        -

        Notifies the Engine of an error related to a call

        -
        Parameters
        - - - - -
        [in]callIdThe unique identifier for the call associated with the error
        [in]codeThe error type
        [in]messageA description of the error
        -
        -
        - -
        -
        - -

        ◆ callerIdReceived()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        void aace::phoneCallController::PhoneCallController::callerIdReceived (const std::string & callId,
        const std::string & callerId 
        )
        -
        -

        Notifies the Engine that a caller id was received for an inbound call

        -
        Parameters
        - - - -
        [in]callIdThe unique identifier for the call associated with the callId
        [in]callerIdThe caller's identifier or phone number
        -
        -
        - -
        -
        - -

        ◆ sendDTMFSucceeded()

        - -
        -
        - - - - - - - - -
        void aace::phoneCallController::PhoneCallController::sendDTMFSucceeded (const std::string & callId)
        -
        -

        Notifies the Engine that sending the DTMF signal succeeded.

        -
        Parameters
        - - -
        [in]callIdThe unique identifier for the associated call
        -
        -
        -
        See also
        PhoneCallController::sendDTMF
        - -
        -
        - -

        ◆ sendDTMFFailed()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        void aace::phoneCallController::PhoneCallController::sendDTMFFailed (const std::string & callId,
        DTMFError code,
        const std::string & message = "" 
        )
        -
        -

        Notifies the Engine that the DTMF signal could not be delivered to the remote party

        -
        Parameters
        - - - - -
        [in]callIdThe unique identifier for the associated call
        [in]codeThe error type
        [in]messageA description of the error
        -
        -
        -
        See also
        PhoneCallController::sendDTMF
        - -
        -
        - -

        ◆ deviceConfigurationUpdated()

        - -
        -
        - - - - - - - - -
        void aace::phoneCallController::PhoneCallController::deviceConfigurationUpdated (std::unordered_map< CallingDeviceConfigurationProperty, bool > configurationMap)
        -
        -

        Notifies the Engine of the calling feature configuration of the connected calling device. The configuration data may change if, for example, the connection mechanism to the calling device changes. The provided configuration will override the default or previous configuration.

        -

        See PhoneCallController::CallingDeviceConfigurationProperty for a description of each configurable feature

        -
        Parameters
        - - -
        [in]configurationMapA map of configuration properties to the boolean state of the properties
        -
        -
        - -
        -
        - -

        ◆ createCallId()

        - -
        -
        - - - - - - - -
        std::string aace::phoneCallController::PhoneCallController::createCallId ()
        -
        -

        Generates a unique identifier for a call

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface-members.html deleted file mode 100644 index f81be778a..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::phoneCallController::PhoneCallControllerEngineInterface Member List
        -
        - - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html b/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html deleted file mode 100644 index 51d3d27fd..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html +++ /dev/null @@ -1,306 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::phoneCallController::PhoneCallControllerEngineInterface Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::phoneCallController::PhoneCallControllerEngineInterface Class Referenceabstract
        -
        -
        - - - - - - - - - - - - -

        -Public Types

        enum  ConnectionState {
        -  ConnectionState::CONNECTED, -
        -  ConnectionState::DISCONNECTED -
        - }
         
        enum  CallState {
        -  CallState::IDLE, -
        -  CallState::DIALING, -
        -  CallState::OUTBOUND_RINGING, -
        -  CallState::ACTIVE, -
        -  CallState::CALL_RECEIVED, -
        -  CallState::INBOUND_RINGING -
        - }
         
        enum  CallingDeviceConfigurationProperty { CallingDeviceConfigurationProperty::DTMF_SUPPORTED - }
         
        enum  CallError {
        -  CallError::NO_CARRIER, -
        -  CallError::BUSY, -
        -  CallError::NO_ANSWER, -
        -  CallError::NO_NUMBER_FOR_REDIAL, -
        -  CallError::OTHER -
        - }
         
        enum  DTMFError {
        -  DTMFError::CALL_NOT_IN_PROGRESS, -
        -  DTMFError::DTMF_FAILED -
        - }
         
        -

        Detailed Description

        -

        Member Enumeration Documentation

        - -

        ◆ ConnectionState

        - -
        -
        -

        Describes the state of connection to a calling device

        -
        See also
        PhoneCallController::connectionStateChanged
        - - - -
        Enumerator
        CONNECTED 

        A calling device is connected.

        -
        DISCONNECTED 

        No calling device is connected.

        -
        - -
        -
        - -

        ◆ CallState

        - -
        -
        -

        Describes the state of a call

        -
        See also
        PhoneCallController::callStateChanged
        - - - - - - - -
        Enumerator
        IDLE 

        The call is not in an active state. The following are possible transitions to IDLE state:

          -
        • While in DIALING or OUTBOUND_RINGING, the user requested to hang up or cancel the outbound call
        • -
        • While in ACTIVE state, the user hangs up the active call.
        • -
        • While in CALL_RECEIVED or INBOUND_RINGING state, the user requested to ignore or reject the inbound call.
        • -
        -
        DIALING 

        The outbound call is initiated by the user. Call setup is in progress.

        -
        OUTBOUND_RINGING 

        The outbound call has been set up, and the remote party is alerted.

        -
        ACTIVE 

        The call is active, and media is being transmitted between the caller and remote party. The following are possible transitions to ACTIVE state:

          -
        • While in DIALING or OUTBOUND_RINGING, outbound call setup is successfully completed.
        • -
        • While in INBOUND_RINGING, the user accepted the call, and setup is completed.
        • -
        • When transitioning from DISCONNECTED to CONNECTED, and the calling device is already in an active call.
        • -
        -
        CALL_RECEIVED 

        An alert for the inbound call has been received.

        -
        INBOUND_RINGING 

        The inbound call is ringing.

        -
        - -
        -
        - -

        ◆ CallingDeviceConfigurationProperty

        - -
        -
        -

        Describes a configuration property of a connected calling device. Configure properties with PhoneCallController::deviceConfigurationUpdated

        - - -
        Enumerator
        DTMF_SUPPORTED 

        Whether the device supports DTMF signaling. Set true to indicate support for DTMF. Set false when DTMF signaling is not implemented or the current calling device configuration does not support DTMF. Default setting: false

        -
        - -
        -
        - -

        ◆ CallError

        - -
        -
        -

        Describes an error for a failed call

        -
        See also
        PhoneCallController::callFailed
        - - - - - - -
        Enumerator
        NO_CARRIER 

        No carrier is available on the calling device.

        -
        BUSY 

        The calling device is busy when setting up an outbound call, such as when a call is already in progress.

        -
        NO_ANSWER 

        The remote party did not answer the call.

        -
        NO_NUMBER_FOR_REDIAL 

        Redial was requested, but there is no previously dialed number available.

        -
        OTHER 

        Generic error

        -
        - -
        -
        - -

        ◆ DTMFError

        - -
        -
        -

        Describes an error preventing a DTMF signal from being delivered

        -
        See also
        PhoneCallController::sendDTMFFailed
        - - - -
        Enumerator
        CALL_NOT_IN_PROGRESS 

        There is no active call through which a DTMF signal can be sent.

        -
        DTMF_FAILED 

        Generic DTMF error

        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1property_manager_1_1_property_manager-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1property_manager_1_1_property_manager-members.html deleted file mode 100644 index 2b55ff435..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1property_manager_1_1_property_manager-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::propertyManager::PropertyManager Member List
        -
        -
        - -

        This is the complete list of members for aace::propertyManager::PropertyManager, including all inherited members.

        - - - - - -
        getProperty(const std::string &name)aace::propertyManager::PropertyManager
        propertyChanged(const std::string &name, const std::string &newValue)=0aace::propertyManager::PropertyManagerpure virtual
        propertyStateChanged(const std::string &name, const std::string &value, const PropertyState state)=0aace::propertyManager::PropertyManagerpure virtual
        setProperty(const std::string &name, const std::string &value)aace::propertyManager::PropertyManager
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1property_manager_1_1_property_manager.html b/docs/docs/doxygen-docs/cpp/classaace_1_1property_manager_1_1_property_manager.html deleted file mode 100644 index 1cc5c04ed..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1property_manager_1_1_property_manager.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::propertyManager::PropertyManager Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::propertyManager::PropertyManager Class Referenceabstract
        -
        -
        - - - - - - - - - - -

        -Public Member Functions

        bool setProperty (const std::string &name, const std::string &value)
         
        virtual void propertyStateChanged (const std::string &name, const std::string &value, const PropertyState state)=0
         
        std::string getProperty (const std::string &name)
         
        virtual void propertyChanged (const std::string &name, const std::string &newValue)=0
         
        -

        Detailed Description

        -

        PropertyManager should be extended to set and retrieve Engine property settings and be notified of property changes.

        -
        See also
        aace::alexa::property::AlexaProperties.h
        -
        -aace::core::property::CoreProperties.h
        -
        -aace::network::property::NetworkProperties.h
        -
        -aace::vehicle::property::VehicleProperties.h
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ setProperty()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        bool aace::propertyManager::PropertyManager::setProperty (const std::string & name,
        const std::string & value 
        )
        -
        -

        Sets a property value in the Engine. setProperty() is an asynchronous operation and the Engine will call propertyStateChanged() with the status when it is completed.

        -
        Parameters
        - - - -
        [in]nameThe name used by the Engine to identify the property. The property name must be one of the property constants recognized by the Engine, e.g. the properties in aace::alexa::property::AlexaProperties.h.
        [in]valueThe property setting
        -
        -
        -
        Returns
        true if the property value was updated or set to the current setting, else false if an error occurred.
        - -
        -
        - -

        ◆ propertyStateChanged()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::propertyManager::PropertyManager::propertyStateChanged (const std::string & name,
        const std::string & value,
        const PropertyState state 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of the status of a property change after a call to setProperty().

        -
        Parameters
        - - - - -
        [in]nameThe name used by the Engine to identify the property.
        [in]valueThe property value.
        [in]stateThe state of the property change.
        -
        -
        - -
        -
        - -

        ◆ getProperty()

        - -
        -
        - - - - - - - - -
        std::string aace::propertyManager::PropertyManager::getProperty (const std::string & name)
        -
        -

        Retrieves the setting for the property identified by name from the Engine.

        -
        Note
        After calling setProperty(), getProperty() will return the updated value only after the Engine calls propertyStateChanged() with PropertyState::SUCCEEDED.
        -
        Parameters
        - - -
        [in]nameThe name used by the Engine to identify the property. The property name must be one of the property constants recognized by the Engine, e.g. the properties in aace::alexa::property::AlexaProperties.h
        -
        -
        -
        Returns
        The property value as a string, or an empty string if the property value was not found
        - -
        -
        - -

        ◆ propertyChanged()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::propertyManager::PropertyManager::propertyChanged (const std::string & name,
        const std::string & newValue 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of a property setting change in the Engine.

        Note
        This will not be called if the property setting change was initiated by PropertyManager::setProperty()
        -
        Parameters
        - - - -
        [in]nameThe name used by the Engine to identify the property.
        [in]newValueThe new value of the property
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1storage_1_1config_1_1_storage_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1storage_1_1config_1_1_storage_configuration-members.html deleted file mode 100644 index ab53a90d6..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1storage_1_1config_1_1_storage_configuration-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::storage::config::StorageConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::storage::config::StorageConfiguration, including all inherited members.

        - - -
        createLocalStorageConfig(const std::string &localStoragePath)aace::storage::config::StorageConfigurationstatic
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1storage_1_1config_1_1_storage_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1storage_1_1config_1_1_storage_configuration.html deleted file mode 100644 index 11fb2ab25..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1storage_1_1config_1_1_storage_configuration.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::storage::config::StorageConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::storage::config::StorageConfiguration Class Reference
        -
        -
        - - - - -

        -Static Public Member Functions

        static std::shared_ptr< aace::core::config::EngineConfigurationcreateLocalStorageConfig (const std::string &localStoragePath)
         
        -

        Detailed Description

        -

        The StorageConfiguration class is a factory interface for creating Storage service configuration objects.

        -

        Member Function Documentation

        - -

        ◆ createLocalStorageConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::storage::config::StorageConfiguration::createLocalStorageConfig (const std::string & localStoragePath)
        -
        -static
        -
        -

        Factory method used to programmatically generate storage configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.storage": {
        "localStoragePath": "<LOCAL_STORAGE_FILE_PATH>"
        }
        }
        Parameters
        - - -
        [in]localStoragePathThe file path to the local storage data file
        -
        -
        -

        The database will be created on initialization if it does not already exist.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1text_to_speech_1_1_text_to_speech-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1text_to_speech_1_1_text_to_speech-members.html deleted file mode 100644 index e40f0ef56..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1text_to_speech_1_1_text_to_speech-members.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::textToSpeech::TextToSpeech Member List
        -
        -
        - -

        This is the complete list of members for aace::textToSpeech::TextToSpeech, including all inherited members.

        - - - - - - -
        capabilitiesReceived(const std::string &requestId, const std::string &capabilities)=0aace::textToSpeech::TextToSpeechpure virtual
        getCapabilities(const std::string &requestId, const std::string &provider)aace::textToSpeech::TextToSpeech
        prepareSpeech(const std::string &speechId, const std::string &text, const std::string &provider, const std::string &options="")aace::textToSpeech::TextToSpeech
        prepareSpeechCompleted(const std::string &speechId, std::shared_ptr< aace::audio::AudioStream > preparedAudio, const std::string &metadata)=0aace::textToSpeech::TextToSpeechpure virtual
        prepareSpeechFailed(const std::string &speechId, const std::string &reason)=0aace::textToSpeech::TextToSpeechpure virtual
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1text_to_speech_1_1_text_to_speech.html b/docs/docs/doxygen-docs/cpp/classaace_1_1text_to_speech_1_1_text_to_speech.html deleted file mode 100644 index 5e7bbf382..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1text_to_speech_1_1_text_to_speech.html +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::textToSpeech::TextToSpeech Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::textToSpeech::TextToSpeech Class Referenceabstract
        -
        -
        - - - - - - - - - - - - -

        -Public Member Functions

        bool prepareSpeech (const std::string &speechId, const std::string &text, const std::string &provider, const std::string &options="")
         
        bool getCapabilities (const std::string &requestId, const std::string &provider)
         
        virtual void prepareSpeechCompleted (const std::string &speechId, std::shared_ptr< aace::audio::AudioStream > preparedAudio, const std::string &metadata)=0
         
        virtual void prepareSpeechFailed (const std::string &speechId, const std::string &reason)=0
         
        virtual void capabilitiesReceived (const std::string &requestId, const std::string &capabilities)=0
         
        -

        Detailed Description

        -

        The TextToSpeech platform interface should be extended to allow the platform to synthesize Alexa and non-Alexa speech using a text or a SSML document.

        -

        The platform implementation is responsible for making request for speech synthesis and requesting capabilities of any Text To Speech provider. The platform should also handle callbacks for each prepareSpeech() and getCapabilities() requests.

        -
        Note
        The TextToSpeech platform is not responsible for the playback of the synthesized speech.
        -
        Deprecated:
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        See also
        aace::core::MessageBroker
        -

        Member Function Documentation

        - -

        ◆ prepareSpeech()

        - -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        bool aace::textToSpeech::TextToSpeech::prepareSpeech (const std::string & speechId,
        const std::string & text,
        const std::string & provider,
        const std::string & options = "" 
        )
        -
        -

        Notifies the Engine to prepare a speech asset with speechId and text. This is an asynchronous call. The platform is notified about the result of this operation through the prepareSpeechCompleted() or prepareSpeechFailed() callbacks.

        -
        Parameters
        - - - - - -
        [in]speechIdThe unique identifier of the speech asset.
        [in]textThe text in plain or SSML format.
        [in]providerThe Text To Speech provider to be used to generate the speech asset. This parameter should be "text-to-speech-provider" since there is only one provider in Auto SDK.
        [in]optionsAdditional options for the speech synthesis request. Default value is empty string which generates speech in Alexa's voice. This parameter need not be specified if the speech synthesis is expected to be in Alexa's voice
        -
        -
        -

        Sample options payload :

        )
        {
        "requestPayload" : {
        // Payload defined by the Text To Speech provider
        }
        }

        Refer to the Text to Speech provider module documentation for complete details of the requestPayload schema.

        Returns
        true if the request was successful, else false if an error occurred.
        - -
        -
        - -

        ◆ getCapabilities()

        - -
        -
        - - - - - - - - - - - - - - - - - - -
        bool aace::textToSpeech::TextToSpeech::getCapabilities (const std::string & requestId,
        const std::string & provider 
        )
        -
        -

        Retrieves the capabilities of the provider.

        -

        This is an asynchronous call. The result of the operation is provided by the capabilitiesReceived() callback.

        Parameters
        - - - -
        [in]providerThe unique identifier of the provider. This parameter should be "text-to-speech-provider" since there is only one provider in Auto SDK.
        [in]requestIdThe unique identifier for this request.
        -
        -
        -
        Returns
        true if the request was successful, else false if an error occurred.
        - -
        -
        - -

        ◆ prepareSpeechCompleted()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - - - - - - - -
        virtual void aace::textToSpeech::TextToSpeech::prepareSpeechCompleted (const std::string & speechId,
        std::shared_ptr< aace::audio::AudioStream > preparedAudio,
        const std::string & metadata 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation that the prepareSpeech() operation of speech asset with speechId was successful.

        -
        Parameters
        - - - - -
        [in]speechIdThe unique identifier of the speech asset.
        [in]preparedAudioThe audio asset.
        [in]metadataThe metadata of the speech asset.
        -
        -
        -

        Refer to the Text to Speech provider module documentation for complete details of the metadata schema.

        - -
        -
        - -

        ◆ prepareSpeechFailed()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::textToSpeech::TextToSpeech::prepareSpeechFailed (const std::string & speechId,
        const std::string & reason 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation that the prepareSpeech() operation for the speech asset with speechId failed.

        -
        Parameters
        - - - -
        [in]idThe unique identifier of the speech asset.
        [in]reasonThe reason for the failure.
        -
        -
        -

        Refer to the Text to Speech provider module documentation for complete details of the error responses.

        - -
        -
        - -

        ◆ capabilitiesReceived()

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        virtual void aace::textToSpeech::TextToSpeech::capabilitiesReceived (const std::string & requestId,
        const std::string & capabilities 
        )
        -
        -pure virtual
        -
        -

        Notifies the platform implementation of a Text to Speech provider's capabilities. The requestId corresponds to the ID from the original getCapabilities() request.

        -
        Parameters
        - - - -
        [in]capabilitiesThe capabilities corresponding to a Text to Speech provider.
        [in]requestIdThe unique identifier for the original getCapabilities() request.
        -
        -
        -

        Refer to the Text to Speech provider module documentation for complete details of the capabilities payload.

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html b/docs/docs/doxygen-docs/cpp/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html deleted file mode 100644 index 4dc6e4491..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::vehicle::config::VehicleConfiguration Member List
        -
        -
        - -

        This is the complete list of members for aace::vehicle::config::VehicleConfiguration, including all inherited members.

        - - - - - -
        createOperatingCountryConfig(const std::string &operatingCountry)aace::vehicle::config::VehicleConfigurationstatic
        createVehicleInfoConfig(const std::vector< VehicleProperty > &propertyList)aace::vehicle::config::VehicleConfigurationstatic
        VehicleProperty typedefaace::vehicle::config::VehicleConfiguration
        VehiclePropertyType enum nameaace::vehicle::config::VehicleConfiguration
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html b/docs/docs/doxygen-docs/cpp/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html deleted file mode 100644 index c8c397730..000000000 --- a/docs/docs/doxygen-docs/cpp/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::vehicle::config::VehicleConfiguration Class Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::vehicle::config::VehicleConfiguration Class Reference
        -
        -
        - - - - - - -

        -Public Types

        enum  VehiclePropertyType {
        -  VehiclePropertyType::MAKE, -
        -  VehiclePropertyType::MODEL, -
        -  VehiclePropertyType::YEAR, -
        -  VehiclePropertyType::TRIM, -
        -  VehiclePropertyType::GEOGRAPHY, -
        -  VehiclePropertyType::VERSION, -
        -  VehiclePropertyType::OPERATING_SYSTEM, -
        -  VehiclePropertyType::HARDWARE_ARCH, -
        -  VehiclePropertyType::LANGUAGE, -
        -  VehiclePropertyType::MICROPHONE, -
        -  VehiclePropertyType::VEHICLE_IDENTIFIER, -
        -  VehiclePropertyType::ENGINE_TYPE, -
        -  VehiclePropertyType::RSE_EMBEDDED_FIRETVS -
        - }
         
        using VehicleProperty = std::pair< VehiclePropertyType, std::string >
         
        - - - - - -

        -Static Public Member Functions

        static std::shared_ptr< aace::core::config::EngineConfigurationcreateVehicleInfoConfig (const std::vector< VehicleProperty > &propertyList)
         
        static std::shared_ptr< aace::core::config::EngineConfigurationcreateOperatingCountryConfig (const std::string &operatingCountry)
         
        -

        Detailed Description

        -

        The VehicleConfiguration class is a factory interface for creating "aace.vehicle" configuration objects.

        -

        Member Typedef Documentation

        - -

        ◆ VehicleProperty

        - -
        -
        -

        Identifies a vehicle property with a type and value pair

        - -
        -
        -

        Member Enumeration Documentation

        - -

        ◆ VehiclePropertyType

        - -
        -
        -

        Specifies the vehicle properties required in configuration

        - - - - - - - - - - - - - - -
        Enumerator
        MAKE 

        The make of the vehicle.

        Note
        This property is required.
        -
        MODEL 

        The model of the vehicle.

        Note
        This property is required.
        -
        YEAR 

        The model year of the vehicle. A value of this property type must be an integer in the range 1900-2100. Example value: "2019"

        Note
        This property is required.
        -
        TRIM 

        The trim level of the vehicle, identifying the vehicle's level of equipment or special features. Example values: "Standard", "Sport", "Limited"

        -
        GEOGRAPHY 

        The current location (country/region/state/etc.) of the vehicle. Example values: "US", "US-North", "WA"

        -
        VERSION 

        The client software version. Example value: "2.2.1X"

        -
        OPERATING_SYSTEM 

        The operating system used by the vehicle's infotainment system. Example value: "AndroidOreo_8.1"

        -
        HARDWARE_ARCH 

        The hardware architecture used by the vehicle. Example value: "x86_64"

        -
        LANGUAGE 

        The language or locale selected for Alexa by the vehicle owner. Example values: "en-US", "fr-CA"

        -
        MICROPHONE 

        The type and arrangement of microphone used by the vehicle. Example value: "7 mic array, centrally mounted"

        -
        VEHICLE_IDENTIFIER 

        The automaker's identifier for the vehicle.

        -
        ENGINE_TYPE 

        The engine type for the vehicle.

        -
        RSE_EMBEDDED_FIRETVS 

        The number of RSE embedded FireTVs installed in the vehicle.

        -
        - -
        -
        -

        Member Function Documentation

        - -

        ◆ createVehicleInfoConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::vehicle::config::VehicleConfiguration::createVehicleInfoConfig (const std::vector< VehicleProperty > & propertyList)
        -
        -static
        -
        -

        Factory method used to programmatically generate "aace.vehicle" vehicle info configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.vehicle":
        {
        "info": {
        "make": "<MAKE>",
        "model": "<MODEL>",
        "year": "<YEAR>",
        "trim": "<TRIM>",
        "geography": "<GEOGRAPHY>",
        "version": "<SOFTWARE_VERSION>",
        "os": "<OPERATING_SYSTEM>",
        "arch": "<HARDWARE_ARCH>",
        "language": "<LANGUAGE>",
        "microphone": "<MICROPHONE>",
        "vehicleIdentifier": "<VEHICLE_IDENTIFIER>",
        "engineType": "<ENGINE_TYPE>",
        "rseEmbeddedFireTvs": "<RSE_EMBEDDED_FIRETVS>"
        }
        }
        }
        Parameters
        - - -
        [in]propertyListA list of VehicleProperty type and value pairs
        -
        -
        - -
        -
        - -

        ◆ createOperatingCountryConfig()

        - -
        -
        - - - - - -
        - - - - - - - - -
        static std::shared_ptr<aace::core::config::EngineConfiguration> aace::vehicle::config::VehicleConfiguration::createOperatingCountryConfig (const std::string & operatingCountry)
        -
        -static
        -
        -

        Factory method used to programmatically generate vehicle operating country configuration data. The data generated by this method is equivalent to providing the following JSON values in a configuration file:

        -
        {
        "aace.vehicle": {
        "operatingCountry": "<COUNTRY>"
        }
        }
        Parameters
        - - -
        [in]operatingCountryA 2-letter ISO country code
        -
        -
        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/classes.html b/docs/docs/doxygen-docs/cpp/classes.html deleted file mode 100644 index fd72e08c4..000000000 --- a/docs/docs/doxygen-docs/cpp/classes.html +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Index - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        -
        Class Index
        -
        -
        -
        a | b | c | d | e | f | g | i | l | m | n | p | s | t | v
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          a  
        -
        AddressBook (aace::addressBook)   
        AddressBookConfiguration (aace::addressBook::config)   
        Alerts (aace::alexa)   
        AlertsEngineInterface (aace::alexa)   
        AlexaClient (aace::alexa)   
        AlexaClientEngineInterface (aace::alexa)   
        AlexaConfiguration (aace::alexa::config)   
        AlexaConnectivity (aace::connectivity)   
        AlexaSpeaker (aace::alexa)   
        AlexaSpeakerEngineInterface (aace::alexa)   
        APL (aace::apl)   
        APLConfiguration (aace::apl::config)   
        AudioInputProvider (aace::audio)   
        AudioOutput (aace::audio)   
        AudioOutputProvider (aace::audio)   
        AudioPlayer (aace::alexa)   
        AudioPlayerEngineInterface (aace::alexa)   
        AudioStreamProperty (aace::audio)   
        Authorization (aace::authorization)   
        AuthorizationEngineInterface (aace::authorization)   
        ExternalMediaAdapter::AuthorizedPlayerInfo (aace::alexa)   
        AuthProvider (aace::alexa)   
        AuthProviderEngineInterface (aace::alexa)   
          b  
        -
        BluetoothProvider (aace::bluetooth)   
          c  
        -
        CarControl (aace::carControl)   
        CarControlConfiguration (aace::carControl::config)   
        CBL (aace::cbl)   
        CBLConfiguration (aace::cbl::config)   
        ConfigurationFile (aace::core::config)   
        AlexaClient::ConnectionStatusInfo (aace::alexa)   
          d  
        -
        MetricsUploader::Datapoint (aace::metrics)   
        DeviceSetup (aace::alexa)   
        DeviceSetupEngineInterface (aace::alexa)   
        DeviceUsage (aace::deviceUsage)   
        DeviceUsageEngineInterface (aace::deviceUsage)   
        ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo (aace::alexa)   
        DoNotDisturb (aace::alexa)   
        DoNotDisturbEngineInterface (aace::alexa)   
          e  
        -
        Engine (aace::core)   
        EngineConfiguration (aace::core::config)   
        EqualizerController (aace::alexa)   
        EqualizerControllerEngineInterface (aace::alexa)   
        ExternalMediaAdapter (aace::alexa)   
        ExternalMediaAdapterEngineInterface (aace::alexa)   
        ExternalMediaAdapter::ExternalMediaAdapterState (aace::alexa)   
          f  
        -
        FeatureDiscoveryEngineInterface (aace::alexa)   
          g  
        -
        GlobalPreset (aace::alexa)   
          i  
        -
        AddressBook::IAddressBookEntriesFactory (aace::addressBook)   
          l  
        -
        LocalMediaSource (aace::alexa)   
        LocalMediaSourceEngineInterface (aace::alexa)   
        LocalMediaSource::LocalMediaSourceState (aace::alexa)   
        Location (aace::location)   
        LocationProvider (aace::location)   
        LocationProviderEngineInterface (aace::location)   
        Logger (aace::logger)   
        LoggerConfiguration (aace::logger::config)   
        LoggerEngineInterface (aace::logger)   
          m  
        -
        MediaPlaybackRequestor (aace::alexa)   
        MediaPlaybackRequestorEngineInterface (aace::alexa)   
        MessageBroker (aace::core)   
        Messaging (aace::messaging)   
        MetricsUploader (aace::metrics)   
          n  
        -
        Navigation (aace::navigation)   
        NavigationConfiguration (aace::navigation::config)   
        NetworkInfoProvider (aace::network)   
        NetworkInfoProviderEngineInterface (aace::network)   
        Notifications (aace::alexa)   
          p  
        -
        PhoneCallController (aace::phoneCallController)   
        PhoneCallControllerEngineInterface (aace::phoneCallController)   
        PlatformInterface (aace::core)   
        PlaybackController (aace::alexa)   
        PlaybackControllerEngineInterface (aace::alexa)   
        ExternalMediaAdapter::PlaybackState (aace::alexa)   
        LocalMediaSource::PlaybackState (aace::alexa)   
        PropertyManager (aace::propertyManager)   
          s  
        -
        ExternalMediaAdapter::SessionState (aace::alexa)   
        LocalMediaSource::SessionState (aace::alexa)   
        SpeechRecognizer (aace::alexa)   
        SpeechRecognizerEngineInterface (aace::alexa)   
        SpeechSynthesizer (aace::alexa)   
        StorageConfiguration (aace::storage::config)   
        StreamConfiguration (aace::core::config)   
          t  
        -
        TemplateRuntime (aace::alexa)   
        TemplateRuntimeEngineInterface (aace::alexa)   
        TextToSpeech (aace::textToSpeech)   
          v  
        -
        VehicleConfiguration (aace::vehicle::config)   
        -
        a | b | c | d | e | f | g | i | l | m | n | p | s | t | v
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/closed.png b/docs/docs/doxygen-docs/cpp/closed.png deleted file mode 100644 index 98cc2c909..000000000 Binary files a/docs/docs/doxygen-docs/cpp/closed.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/deprecated.html b/docs/docs/doxygen-docs/cpp/deprecated.html deleted file mode 100644 index 6d6b5c1a9..000000000 --- a/docs/docs/doxygen-docs/cpp/deprecated.html +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - -Alexa Auto SDK: Deprecated List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - -
        -
        -
        -
        Deprecated List
        -
        -
        -
        -
        Class aace::addressBook::AddressBook
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName (const std::string &entryId, const std::string &name)=0
        -
        This function is deprecated. Use addEntry() instead.
        -
        Member aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName (const std::string &entryId, const std::string &firstName, const std::string &lastName)=0
        -
        This function is deprecated. Use addEntry() instead.
        -
        Member aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName (const std::string &entryId, const std::string &firstName, const std::string &lastName, const std::string &nickname, const std::string &phoneticFirstName="", const std::string &phoneticLastName="")=0
        -
        This function is deprecated. Use addEntry() instead.
        -
        Member aace::addressBook::AddressBook::IAddressBookEntriesFactory::addPhone (const std::string &entryId, const std::string &label, const std::string &number)=0
        -
        This function is deprecated. Use addEntry() instead.
        -
        Member aace::addressBook::AddressBook::IAddressBookEntriesFactory::addPostalAddress (const std::string &entryId, const std::string &label, const std::string &addressLine1, const std::string &addressLine2, const std::string &addressLine3, const std::string &city, const std::string &stateOrRegion, const std::string &districtOrCounty, const std::string &postalCode, const std::string &country, float latitudeInDegrees, float longitudeInDegrees, float accuracyInMeters)=0
        -
        This function is deprecated. Use addEntry() instead.
        -
        Class aace::alexa::Alerts
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::AlexaClient
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::AlexaSpeaker
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::AudioPlayer
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::AuthProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member aace::alexa::AuthProvider::AuthError
        -
        This enum is being deprecated as this platform interface is being deprecated.
        -
        Member aace::alexa::AuthProvider::authFailure (const std::string &token)
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::alexa::AuthProvider::AuthState
        -
        This enum is being deprecated as this platform interface is being deprecated.
        -
        Member aace::alexa::AuthProvider::authStateChanged (AuthState authState, AuthError authError)
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::alexa::AuthProvider::getAuthState ()=0
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::alexa::AuthProvider::getAuthToken ()=0
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::alexa::config::AlexaConfiguration::createSettingsConfig (const std::string &databaseFilePath, const std::string &locale="en-US")
        -
        Use AlexaConfiguration::createDeviceSettingsConfig().
        -
        Class aace::alexa::DeviceSetup
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::DoNotDisturb
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::EqualizerController
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::ExternalMediaAdapter
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::GlobalPreset
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member aace::alexa::GlobalPreset::setGlobalPreset (int preset)=0
        -
        Use LocalMediaSource class with DEFAULT source with LocalMediaSource::ContentSelector::PRESET instead Called after receiving a global preset play directive
        -
        Class aace::alexa::LocalMediaSource
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member aace::alexa::LocalMediaSource::play (ContentSelector contentSelectorType, const std::string &payload)
        -
        This function will be removed very soon. Use the new LocalMediaSource::play(ContentSelector contentSelectorType, const std::string& payload, const std::string& sessionId) instead Called when the user calls play with a content selection type
        -
        Member aace::alexa::LocalMediaSource::setFocus (bool focusAcquire=true)
        -
        This function will be removed very soon. Use the LocalMediaSource::playerEvent(const std::string& eventName, const std::string& sessionId) instead with playbackSessionStarted and playbackSessionEnded events Should be called on local media source player events. This will switch the media focus to that context. Note: PlaybackSessionStarted and PlaybackSessionEnded handles the setFocus(true) and setFocus(false) internally. Do not call the deprecated setFocus method.
        -
        Class aace::alexa::Notifications
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::PlaybackController
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::SpeechRecognizer
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::SpeechSynthesizer
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::alexa::TemplateRuntime
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::apl::APL
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::audio::AudioInputProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::audio::AudioOutputProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::authorization::Authorization
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::carControl::CarControl
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member aace::carControl::config::CarControlConfiguration::addDefaultAssetsPath (const std::string &path)=0
        -
        -
        Class aace::cbl::CBL
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Member aace::cbl::CBL::cancel ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::CBL::CBLState
        -
        This enum is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::CBL::cblStateChanged (CBLState state, CBLStateChangedReason reason, const std::string &url, const std::string &code)=0
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::CBL::CBLStateChangedReason
        -
        This enum is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::CBL::clearRefreshToken ()=0
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::CBL::getRefreshToken ()=0
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::CBL::reset ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::CBL::setRefreshToken (const std::string &refreshToken)=0
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::CBL::setUserProfile (const std::string &name, const std::string &email)=0
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::CBL::start ()
        -
        This method is being deprecated as this platform interface is being deprecated.
        -
        Member aace::cbl::config::CBLConfiguration::createCBLUserProfileConfig (bool enableUserProfile)
        -
        This method is deprecated, use createCBLConfig instead.
        -
        Class aace::connectivity::AlexaConnectivity
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::location::LocationProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::logger::Logger
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::messaging::Messaging
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::metrics::MetricsUploader
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::navigation::Navigation
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::network::NetworkInfoProvider
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::phoneCallController::PhoneCallController
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::propertyManager::PropertyManager
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        Class aace::textToSpeech::TextToSpeech
        -
        This platform interface is deprecated. Use the Alexa Auto Services Bridge (AASB) message broker to publish and subscribe to AASB messages instead.
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/doc.png b/docs/docs/doxygen-docs/cpp/doc.png deleted file mode 100644 index 17edabff9..000000000 Binary files a/docs/docs/doxygen-docs/cpp/doc.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/doxygen.css b/docs/docs/doxygen-docs/cpp/doxygen.css deleted file mode 100644 index 4f1ab9195..000000000 --- a/docs/docs/doxygen-docs/cpp/doxygen.css +++ /dev/null @@ -1,1596 +0,0 @@ -/* The standard CSS for doxygen 1.8.13 */ - -body, table, div, p, dl { - font: 400 14px/22px Roboto,sans-serif; -} - -p.reference, p.definition { - font: 400 14px/22px Roboto,sans-serif; -} - -/* @group Heading Levels */ - -h1.groupheader { - font-size: 150%; -} - -.title { - font: 400 14px/28px Roboto,sans-serif; - font-size: 150%; - font-weight: bold; - margin: 10px 2px; -} - -h2.groupheader { - border-bottom: 1px solid #879ECB; - color: #354C7B; - font-size: 150%; - font-weight: normal; - margin-top: 1.75em; - padding-top: 8px; - padding-bottom: 4px; - width: 100%; -} - -h3.groupheader { - font-size: 100%; -} - -h1, h2, h3, h4, h5, h6 { - -webkit-transition: text-shadow 0.5s linear; - -moz-transition: text-shadow 0.5s linear; - -ms-transition: text-shadow 0.5s linear; - -o-transition: text-shadow 0.5s linear; - transition: text-shadow 0.5s linear; - margin-right: 15px; -} - -h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { - text-shadow: 0 0 15px cyan; -} - -dt { - font-weight: bold; -} - -div.multicol { - -moz-column-gap: 1em; - -webkit-column-gap: 1em; - -moz-column-count: 3; - -webkit-column-count: 3; -} - -p.startli, p.startdd { - margin-top: 2px; -} - -p.starttd { - margin-top: 0px; -} - -p.endli { - margin-bottom: 0px; -} - -p.enddd { - margin-bottom: 4px; -} - -p.endtd { - margin-bottom: 2px; -} - -/* @end */ - -caption { - font-weight: bold; -} - -span.legend { - font-size: 70%; - text-align: center; -} - -h3.version { - font-size: 90%; - text-align: center; -} - -div.qindex, div.navtab{ - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; -} - -div.qindex, div.navpath { - width: 100%; - line-height: 140%; -} - -div.navtab { - margin-right: 15px; -} - -/* @group Link Styling */ - -a { - color: #3D578C; - font-weight: normal; - text-decoration: none; -} - -.contents a:visited { - color: #4665A2; -} - -a:hover { - text-decoration: underline; -} - -a.qindex { - font-weight: bold; -} - -a.qindexHL { - font-weight: bold; - background-color: #9CAFD4; - color: #ffffff; - border: 1px double #869DCA; -} - -.contents a.qindexHL:visited { - color: #ffffff; -} - -a.el { - font-weight: bold; -} - -a.elRef { -} - -a.code, a.code:visited, a.line, a.line:visited { - color: #4665A2; -} - -a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { - color: #4665A2; -} - -/* @end */ - -dl.el { - margin-left: -1cm; -} - -pre.fragment { - border: 1px solid #C4CFE5; - background-color: #FBFCFD; - padding: 4px 6px; - margin: 4px 8px 4px 2px; - overflow: auto; - word-wrap: break-word; - font-size: 9pt; - line-height: 125%; - font-family: monospace, fixed; - font-size: 105%; -} - -div.fragment { - padding: 0px; - margin: 4px 8px 4px 2px; - background-color: #FBFCFD; - border: 1px solid #C4CFE5; -} - -div.line { - font-family: monospace, fixed; - font-size: 13px; - min-height: 13px; - line-height: 1.0; - text-wrap: unrestricted; - white-space: -moz-pre-wrap; /* Moz */ - white-space: -pre-wrap; /* Opera 4-6 */ - white-space: -o-pre-wrap; /* Opera 7 */ - white-space: pre-wrap; /* CSS3 */ - word-wrap: break-word; /* IE 5.5+ */ - text-indent: -53px; - padding-left: 53px; - padding-bottom: 0px; - margin: 0px; - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -div.line:after { - content:"\000A"; - white-space: pre; -} - -div.line.glow { - background-color: cyan; - box-shadow: 0 0 10px cyan; -} - - -span.lineno { - padding-right: 4px; - text-align: right; - border-right: 2px solid #0F0; - background-color: #E8E8E8; - white-space: pre; -} -span.lineno a { - background-color: #D8D8D8; -} - -span.lineno a:hover { - background-color: #C8C8C8; -} - -.lineno { - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -div.ah, span.ah { - background-color: black; - font-weight: bold; - color: #ffffff; - margin-bottom: 3px; - margin-top: 3px; - padding: 0.2em; - border: solid thin #333; - border-radius: 0.5em; - -webkit-border-radius: .5em; - -moz-border-radius: .5em; - box-shadow: 2px 2px 3px #999; - -webkit-box-shadow: 2px 2px 3px #999; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); - background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); -} - -div.classindex ul { - list-style: none; - padding-left: 0; -} - -div.classindex span.ai { - display: inline-block; -} - -div.groupHeader { - margin-left: 16px; - margin-top: 12px; - font-weight: bold; -} - -div.groupText { - margin-left: 16px; - font-style: italic; -} - -body { - background-color: white; - color: black; - margin: 0; -} - -div.contents { - margin-top: 10px; - margin-left: 12px; - margin-right: 8px; -} - -td.indexkey { - background-color: #EBEFF6; - font-weight: bold; - border: 1px solid #C4CFE5; - margin: 2px 0px 2px 0; - padding: 2px 10px; - white-space: nowrap; - vertical-align: top; -} - -td.indexvalue { - background-color: #EBEFF6; - border: 1px solid #C4CFE5; - padding: 2px 10px; - margin: 2px 0px; -} - -tr.memlist { - background-color: #EEF1F7; -} - -p.formulaDsp { - text-align: center; -} - -img.formulaDsp { - -} - -img.formulaInl { - vertical-align: middle; -} - -div.center { - text-align: center; - margin-top: 0px; - margin-bottom: 0px; - padding: 0px; -} - -div.center img { - border: 0px; -} - -address.footer { - text-align: right; - padding-right: 12px; -} - -img.footer { - border: 0px; - vertical-align: middle; -} - -/* @group Code Colorization */ - -span.keyword { - color: #008000 -} - -span.keywordtype { - color: #604020 -} - -span.keywordflow { - color: #e08000 -} - -span.comment { - color: #800000 -} - -span.preprocessor { - color: #806020 -} - -span.stringliteral { - color: #002080 -} - -span.charliteral { - color: #008080 -} - -span.vhdldigit { - color: #ff00ff -} - -span.vhdlchar { - color: #000000 -} - -span.vhdlkeyword { - color: #700070 -} - -span.vhdllogic { - color: #ff0000 -} - -blockquote { - background-color: #F7F8FB; - border-left: 2px solid #9CAFD4; - margin: 0 24px 0 4px; - padding: 0 12px 0 16px; -} - -/* @end */ - -/* -.search { - color: #003399; - font-weight: bold; -} - -form.search { - margin-bottom: 0px; - margin-top: 0px; -} - -input.search { - font-size: 75%; - color: #000080; - font-weight: normal; - background-color: #e8eef2; -} -*/ - -td.tiny { - font-size: 75%; -} - -.dirtab { - padding: 4px; - border-collapse: collapse; - border: 1px solid #A3B4D7; -} - -th.dirtab { - background: #EBEFF6; - font-weight: bold; -} - -hr { - height: 0px; - border: none; - border-top: 1px solid #4A6AAA; -} - -hr.footer { - height: 1px; -} - -/* @group Member Descriptions */ - -table.memberdecls { - border-spacing: 0px; - padding: 0px; -} - -.memberdecls td, .fieldtable tr { - -webkit-transition-property: background-color, box-shadow; - -webkit-transition-duration: 0.5s; - -moz-transition-property: background-color, box-shadow; - -moz-transition-duration: 0.5s; - -ms-transition-property: background-color, box-shadow; - -ms-transition-duration: 0.5s; - -o-transition-property: background-color, box-shadow; - -o-transition-duration: 0.5s; - transition-property: background-color, box-shadow; - transition-duration: 0.5s; -} - -.memberdecls td.glow, .fieldtable tr.glow { - background-color: cyan; - box-shadow: 0 0 15px cyan; -} - -.mdescLeft, .mdescRight, -.memItemLeft, .memItemRight, -.memTemplItemLeft, .memTemplItemRight, .memTemplParams { - background-color: #F9FAFC; - border: none; - margin: 4px; - padding: 1px 0 0 8px; -} - -.mdescLeft, .mdescRight { - padding: 0px 8px 4px 8px; - color: #555; -} - -.memSeparator { - border-bottom: 1px solid #DEE4F0; - line-height: 1px; - margin: 0px; - padding: 0px; -} - -.memItemLeft, .memTemplItemLeft { - white-space: nowrap; -} - -.memItemRight { - width: 100%; -} - -.memTemplParams { - color: #4665A2; - white-space: nowrap; - font-size: 80%; -} - -/* @end */ - -/* @group Member Details */ - -/* Styles for detailed member documentation */ - -.memtitle { - padding: 8px; - border-top: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - border-top-right-radius: 4px; - border-top-left-radius: 4px; - margin-bottom: -1px; - background-image: url('nav_f.png'); - background-repeat: repeat-x; - background-color: #E2E8F2; - line-height: 1.25; - font-weight: 300; - float:left; -} - -.permalink -{ - font-size: 65%; - display: inline-block; - vertical-align: middle; -} - -.memtemplate { - font-size: 80%; - color: #4665A2; - font-weight: normal; - margin-left: 9px; -} - -.memnav { - background-color: #EBEFF6; - border: 1px solid #A3B4D7; - text-align: center; - margin: 2px; - margin-right: 15px; - padding: 2px; -} - -.mempage { - width: 100%; -} - -.memitem { - padding: 0; - margin-bottom: 10px; - margin-right: 5px; - -webkit-transition: box-shadow 0.5s linear; - -moz-transition: box-shadow 0.5s linear; - -ms-transition: box-shadow 0.5s linear; - -o-transition: box-shadow 0.5s linear; - transition: box-shadow 0.5s linear; - display: table !important; - width: 100%; -} - -.memitem.glow { - box-shadow: 0 0 15px cyan; -} - -.memname { - font-weight: 400; - margin-left: 6px; -} - -.memname td { - vertical-align: bottom; -} - -.memproto, dl.reflist dt { - border-top: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 0px 6px 0px; - color: #253555; - font-weight: bold; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - background-color: #DFE5F1; - /* opera specific markup */ - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - border-top-right-radius: 4px; - /* firefox specific markup */ - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - -moz-border-radius-topright: 4px; - /* webkit specific markup */ - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - -webkit-border-top-right-radius: 4px; - -} - -.overload { - font-family: "courier new",courier,monospace; - font-size: 65%; -} - -.memdoc, dl.reflist dd { - border-bottom: 1px solid #A8B8D9; - border-left: 1px solid #A8B8D9; - border-right: 1px solid #A8B8D9; - padding: 6px 10px 2px 10px; - background-color: #FBFCFD; - border-top-width: 0; - background-image:url('nav_g.png'); - background-repeat:repeat-x; - background-color: #FFFFFF; - /* opera specific markup */ - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; - box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); - /* firefox specific markup */ - -moz-border-radius-bottomleft: 4px; - -moz-border-radius-bottomright: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; - /* webkit specific markup */ - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -dl.reflist dt { - padding: 5px; -} - -dl.reflist dd { - margin: 0px 0px 10px 0px; - padding: 5px; -} - -.paramkey { - text-align: right; -} - -.paramtype { - white-space: nowrap; -} - -.paramname { - color: #602020; - white-space: nowrap; -} -.paramname em { - font-style: normal; -} -.paramname code { - line-height: 14px; -} - -.params, .retval, .exception, .tparams { - margin-left: 0px; - padding-left: 0px; -} - -.params .paramname, .retval .paramname { - font-weight: bold; - vertical-align: top; -} - -.params .paramtype { - font-style: italic; - vertical-align: top; -} - -.params .paramdir { - font-family: "courier new",courier,monospace; - vertical-align: top; -} - -table.mlabels { - border-spacing: 0px; -} - -td.mlabels-left { - width: 100%; - padding: 0px; -} - -td.mlabels-right { - vertical-align: bottom; - padding: 0px; - white-space: nowrap; -} - -span.mlabels { - margin-left: 8px; -} - -span.mlabel { - background-color: #728DC1; - border-top:1px solid #5373B4; - border-left:1px solid #5373B4; - border-right:1px solid #C4CFE5; - border-bottom:1px solid #C4CFE5; - text-shadow: none; - color: white; - margin-right: 4px; - padding: 2px 3px; - border-radius: 3px; - font-size: 7pt; - white-space: nowrap; - vertical-align: middle; -} - - - -/* @end */ - -/* these are for tree view inside a (index) page */ - -div.directory { - margin: 10px 0px; - border-top: 1px solid #9CAFD4; - border-bottom: 1px solid #9CAFD4; - width: 100%; -} - -.directory table { - border-collapse:collapse; -} - -.directory td { - margin: 0px; - padding: 0px; - vertical-align: top; -} - -.directory td.entry { - white-space: nowrap; - padding-right: 6px; - padding-top: 3px; -} - -.directory td.entry a { - outline:none; -} - -.directory td.entry a img { - border: none; -} - -.directory td.desc { - width: 100%; - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - border-left: 1px solid rgba(0,0,0,0.05); -} - -.directory tr.even { - padding-left: 6px; - background-color: #F7F8FB; -} - -.directory img { - vertical-align: -30%; -} - -.directory .levels { - white-space: nowrap; - width: 100%; - text-align: right; - font-size: 9pt; -} - -.directory .levels span { - cursor: pointer; - padding-left: 2px; - padding-right: 2px; - color: #3D578C; -} - -.arrow { - color: #9CAFD4; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: pointer; - font-size: 80%; - display: inline-block; - width: 16px; - height: 22px; -} - -.icon { - font-family: Arial, Helvetica; - font-weight: bold; - font-size: 12px; - height: 14px; - width: 16px; - display: inline-block; - background-color: #728DC1; - color: white; - text-align: center; - border-radius: 4px; - margin-left: 2px; - margin-right: 2px; -} - -.icona { - width: 24px; - height: 22px; - display: inline-block; -} - -.iconfopen { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderopen.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.iconfclosed { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('folderclosed.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -.icondoc { - width: 24px; - height: 18px; - margin-bottom: 4px; - background-image:url('doc.png'); - background-position: 0px -4px; - background-repeat: repeat-y; - vertical-align:top; - display: inline-block; -} - -table.directory { - font: 400 14px Roboto,sans-serif; -} - -/* @end */ - -div.dynheader { - margin-top: 8px; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -address { - font-style: normal; - color: #2A3D61; -} - -table.doxtable caption { - caption-side: top; -} - -table.doxtable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.doxtable td, table.doxtable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.doxtable th { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -table.fieldtable { - /*width: 100%;*/ - margin-bottom: 10px; - border: 1px solid #A8B8D9; - border-spacing: 0px; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; - -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; - -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); - box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); -} - -.fieldtable td, .fieldtable th { - padding: 3px 7px 2px; -} - -.fieldtable td.fieldtype, .fieldtable td.fieldname { - white-space: nowrap; - border-right: 1px solid #A8B8D9; - border-bottom: 1px solid #A8B8D9; - vertical-align: top; -} - -.fieldtable td.fieldname { - padding-top: 3px; -} - -.fieldtable td.fielddoc { - border-bottom: 1px solid #A8B8D9; - /*width: 100%;*/ -} - -.fieldtable td.fielddoc p:first-child { - margin-top: 0px; -} - -.fieldtable td.fielddoc p:last-child { - margin-bottom: 2px; -} - -.fieldtable tr:last-child td { - border-bottom: none; -} - -.fieldtable th { - background-image:url('nav_f.png'); - background-repeat:repeat-x; - background-color: #E2E8F2; - font-size: 90%; - color: #253555; - padding-bottom: 4px; - padding-top: 5px; - text-align:left; - font-weight: 400; - -moz-border-radius-topleft: 4px; - -moz-border-radius-topright: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom: 1px solid #A8B8D9; -} - - -.tabsearch { - top: 0px; - left: 10px; - height: 36px; - background-image: url('tab_b.png'); - z-index: 101; - overflow: hidden; - font-size: 13px; -} - -.navpath ul -{ - font-size: 11px; - background-image:url('tab_b.png'); - background-repeat:repeat-x; - background-position: 0 -5px; - height:30px; - line-height:30px; - color:#8AA0CC; - border:solid 1px #C2CDE4; - overflow:hidden; - margin:0px; - padding:0px; -} - -.navpath li -{ - list-style-type:none; - float:left; - padding-left:10px; - padding-right:15px; - background-image:url('bc_s.png'); - background-repeat:no-repeat; - background-position:right; - color:#364D7C; -} - -.navpath li.navelem a -{ - height:32px; - display:block; - text-decoration: none; - outline: none; - color: #283A5D; - font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); - text-decoration: none; -} - -.navpath li.navelem a:hover -{ - color:#6884BD; -} - -.navpath li.footer -{ - list-style-type:none; - float:right; - padding-left:10px; - padding-right:15px; - background-image:none; - background-repeat:no-repeat; - background-position:right; - color:#364D7C; - font-size: 8pt; -} - - -div.summary -{ - float: right; - font-size: 8pt; - padding-right: 5px; - width: 50%; - text-align: right; -} - -div.summary a -{ - white-space: nowrap; -} - -table.classindex -{ - margin: 10px; - white-space: nowrap; - margin-left: 3%; - margin-right: 3%; - width: 94%; - border: 0; - border-spacing: 0; - padding: 0; -} - -div.ingroups -{ - font-size: 8pt; - width: 50%; - text-align: left; -} - -div.ingroups a -{ - white-space: nowrap; -} - -div.header -{ - background-image:url('nav_h.png'); - background-repeat:repeat-x; - background-color: #F9FAFC; - margin: 0px; - border-bottom: 1px solid #C4CFE5; -} - -div.headertitle -{ - padding: 5px 5px 5px 10px; -} - -dl -{ - padding: 0 0 0 10px; -} - -/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ -dl.section -{ - margin-left: 0px; - padding-left: 0px; -} - -dl.note -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #D0C000; -} - -dl.warning, dl.attention -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #FF0000; -} - -dl.pre, dl.post, dl.invariant -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00D000; -} - -dl.deprecated -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #505050; -} - -dl.todo -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #00C0E0; -} - -dl.test -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #3030E0; -} - -dl.bug -{ - margin-left:-7px; - padding-left: 3px; - border-left:4px solid; - border-color: #C08050; -} - -dl.section dd { - margin-bottom: 6px; -} - - -#projectlogo -{ - text-align: center; - vertical-align: bottom; - border-collapse: separate; -} - -#projectlogo img -{ - border: 0px none; -} - -#projectalign -{ - vertical-align: middle; -} - -#projectname -{ - font: 300% Tahoma, Arial,sans-serif; - margin: 0px; - padding: 2px 0px; -} - -#projectbrief -{ - font: 120% Tahoma, Arial,sans-serif; - margin: 0px; - padding: 0px; -} - -#projectnumber -{ - font: 50% Tahoma, Arial,sans-serif; - margin: 0px; - padding: 0px; -} - -#titlearea -{ - padding: 0px; - margin: 0px; - width: 100%; - border-bottom: 1px solid #5373B4; -} - -.image -{ - text-align: center; -} - -.dotgraph -{ - text-align: center; -} - -.mscgraph -{ - text-align: center; -} - -.plantumlgraph -{ - text-align: center; -} - -.diagraph -{ - text-align: center; -} - -.caption -{ - font-weight: bold; -} - -div.zoom -{ - border: 1px solid #90A5CE; -} - -dl.citelist { - margin-bottom:50px; -} - -dl.citelist dt { - color:#334975; - float:left; - font-weight:bold; - margin-right:10px; - padding:5px; -} - -dl.citelist dd { - margin:2px 0; - padding:5px 0; -} - -div.toc { - padding: 14px 25px; - background-color: #F4F6FA; - border: 1px solid #D8DFEE; - border-radius: 7px 7px 7px 7px; - float: right; - height: auto; - margin: 0 8px 10px 10px; - width: 200px; -} - -div.toc li { - background: url("bdwn.png") no-repeat scroll 0 5px transparent; - font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; - margin-top: 5px; - padding-left: 10px; - padding-top: 2px; -} - -div.toc h3 { - font: bold 12px/1.2 Arial,FreeSans,sans-serif; - color: #4665A2; - border-bottom: 0 none; - margin: 0; -} - -div.toc ul { - list-style: none outside none; - border: medium none; - padding: 0px; -} - -div.toc li.level1 { - margin-left: 0px; -} - -div.toc li.level2 { - margin-left: 15px; -} - -div.toc li.level3 { - margin-left: 30px; -} - -div.toc li.level4 { - margin-left: 45px; -} - -.inherit_header { - font-weight: bold; - color: gray; - cursor: pointer; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.inherit_header td { - padding: 6px 0px 2px 5px; -} - -.inherit { - display: none; -} - -tr.heading h2 { - margin-top: 12px; - margin-bottom: 4px; -} - -/* tooltip related style info */ - -.ttc { - position: absolute; - display: none; -} - -#powerTip { - cursor: default; - white-space: nowrap; - background-color: white; - border: 1px solid gray; - border-radius: 4px 4px 4px 4px; - box-shadow: 1px 1px 7px gray; - display: none; - font-size: smaller; - max-width: 80%; - opacity: 0.9; - padding: 1ex 1em 1em; - position: absolute; - z-index: 2147483647; -} - -#powerTip div.ttdoc { - color: grey; - font-style: italic; -} - -#powerTip div.ttname a { - font-weight: bold; -} - -#powerTip div.ttname { - font-weight: bold; -} - -#powerTip div.ttdeci { - color: #006318; -} - -#powerTip div { - margin: 0px; - padding: 0px; - font: 12px/16px Roboto,sans-serif; -} - -#powerTip:before, #powerTip:after { - content: ""; - position: absolute; - margin: 0px; -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.s:after, #powerTip.s:before, -#powerTip.w:after, #powerTip.w:before, -#powerTip.e:after, #powerTip.e:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.nw:after, #powerTip.nw:before, -#powerTip.sw:after, #powerTip.sw:before { - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; -} - -#powerTip.n:after, #powerTip.s:after, -#powerTip.w:after, #powerTip.e:after, -#powerTip.nw:after, #powerTip.ne:after, -#powerTip.sw:after, #powerTip.se:after { - border-color: rgba(255, 255, 255, 0); -} - -#powerTip.n:before, #powerTip.s:before, -#powerTip.w:before, #powerTip.e:before, -#powerTip.nw:before, #powerTip.ne:before, -#powerTip.sw:before, #powerTip.se:before { - border-color: rgba(128, 128, 128, 0); -} - -#powerTip.n:after, #powerTip.n:before, -#powerTip.ne:after, #powerTip.ne:before, -#powerTip.nw:after, #powerTip.nw:before { - top: 100%; -} - -#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { - border-top-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} -#powerTip.n:before { - border-top-color: #808080; - border-width: 11px; - margin: 0px -11px; -} -#powerTip.n:after, #powerTip.n:before { - left: 50%; -} - -#powerTip.nw:after, #powerTip.nw:before { - right: 14px; -} - -#powerTip.ne:after, #powerTip.ne:before { - left: 14px; -} - -#powerTip.s:after, #powerTip.s:before, -#powerTip.se:after, #powerTip.se:before, -#powerTip.sw:after, #powerTip.sw:before { - bottom: 100%; -} - -#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { - border-bottom-color: #ffffff; - border-width: 10px; - margin: 0px -10px; -} - -#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { - border-bottom-color: #808080; - border-width: 11px; - margin: 0px -11px; -} - -#powerTip.s:after, #powerTip.s:before { - left: 50%; -} - -#powerTip.sw:after, #powerTip.sw:before { - right: 14px; -} - -#powerTip.se:after, #powerTip.se:before { - left: 14px; -} - -#powerTip.e:after, #powerTip.e:before { - left: 100%; -} -#powerTip.e:after { - border-left-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.e:before { - border-left-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -#powerTip.w:after, #powerTip.w:before { - right: 100%; -} -#powerTip.w:after { - border-right-color: #ffffff; - border-width: 10px; - top: 50%; - margin-top: -10px; -} -#powerTip.w:before { - border-right-color: #808080; - border-width: 11px; - top: 50%; - margin-top: -11px; -} - -@media print -{ - #top { display: none; } - #side-nav { display: none; } - #nav-path { display: none; } - body { overflow:visible; } - h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } - .summary { display: none; } - .memitem { page-break-inside: avoid; } - #doc-content - { - margin-left:0 !important; - height:auto !important; - width:auto !important; - overflow:inherit; - display:inline; - } -} - -/* @group Markdown */ - -/* -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTableHead tr { -} - -table.markdownTableBodyLeft td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -th.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft { - text-align: left -} - -th.markdownTableHeadRight { - text-align: right -} - -th.markdownTableHeadCenter { - text-align: center -} -*/ - -table.markdownTable { - border-collapse:collapse; - margin-top: 4px; - margin-bottom: 4px; -} - -table.markdownTable td, table.markdownTable th { - border: 1px solid #2D4068; - padding: 3px 7px 2px; -} - -table.markdownTable tr { -} - -th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { - background-color: #374F7F; - color: #FFFFFF; - font-size: 110%; - padding-bottom: 4px; - padding-top: 5px; -} - -th.markdownTableHeadLeft, td.markdownTableBodyLeft { - text-align: left -} - -th.markdownTableHeadRight, td.markdownTableBodyRight { - text-align: right -} - -th.markdownTableHeadCenter, td.markdownTableBodyCenter { - text-align: center -} - - -/* @end */ diff --git a/docs/docs/doxygen-docs/cpp/doxygen.png b/docs/docs/doxygen-docs/cpp/doxygen.png deleted file mode 100644 index 3ff17d807..000000000 Binary files a/docs/docs/doxygen-docs/cpp/doxygen.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/dynsections.js b/docs/docs/doxygen-docs/cpp/dynsections.js deleted file mode 100644 index 85e183690..000000000 --- a/docs/docs/doxygen-docs/cpp/dynsections.js +++ /dev/null @@ -1,97 +0,0 @@ -function toggleVisibility(linkObj) -{ - var base = $(linkObj).attr('id'); - var summary = $('#'+base+'-summary'); - var content = $('#'+base+'-content'); - var trigger = $('#'+base+'-trigger'); - var src=$(trigger).attr('src'); - if (content.is(':visible')===true) { - content.hide(); - summary.show(); - $(linkObj).addClass('closed').removeClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); - } else { - content.show(); - summary.hide(); - $(linkObj).removeClass('closed').addClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); - } - return false; -} - -function updateStripes() -{ - $('table.directory tr'). - removeClass('even').filter(':visible:even').addClass('even'); -} - -function toggleLevel(level) -{ - $('table.directory tr').each(function() { - var l = this.id.split('_').length-1; - var i = $('#img'+this.id.substring(3)); - var a = $('#arr'+this.id.substring(3)); - if (l - - - - - - -Alexa Auto SDK: Class Members - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        Here is a list of all documented class members with links to the class documentation for each member:
        - -

        - a -

        - - -

        - b -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - f -

        - - -

        - g -

        - - -

        - h -

        - - -

        - i -

        - - -

        - l -

        - - -

        - m -

        - - -

        - n -

        - - -

        - o -

        - - -

        - p -

        - - -

        - r -

        - - -

        - s -

        - - -

        - t -

        - - -

        - u -

        - - -

        - v -

        - - -

        - w -

        - - -

        - ~ -

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/functions_enum.html b/docs/docs/doxygen-docs/cpp/functions_enum.html deleted file mode 100644 index 5ab6bfd59..000000000 --- a/docs/docs/doxygen-docs/cpp/functions_enum.html +++ /dev/null @@ -1,246 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Members - Enumerations - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -  - -

        - a -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - f -

        - - -

        - i -

        - - -

        - l -

        - - -

        - m -

        - - -

        - n -

        - - -

        - p -

        - - -

        - s -

        - - -

        - t -

        - - -

        - v -

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/functions_func.html b/docs/docs/doxygen-docs/cpp/functions_func.html deleted file mode 100644 index d59e68532..000000000 --- a/docs/docs/doxygen-docs/cpp/functions_func.html +++ /dev/null @@ -1,993 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Members - Functions - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -  - -

        - a -

        - - -

        - b -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - g -

        - - -

        - h -

        - - -

        - i -

        - - -

        - l -

        - - -

        - m -

        - - -

        - n -

        - - -

        - o -

        - - -

        - p -

        - - -

        - r -

        - - -

        - s -

        - - -

        - t -

        - - -

        - u -

        - - -

        - v -

        - - -

        - w -

        - - -

        - ~ -

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/functions_type.html b/docs/docs/doxygen-docs/cpp/functions_type.html deleted file mode 100644 index cf97ee09d..000000000 --- a/docs/docs/doxygen-docs/cpp/functions_type.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Members - Typedefs - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -  - -

        - a -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - f -

        - - -

        - i -

        - - -

        - l -

        - - -

        - m -

        - - -

        - n -

        - - -

        - p -

        - - -

        - s -

        - - -

        - t -

        - - -

        - v -

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/functions_vars.html b/docs/docs/doxygen-docs/cpp/functions_vars.html deleted file mode 100644 index bd946b9b1..000000000 --- a/docs/docs/doxygen-docs/cpp/functions_vars.html +++ /dev/null @@ -1,297 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Members - Variables - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -  - -

        - a -

        - - -

        - c -

        - - -

        - d -

        - - -

        - e -

        - - -

        - f -

        - - -

        - i -

        - - -

        - l -

        - - -

        - m -

        - - -

        - p -

        - - -

        - r -

        - - -

        - s -

        - - -

        - t -

        - - -

        - u -

        - - -

        - v -

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/hierarchy.html b/docs/docs/doxygen-docs/cpp/hierarchy.html deleted file mode 100644 index 8f2e1d3d7..000000000 --- a/docs/docs/doxygen-docs/cpp/hierarchy.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - -Alexa Auto SDK: Class Hierarchy - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        -
        Class Hierarchy
        -
        -
        -
        This inheritance list is sorted roughly, but not completely, alphabetically:
        -
        [detail level 12]
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
         Caace::addressBook::config::AddressBookConfiguration
         Caace::alexa::AlertsEngineInterface
         Caace::alexa::AlexaClientEngineInterface
         Caace::alexa::config::AlexaConfiguration
         Caace::alexa::AlexaSpeakerEngineInterface
         Caace::apl::config::APLConfiguration
         Caace::audio::AudioOutput
         Caace::alexa::AudioPlayerEngineInterface
         Caace::audio::AudioStreamProperty
         Caace::authorization::AuthorizationEngineInterface
         Caace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo
         Caace::alexa::AuthProviderEngineInterface
         Caace::cbl::config::CBLConfiguration
         Caace::alexa::AlexaClient::ConnectionStatusInfo
         Caace::metrics::MetricsUploader::Datapoint
         Caace::alexa::DeviceSetupEngineInterface
         Caace::deviceUsage::DeviceUsageEngineInterface
         Caace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo
         Caace::alexa::DoNotDisturbEngineInterface
         Caace::core::Engine
         Caace::core::config::EngineConfiguration
         Caace::carControl::config::CarControlConfiguration
         Caace::core::config::ConfigurationFile
         Caace::core::config::StreamConfiguration
         Caace::alexa::EqualizerControllerEngineInterface
         Caace::alexa::ExternalMediaAdapterEngineInterface
         Caace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState
         Caace::alexa::FeatureDiscoveryEngineInterface
         Caace::addressBook::AddressBook::IAddressBookEntriesFactory
         Caace::alexa::LocalMediaSourceEngineInterface
         Caace::alexa::LocalMediaSource::LocalMediaSourceState
         Caace::location::Location
         Caace::location::LocationProviderEngineInterface
         Caace::logger::config::LoggerConfiguration
         Caace::logger::LoggerEngineInterface
         Caace::alexa::MediaPlaybackRequestorEngineInterface
         Caace::core::MessageBroker
         Caace::navigation::config::NavigationConfiguration
         Caace::network::NetworkInfoProviderEngineInterface
         Caace::phoneCallController::PhoneCallControllerEngineInterface
         Caace::core::PlatformInterface
         Caace::addressBook::AddressBook
         Caace::alexa::Alerts
         Caace::alexa::AlexaClient
         Caace::alexa::AlexaSpeaker
         Caace::alexa::AudioPlayer
         Caace::alexa::AuthProvider
         Caace::alexa::DeviceSetup
         Caace::alexa::DoNotDisturb
         Caace::alexa::EqualizerController
         Caace::alexa::ExternalMediaAdapter
         Caace::alexa::GlobalPreset
         Caace::alexa::LocalMediaSource
         Caace::alexa::MediaPlaybackRequestor
         Caace::alexa::Notifications
         Caace::alexa::PlaybackController
         Caace::alexa::SpeechRecognizer
         Caace::alexa::SpeechSynthesizer
         Caace::alexa::TemplateRuntime
         Caace::apl::APL
         Caace::audio::AudioInputProvider
         Caace::audio::AudioOutputProvider
         Caace::authorization::Authorization
         Caace::bluetooth::BluetoothProvider
         Caace::carControl::CarControl
         Caace::cbl::CBL
         Caace::connectivity::AlexaConnectivity
         Caace::deviceUsage::DeviceUsage
         Caace::location::LocationProvider
         Caace::logger::Logger
         Caace::messaging::Messaging
         Caace::metrics::MetricsUploader
         Caace::navigation::Navigation
         Caace::network::NetworkInfoProvider
         Caace::phoneCallController::PhoneCallController
         Caace::propertyManager::PropertyManager
         Caace::textToSpeech::TextToSpeech
         Caace::alexa::PlaybackControllerEngineInterface
         Caace::alexa::ExternalMediaAdapter::PlaybackState
         Caace::alexa::LocalMediaSource::PlaybackState
         Caace::alexa::ExternalMediaAdapter::SessionState
         Caace::alexa::LocalMediaSource::SessionState
         Caace::alexa::SpeechRecognizerEngineInterface
         Caace::storage::config::StorageConfiguration
         Caace::alexa::TemplateRuntimeEngineInterface
         Caace::vehicle::config::VehicleConfiguration
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/index.html b/docs/docs/doxygen-docs/cpp/index.html deleted file mode 100644 index 982c6db00..000000000 --- a/docs/docs/doxygen-docs/cpp/index.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - -Alexa Auto SDK: Alexa Auto SDK for C++ - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        -
        Alexa Auto SDK for C++
        -
        -
        -

        Introduction

        -

        For the Android platform, the Alexa Auto SDK is wrapped by a JNI layer which mirrors the native C++ API. This layer is built into the Android library project of each Auto SDK module. You can view it by opening ${AAC_SDK_HOME}/modules/<module name>/android in Android Studio.

        -

        This document refers to the C++ API classes.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/jquery.js b/docs/docs/doxygen-docs/cpp/jquery.js deleted file mode 100644 index f5343eda9..000000000 --- a/docs/docs/doxygen-docs/cpp/jquery.js +++ /dev/null @@ -1,87 +0,0 @@ -/*! - * jQuery JavaScript Library v1.7.1 - * http://jquery.com/ - * - * Copyright 2011, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Mon Nov 21 21:11:03 2011 -0500 - */ -(function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var b=(function(){var bF=function(b0,b1){return new bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,bM=/\S/,bI=/^\s+/,bE=/\s+$/,bA=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,bN=/^[\],:{}\s]*$/,bW=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,bJ=/(?:^|:|,)(?:\s*\[)+/g,by=/(webkit)[ \/]([\w.]+)/,bR=/(opera)(?:.*version)?[ \/]([\w.]+)/,bQ=/(msie) ([\w.]+)/,bS=/(mozilla)(?:.*? rv:([\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+"").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var b2,b5,b1,b6;if(!b0){return this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return this}if(b0==="body"&&!b4&&av.body){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return this}if(typeof b0==="string"){if(b0.charAt(0)==="<"&&b0.charAt(b0.length-1)===">"&&b0.length>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4 instanceof bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&&b5.parentNode){if(b5.id!==b2[2]){return b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return bF.makeArray(b0,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3==="find"){b2.selector=this.selector+(this.selector?" ":"")+b0}else{if(b3){b2.selector=this.selector+"."+b3+"("+b0+")"}}return b2},each:function(b1,b0){return bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return this},eq:function(b0){b0=+b0;return b0===-1?this.slice(b0):this.slice(b0,b0+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(bK.apply(this,arguments),"slice",bK.call(arguments).join(","))},map:function(b0){return this.pushStack(bF.map(this,function(b2,b1){return b0.call(b2,b1,b2)}))},end:function(){return this.prevObject||this.constructor(null)},push:bz,sort:[].sort,splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var b9,b2,b0,b1,b6,b7,b5=arguments[0]||{},b4=1,b3=arguments.length,b8=false;if(typeof b5==="boolean"){b8=b5;b5=arguments[1]||{};b4=2}if(typeof b5!=="object"&&!bF.isFunction(b5)){b5={}}if(b3===b4){b5=this;--b4}for(;b40){return}bC.fireWith(av,[bF]);if(bF.fn.trigger){bF(av).trigger("ready").off("ready")}}},bindReady:function(){if(bC){return}bC=bF.Callbacks("once memory");if(av.readyState==="complete"){return setTimeout(bF.ready,1)}if(av.addEventListener){av.addEventListener("DOMContentLoaded",e,false);bb.addEventListener("load",bF.ready,false)}else{if(av.attachEvent){av.attachEvent("onreadystatechange",e);bb.attachEvent("onload",bF.ready);var b0=false;try{b0=bb.frameElement==null}catch(b1){}if(av.documentElement.doScroll&&b0){bw()}}}},isFunction:function(b0){return bF.type(b0)==="function"},isArray:Array.isArray||function(b0){return bF.type(b0)==="array"},isWindow:function(b0){return b0&&typeof b0==="object"&&"setInterval" in b0},isNumeric:function(b0){return !isNaN(parseFloat(b0))&&isFinite(b0)},type:function(b0){return b0==null?String(b0):bx[bL.call(b0)]||"object"},isPlainObject:function(b2){if(!b2||bF.type(b2)!=="object"||b2.nodeType||bF.isWindow(b2)){return false}try{if(b2.constructor&&!bG.call(b2,"constructor")&&!bG.call(b2.constructor.prototype,"isPrototypeOf")){return false}}catch(b1){return false}var b0;for(b0 in b2){}return b0===L||bG.call(b2,b0)},isEmptyObject:function(b1){for(var b0 in b1){return false}return true},error:function(b0){throw new Error(b0)},parseJSON:function(b0){if(typeof b0!=="string"||!b0){return null}b0=bF.trim(b0);if(bb.JSON&&bb.JSON.parse){return bb.JSON.parse(b0)}if(bN.test(b0.replace(bW,"@").replace(bP,"]").replace(bJ,""))){return(new Function("return "+b0))()}bF.error("Invalid JSON: "+b0)},parseXML:function(b2){var b0,b1;try{if(bb.DOMParser){b1=new DOMParser();b0=b1.parseFromString(b2,"text/xml")}else{b0=new ActiveXObject("Microsoft.XMLDOM");b0.async="false";b0.loadXML(b2)}}catch(b3){b0=L}if(!b0||!b0.documentElement||b0.getElementsByTagName("parsererror").length){bF.error("Invalid XML: "+b2)}return b0},noop:function(){},globalEval:function(b0){if(b0&&bM.test(b0)){(bb.execScript||function(b1){bb["eval"].call(bb,b1)})(b0)}},camelCase:function(b0){return b0.replace(bZ,"ms-").replace(bB,bT)},nodeName:function(b1,b0){return b1.nodeName&&b1.nodeName.toUpperCase()===b0.toUpperCase()},each:function(b3,b6,b2){var b1,b4=0,b5=b3.length,b0=b5===L||bF.isFunction(b3);if(b2){if(b0){for(b1 in b3){if(b6.apply(b3[b1],b2)===false){break}}}else{for(;b40&&b0[0]&&b0[b1-1])||b1===0||bF.isArray(b0));if(b3){for(;b21?aJ.call(arguments,0):bG;if(!(--bw)){bC.resolveWith(bC,bx)}}}function bz(bF){return function(bG){bB[bF]=arguments.length>1?aJ.call(arguments,0):bG;bC.notifyWith(bE,bB)}}if(e>1){for(;bv
        a";bI=bv.getElementsByTagName("*");bF=bv.getElementsByTagName("a")[0];if(!bI||!bI.length||!bF){return{}}bG=av.createElement("select");bx=bG.appendChild(av.createElement("option"));bE=bv.getElementsByTagName("input")[0];bJ={leadingWhitespace:(bv.firstChild.nodeType===3),tbody:!bv.getElementsByTagName("tbody").length,htmlSerialize:!!bv.getElementsByTagName("link").length,style:/top/.test(bF.getAttribute("style")),hrefNormalized:(bF.getAttribute("href")==="/a"),opacity:/^0.55/.test(bF.style.opacity),cssFloat:!!bF.style.cssFloat,checkOn:(bE.value==="on"),optSelected:bx.selected,getSetAttribute:bv.className!=="t",enctype:!!av.createElement("form").enctype,html5Clone:av.createElement("nav").cloneNode(true).outerHTML!=="<:nav>",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true};bE.checked=true;bJ.noCloneChecked=bE.cloneNode(true).checked;bG.disabled=true;bJ.optDisabled=!bx.disabled;try{delete bv.test}catch(bC){bJ.deleteExpando=false}if(!bv.addEventListener&&bv.attachEvent&&bv.fireEvent){bv.attachEvent("onclick",function(){bJ.noCloneEvent=false});bv.cloneNode(true).fireEvent("onclick")}bE=av.createElement("input");bE.value="t";bE.setAttribute("type","radio");bJ.radioValue=bE.value==="t";bE.setAttribute("checked","checked");bv.appendChild(bE);bD=av.createDocumentFragment();bD.appendChild(bv.lastChild);bJ.checkClone=bD.cloneNode(true).cloneNode(true).lastChild.checked;bJ.appendChecked=bE.checked;bD.removeChild(bE);bD.appendChild(bv);bv.innerHTML="";if(bb.getComputedStyle){bA=av.createElement("div");bA.style.width="0";bA.style.marginRight="0";bv.style.width="2px";bv.appendChild(bA);bJ.reliableMarginRight=(parseInt((bb.getComputedStyle(bA,null)||{marginRight:0}).marginRight,10)||0)===0}if(bv.attachEvent){for(by in {submit:1,change:1,focusin:1}){bB="on"+by;bw=(bB in bv);if(!bw){bv.setAttribute(bB,"return;");bw=(typeof bv[bB]==="function")}bJ[by+"Bubbles"]=bw}}bD.removeChild(bv);bD=bG=bx=bA=bv=bE=null;b(function(){var bM,bU,bV,bT,bN,bO,bL,bS,bR,e,bP,bQ=av.getElementsByTagName("body")[0];if(!bQ){return}bL=1;bS="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;";bR="visibility:hidden;border:0;";e="style='"+bS+"border:5px solid #000;padding:0;'";bP="
        ";bM=av.createElement("div");bM.style.cssText=bR+"width:0;height:0;position:static;top:0;margin-top:"+bL+"px";bQ.insertBefore(bM,bQ.firstChild);bv=av.createElement("div");bM.appendChild(bv);bv.innerHTML="
        t
        ";bz=bv.getElementsByTagName("td");bw=(bz[0].offsetHeight===0);bz[0].style.display="";bz[1].style.display="none";bJ.reliableHiddenOffsets=bw&&(bz[0].offsetHeight===0);bv.innerHTML="";bv.style.width=bv.style.paddingLeft="1px";b.boxModel=bJ.boxModel=bv.offsetWidth===2;if(typeof bv.style.zoom!=="undefined"){bv.style.display="inline";bv.style.zoom=1;bJ.inlineBlockNeedsLayout=(bv.offsetWidth===2);bv.style.display="";bv.innerHTML="
        ";bJ.shrinkWrapBlocks=(bv.offsetWidth!==2)}bv.style.cssText=bS+bR;bv.innerHTML=bP;bU=bv.firstChild;bV=bU.firstChild;bN=bU.nextSibling.firstChild.firstChild;bO={doesNotAddBorder:(bV.offsetTop!==5),doesAddBorderForTableAndCells:(bN.offsetTop===5)};bV.style.position="fixed";bV.style.top="20px";bO.fixedPosition=(bV.offsetTop===20||bV.offsetTop===15);bV.style.position=bV.style.top="";bU.style.overflow="hidden";bU.style.position="relative";bO.subtractsBorderForOverflowNotVisible=(bV.offsetTop===-5);bO.doesNotIncludeMarginInBodyOffset=(bQ.offsetTop!==bL);bQ.removeChild(bM);bv=bM=null;b.extend(bJ,bO)});return bJ})();var aS=/^(?:\{.*\}|\[.*\])$/,aA=/([A-Z])/g;b.extend({cache:{},uuid:0,expando:"jQuery"+(b.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},hasData:function(e){e=e.nodeType?b.cache[e[b.expando]]:e[b.expando];return !!e&&!S(e)},data:function(bx,bv,bz,by){if(!b.acceptData(bx)){return}var bG,bA,bD,bE=b.expando,bC=typeof bv==="string",bF=bx.nodeType,e=bF?b.cache:bx,bw=bF?bx[bE]:bx[bE]&&bE,bB=bv==="events";if((!bw||!e[bw]||(!bB&&!by&&!e[bw].data))&&bC&&bz===L){return}if(!bw){if(bF){bx[bE]=bw=++b.uuid}else{bw=bE}}if(!e[bw]){e[bw]={};if(!bF){e[bw].toJSON=b.noop}}if(typeof bv==="object"||typeof bv==="function"){if(by){e[bw]=b.extend(e[bw],bv)}else{e[bw].data=b.extend(e[bw].data,bv)}}bG=bA=e[bw];if(!by){if(!bA.data){bA.data={}}bA=bA.data}if(bz!==L){bA[b.camelCase(bv)]=bz}if(bB&&!bA[bv]){return bG.events}if(bC){bD=bA[bv];if(bD==null){bD=bA[b.camelCase(bv)]}}else{bD=bA}return bD},removeData:function(bx,bv,by){if(!b.acceptData(bx)){return}var bB,bA,bz,bC=b.expando,bD=bx.nodeType,e=bD?b.cache:bx,bw=bD?bx[bC]:bC;if(!e[bw]){return}if(bv){bB=by?e[bw]:e[bw].data;if(bB){if(!b.isArray(bv)){if(bv in bB){bv=[bv]}else{bv=b.camelCase(bv);if(bv in bB){bv=[bv]}else{bv=bv.split(" ")}}}for(bA=0,bz=bv.length;bA-1){return true}}return false},val:function(bx){var e,bv,by,bw=this[0];if(!arguments.length){if(bw){e=b.valHooks[bw.nodeName.toLowerCase()]||b.valHooks[bw.type];if(e&&"get" in e&&(bv=e.get(bw,"value"))!==L){return bv}bv=bw.value;return typeof bv==="string"?bv.replace(aU,""):bv==null?"":bv}return}by=b.isFunction(bx);return this.each(function(bA){var bz=b(this),bB;if(this.nodeType!==1){return}if(by){bB=bx.call(this,bA,bz.val())}else{bB=bx}if(bB==null){bB=""}else{if(typeof bB==="number"){bB+=""}else{if(b.isArray(bB)){bB=b.map(bB,function(bC){return bC==null?"":bC+""})}}}e=b.valHooks[this.nodeName.toLowerCase()]||b.valHooks[this.type];if(!e||!("set" in e)||e.set(this,bB,"value")===L){this.value=bB}})}});b.extend({valHooks:{option:{get:function(e){var bv=e.attributes.value;return !bv||bv.specified?e.value:e.text}},select:{get:function(e){var bA,bv,bz,bx,by=e.selectedIndex,bB=[],bC=e.options,bw=e.type==="select-one";if(by<0){return null}bv=bw?by:0;bz=bw?by+1:bC.length;for(;bv=0});if(!e.length){bv.selectedIndex=-1}return e}}},attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(bA,bx,bB,bz){var bw,e,by,bv=bA.nodeType;if(!bA||bv===3||bv===8||bv===2){return}if(bz&&bx in b.attrFn){return b(bA)[bx](bB)}if(typeof bA.getAttribute==="undefined"){return b.prop(bA,bx,bB)}by=bv!==1||!b.isXMLDoc(bA);if(by){bx=bx.toLowerCase();e=b.attrHooks[bx]||(ao.test(bx)?aY:be)}if(bB!==L){if(bB===null){b.removeAttr(bA,bx);return}else{if(e&&"set" in e&&by&&(bw=e.set(bA,bB,bx))!==L){return bw}else{bA.setAttribute(bx,""+bB);return bB}}}else{if(e&&"get" in e&&by&&(bw=e.get(bA,bx))!==null){return bw}else{bw=bA.getAttribute(bx);return bw===null?L:bw}}},removeAttr:function(bx,bz){var by,bA,bv,e,bw=0;if(bz&&bx.nodeType===1){bA=bz.toLowerCase().split(af);e=bA.length;for(;bw=0)}}})});var bd=/^(?:textarea|input|select)$/i,n=/^([^\.]*)?(?:\.(.+))?$/,J=/\bhover(\.\S+)?\b/,aO=/^key/,bf=/^(?:mouse|contextmenu)|click/,T=/^(?:focusinfocus|focusoutblur)$/,U=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,Y=function(e){var bv=U.exec(e);if(bv){bv[1]=(bv[1]||"").toLowerCase();bv[3]=bv[3]&&new RegExp("(?:^|\\s)"+bv[3]+"(?:\\s|$)")}return bv},j=function(bw,e){var bv=bw.attributes||{};return((!e[1]||bw.nodeName.toLowerCase()===e[1])&&(!e[2]||(bv.id||{}).value===e[2])&&(!e[3]||e[3].test((bv["class"]||{}).value)))},bt=function(e){return b.event.special.hover?e:e.replace(J,"mouseenter$1 mouseleave$1")};b.event={add:function(bx,bC,bJ,bA,by){var bD,bB,bK,bI,bH,bF,e,bG,bv,bz,bw,bE;if(bx.nodeType===3||bx.nodeType===8||!bC||!bJ||!(bD=b._data(bx))){return}if(bJ.handler){bv=bJ;bJ=bv.handler}if(!bJ.guid){bJ.guid=b.guid++}bK=bD.events;if(!bK){bD.events=bK={}}bB=bD.handle;if(!bB){bD.handle=bB=function(bL){return typeof b!=="undefined"&&(!bL||b.event.triggered!==bL.type)?b.event.dispatch.apply(bB.elem,arguments):L};bB.elem=bx}bC=b.trim(bt(bC)).split(" ");for(bI=0;bI=0){bG=bG.slice(0,-1);bw=true}if(bG.indexOf(".")>=0){bx=bG.split(".");bG=bx.shift();bx.sort()}if((!bA||b.event.customEvent[bG])&&!b.event.global[bG]){return}bv=typeof bv==="object"?bv[b.expando]?bv:new b.Event(bG,bv):new b.Event(bG);bv.type=bG;bv.isTrigger=true;bv.exclusive=bw;bv.namespace=bx.join(".");bv.namespace_re=bv.namespace?new RegExp("(^|\\.)"+bx.join("\\.(?:.*\\.)?")+"(\\.|$)"):null;by=bG.indexOf(":")<0?"on"+bG:"";if(!bA){e=b.cache;for(bC in e){if(e[bC].events&&e[bC].events[bG]){b.event.trigger(bv,bD,e[bC].handle.elem,true)}}return}bv.result=L;if(!bv.target){bv.target=bA}bD=bD!=null?b.makeArray(bD):[];bD.unshift(bv);bF=b.event.special[bG]||{};if(bF.trigger&&bF.trigger.apply(bA,bD)===false){return}bB=[[bA,bF.bindType||bG]];if(!bJ&&!bF.noBubble&&!b.isWindow(bA)){bI=bF.delegateType||bG;bH=T.test(bI+bG)?bA:bA.parentNode;bz=null;for(;bH;bH=bH.parentNode){bB.push([bH,bI]);bz=bH}if(bz&&bz===bA.ownerDocument){bB.push([bz.defaultView||bz.parentWindow||bb,bI])}}for(bC=0;bCbA){bH.push({elem:this,matches:bz.slice(bA)})}for(bC=0;bC0?this.on(e,null,bx,bw):this.trigger(e)};if(b.attrFn){b.attrFn[e]=true}if(aO.test(e)){b.event.fixHooks[e]=b.event.keyHooks}if(bf.test(e)){b.event.fixHooks[e]=b.event.mouseHooks}}); -/*! - * Sizzle CSS Selector Engine - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * More information: http://sizzlejs.com/ - */ -(function(){var bH=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,bC="sizcache"+(Math.random()+"").replace(".",""),bI=0,bL=Object.prototype.toString,bB=false,bA=true,bK=/\\/g,bO=/\r\n/g,bQ=/\W/;[0,0].sort(function(){bA=false;return 0});var by=function(bV,e,bY,bZ){bY=bY||[];e=e||av;var b1=e;if(e.nodeType!==1&&e.nodeType!==9){return[]}if(!bV||typeof bV!=="string"){return bY}var bS,b3,b6,bR,b2,b5,b4,bX,bU=true,bT=by.isXML(e),bW=[],b0=bV;do{bH.exec("");bS=bH.exec(b0);if(bS){b0=bS[3];bW.push(bS[1]);if(bS[2]){bR=bS[3];break}}}while(bS);if(bW.length>1&&bD.exec(bV)){if(bW.length===2&&bE.relative[bW[0]]){b3=bM(bW[0]+bW[1],e,bZ)}else{b3=bE.relative[bW[0]]?[e]:by(bW.shift(),e);while(bW.length){bV=bW.shift();if(bE.relative[bV]){bV+=bW.shift()}b3=bM(bV,b3,bZ)}}}else{if(!bZ&&bW.length>1&&e.nodeType===9&&!bT&&bE.match.ID.test(bW[0])&&!bE.match.ID.test(bW[bW.length-1])){b2=by.find(bW.shift(),e,bT);e=b2.expr?by.filter(b2.expr,b2.set)[0]:b2.set[0]}if(e){b2=bZ?{expr:bW.pop(),set:bF(bZ)}:by.find(bW.pop(),bW.length===1&&(bW[0]==="~"||bW[0]==="+")&&e.parentNode?e.parentNode:e,bT);b3=b2.expr?by.filter(b2.expr,b2.set):b2.set;if(bW.length>0){b6=bF(b3)}else{bU=false}while(bW.length){b5=bW.pop();b4=b5;if(!bE.relative[b5]){b5=""}else{b4=bW.pop()}if(b4==null){b4=e}bE.relative[b5](b6,b4,bT)}}else{b6=bW=[]}}if(!b6){b6=b3}if(!b6){by.error(b5||bV)}if(bL.call(b6)==="[object Array]"){if(!bU){bY.push.apply(bY,b6)}else{if(e&&e.nodeType===1){for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&(b6[bX]===true||b6[bX].nodeType===1&&by.contains(e,b6[bX]))){bY.push(b3[bX])}}}else{for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&b6[bX].nodeType===1){bY.push(b3[bX])}}}}}else{bF(b6,bY)}if(bR){by(bR,b1,bY,bZ);by.uniqueSort(bY)}return bY};by.uniqueSort=function(bR){if(bJ){bB=bA;bR.sort(bJ);if(bB){for(var e=1;e0};by.find=function(bX,e,bY){var bW,bS,bU,bT,bV,bR;if(!bX){return[]}for(bS=0,bU=bE.order.length;bS":function(bW,bR){var bV,bU=typeof bR==="string",bS=0,e=bW.length;if(bU&&!bQ.test(bR)){bR=bR.toLowerCase();for(;bS=0)){if(!bS){e.push(bV)}}else{if(bS){bR[bU]=false}}}}return false},ID:function(e){return e[1].replace(bK,"")},TAG:function(bR,e){return bR[1].replace(bK,"").toLowerCase()},CHILD:function(e){if(e[1]==="nth"){if(!e[2]){by.error(e[0])}e[2]=e[2].replace(/^\+|\s*/g,"");var bR=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(e[2]==="even"&&"2n"||e[2]==="odd"&&"2n+1"||!/\D/.test(e[2])&&"0n+"+e[2]||e[2]);e[2]=(bR[1]+(bR[2]||1))-0;e[3]=bR[3]-0}else{if(e[2]){by.error(e[0])}}e[0]=bI++;return e},ATTR:function(bU,bR,bS,e,bV,bW){var bT=bU[1]=bU[1].replace(bK,"");if(!bW&&bE.attrMap[bT]){bU[1]=bE.attrMap[bT]}bU[4]=(bU[4]||bU[5]||"").replace(bK,"");if(bU[2]==="~="){bU[4]=" "+bU[4]+" "}return bU},PSEUDO:function(bU,bR,bS,e,bV){if(bU[1]==="not"){if((bH.exec(bU[3])||"").length>1||/^\w/.test(bU[3])){bU[3]=by(bU[3],null,null,bR)}else{var bT=by.filter(bU[3],bR,bS,true^bV);if(!bS){e.push.apply(e,bT)}return false}}else{if(bE.match.POS.test(bU[0])||bE.match.CHILD.test(bU[0])){return true}}return bU},POS:function(e){e.unshift(true);return e}},filters:{enabled:function(e){return e.disabled===false&&e.type!=="hidden"},disabled:function(e){return e.disabled===true},checked:function(e){return e.checked===true},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},parent:function(e){return !!e.firstChild},empty:function(e){return !e.firstChild},has:function(bS,bR,e){return !!by(e[3],bS).length},header:function(e){return(/h\d/i).test(e.nodeName)},text:function(bS){var e=bS.getAttribute("type"),bR=bS.type;return bS.nodeName.toLowerCase()==="input"&&"text"===bR&&(e===bR||e===null)},radio:function(e){return e.nodeName.toLowerCase()==="input"&&"radio"===e.type},checkbox:function(e){return e.nodeName.toLowerCase()==="input"&&"checkbox"===e.type},file:function(e){return e.nodeName.toLowerCase()==="input"&&"file"===e.type},password:function(e){return e.nodeName.toLowerCase()==="input"&&"password"===e.type},submit:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"submit"===bR.type},image:function(e){return e.nodeName.toLowerCase()==="input"&&"image"===e.type},reset:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"reset"===bR.type},button:function(bR){var e=bR.nodeName.toLowerCase();return e==="input"&&"button"===bR.type||e==="button"},input:function(e){return(/input|select|textarea|button/i).test(e.nodeName)},focus:function(e){return e===e.ownerDocument.activeElement}},setFilters:{first:function(bR,e){return e===0},last:function(bS,bR,e,bT){return bR===bT.length-1},even:function(bR,e){return e%2===0},odd:function(bR,e){return e%2===1},lt:function(bS,bR,e){return bRe[3]-0},nth:function(bS,bR,e){return e[3]-0===bR},eq:function(bS,bR,e){return e[3]-0===bR}},filter:{PSEUDO:function(bS,bX,bW,bY){var e=bX[1],bR=bE.filters[e];if(bR){return bR(bS,bW,bX,bY)}else{if(e==="contains"){return(bS.textContent||bS.innerText||bw([bS])||"").indexOf(bX[3])>=0}else{if(e==="not"){var bT=bX[3];for(var bV=0,bU=bT.length;bV=0)}}},ID:function(bR,e){return bR.nodeType===1&&bR.getAttribute("id")===e},TAG:function(bR,e){return(e==="*"&&bR.nodeType===1)||!!bR.nodeName&&bR.nodeName.toLowerCase()===e},CLASS:function(bR,e){return(" "+(bR.className||bR.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(bV,bT){var bS=bT[1],e=by.attr?by.attr(bV,bS):bE.attrHandle[bS]?bE.attrHandle[bS](bV):bV[bS]!=null?bV[bS]:bV.getAttribute(bS),bW=e+"",bU=bT[2],bR=bT[4];return e==null?bU==="!=":!bU&&by.attr?e!=null:bU==="="?bW===bR:bU==="*="?bW.indexOf(bR)>=0:bU==="~="?(" "+bW+" ").indexOf(bR)>=0:!bR?bW&&e!==false:bU==="!="?bW!==bR:bU==="^="?bW.indexOf(bR)===0:bU==="$="?bW.substr(bW.length-bR.length)===bR:bU==="|="?bW===bR||bW.substr(0,bR.length+1)===bR+"-":false},POS:function(bU,bR,bS,bV){var e=bR[2],bT=bE.setFilters[e];if(bT){return bT(bU,bS,bR,bV)}}}};var bD=bE.match.POS,bx=function(bR,e){return"\\"+(e-0+1)};for(var bz in bE.match){bE.match[bz]=new RegExp(bE.match[bz].source+(/(?![^\[]*\])(?![^\(]*\))/.source));bE.leftMatch[bz]=new RegExp(/(^(?:.|\r|\n)*?)/.source+bE.match[bz].source.replace(/\\(\d+)/g,bx))}var bF=function(bR,e){bR=Array.prototype.slice.call(bR,0);if(e){e.push.apply(e,bR);return e}return bR};try{Array.prototype.slice.call(av.documentElement.childNodes,0)[0].nodeType}catch(bP){bF=function(bU,bT){var bS=0,bR=bT||[];if(bL.call(bU)==="[object Array]"){Array.prototype.push.apply(bR,bU)}else{if(typeof bU.length==="number"){for(var e=bU.length;bS";e.insertBefore(bR,e.firstChild);if(av.getElementById(bS)){bE.find.ID=function(bU,bV,bW){if(typeof bV.getElementById!=="undefined"&&!bW){var bT=bV.getElementById(bU[1]);return bT?bT.id===bU[1]||typeof bT.getAttributeNode!=="undefined"&&bT.getAttributeNode("id").nodeValue===bU[1]?[bT]:L:[]}};bE.filter.ID=function(bV,bT){var bU=typeof bV.getAttributeNode!=="undefined"&&bV.getAttributeNode("id");return bV.nodeType===1&&bU&&bU.nodeValue===bT}}e.removeChild(bR);e=bR=null})();(function(){var e=av.createElement("div");e.appendChild(av.createComment(""));if(e.getElementsByTagName("*").length>0){bE.find.TAG=function(bR,bV){var bU=bV.getElementsByTagName(bR[1]);if(bR[1]==="*"){var bT=[];for(var bS=0;bU[bS];bS++){if(bU[bS].nodeType===1){bT.push(bU[bS])}}bU=bT}return bU}}e.innerHTML="";if(e.firstChild&&typeof e.firstChild.getAttribute!=="undefined"&&e.firstChild.getAttribute("href")!=="#"){bE.attrHandle.href=function(bR){return bR.getAttribute("href",2)}}e=null})();if(av.querySelectorAll){(function(){var e=by,bT=av.createElement("div"),bS="__sizzle__";bT.innerHTML="

        ";if(bT.querySelectorAll&&bT.querySelectorAll(".TEST").length===0){return}by=function(b4,bV,bZ,b3){bV=bV||av;if(!b3&&!by.isXML(bV)){var b2=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b4);if(b2&&(bV.nodeType===1||bV.nodeType===9)){if(b2[1]){return bF(bV.getElementsByTagName(b4),bZ)}else{if(b2[2]&&bE.find.CLASS&&bV.getElementsByClassName){return bF(bV.getElementsByClassName(b2[2]),bZ)}}}if(bV.nodeType===9){if(b4==="body"&&bV.body){return bF([bV.body],bZ)}else{if(b2&&b2[3]){var bY=bV.getElementById(b2[3]);if(bY&&bY.parentNode){if(bY.id===b2[3]){return bF([bY],bZ)}}else{return bF([],bZ)}}}try{return bF(bV.querySelectorAll(b4),bZ)}catch(b0){}}else{if(bV.nodeType===1&&bV.nodeName.toLowerCase()!=="object"){var bW=bV,bX=bV.getAttribute("id"),bU=bX||bS,b6=bV.parentNode,b5=/^\s*[+~]/.test(b4);if(!bX){bV.setAttribute("id",bU)}else{bU=bU.replace(/'/g,"\\$&")}if(b5&&b6){bV=bV.parentNode}try{if(!b5||b6){return bF(bV.querySelectorAll("[id='"+bU+"'] "+b4),bZ)}}catch(b1){}finally{if(!bX){bW.removeAttribute("id")}}}}}return e(b4,bV,bZ,b3)};for(var bR in e){by[bR]=e[bR]}bT=null})()}(function(){var e=av.documentElement,bS=e.matchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.msMatchesSelector;if(bS){var bU=!bS.call(av.createElement("div"),"div"),bR=false;try{bS.call(av.documentElement,"[test!='']:sizzle")}catch(bT){bR=true}by.matchesSelector=function(bW,bY){bY=bY.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!by.isXML(bW)){try{if(bR||!bE.match.PSEUDO.test(bY)&&!/!=/.test(bY)){var bV=bS.call(bW,bY);if(bV||!bU||bW.document&&bW.document.nodeType!==11){return bV}}}catch(bX){}}return by(bY,null,null,[bW]).length>0}}})();(function(){var e=av.createElement("div");e.innerHTML="
        ";if(!e.getElementsByClassName||e.getElementsByClassName("e").length===0){return}e.lastChild.className="e";if(e.getElementsByClassName("e").length===1){return}bE.order.splice(1,0,"CLASS");bE.find.CLASS=function(bR,bS,bT){if(typeof bS.getElementsByClassName!=="undefined"&&!bT){return bS.getElementsByClassName(bR[1])}};e=null})();function bv(bR,bW,bV,bZ,bX,bY){for(var bT=0,bS=bZ.length;bT0){bU=e;break}}}e=e[bR]}bZ[bT]=bU}}}if(av.documentElement.contains){by.contains=function(bR,e){return bR!==e&&(bR.contains?bR.contains(e):true)}}else{if(av.documentElement.compareDocumentPosition){by.contains=function(bR,e){return !!(bR.compareDocumentPosition(e)&16)}}else{by.contains=function(){return false}}}by.isXML=function(e){var bR=(e?e.ownerDocument||e:0).documentElement;return bR?bR.nodeName!=="HTML":false};var bM=function(bS,e,bW){var bV,bX=[],bU="",bY=e.nodeType?[e]:e;while((bV=bE.match.PSEUDO.exec(bS))){bU+=bV[0];bS=bS.replace(bE.match.PSEUDO,"")}bS=bE.relative[bS]?bS+"*":bS;for(var bT=0,bR=bY.length;bT0){for(bB=bA;bB=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(by,bx){var bv=[],bw,e,bz=this[0];if(b.isArray(by)){var bB=1;while(bz&&bz.ownerDocument&&bz!==bx){for(bw=0;bw-1:b.find.matchesSelector(bz,by)){bv.push(bz);break}else{bz=bz.parentNode;if(!bz||!bz.ownerDocument||bz===bx||bz.nodeType===11){break}}}}bv=bv.length>1?b.unique(bv):bv;return this.pushStack(bv,"closest",by)},index:function(e){if(!e){return(this[0]&&this[0].parentNode)?this.prevAll().length:-1}if(typeof e==="string"){return b.inArray(this[0],b(e))}return b.inArray(e.jquery?e[0]:e,this)},add:function(e,bv){var bx=typeof e==="string"?b(e,bv):b.makeArray(e&&e.nodeType?[e]:e),bw=b.merge(this.get(),bx);return this.pushStack(C(bx[0])||C(bw[0])?bw:b.unique(bw))},andSelf:function(){return this.add(this.prevObject)}});function C(e){return !e||!e.parentNode||e.parentNode.nodeType===11}b.each({parent:function(bv){var e=bv.parentNode;return e&&e.nodeType!==11?e:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(bv,e,bw){return b.dir(bv,"parentNode",bw)},next:function(e){return b.nth(e,2,"nextSibling")},prev:function(e){return b.nth(e,2,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(bv,e,bw){return b.dir(bv,"nextSibling",bw)},prevUntil:function(bv,e,bw){return b.dir(bv,"previousSibling",bw)},siblings:function(e){return b.sibling(e.parentNode.firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.makeArray(e.childNodes)}},function(e,bv){b.fn[e]=function(by,bw){var bx=b.map(this,bv,by);if(!ab.test(e)){bw=by}if(bw&&typeof bw==="string"){bx=b.filter(bw,bx)}bx=this.length>1&&!ay[e]?b.unique(bx):bx;if((this.length>1||a9.test(bw))&&aq.test(e)){bx=bx.reverse()}return this.pushStack(bx,e,P.call(arguments).join(","))}});b.extend({filter:function(bw,e,bv){if(bv){bw=":not("+bw+")"}return e.length===1?b.find.matchesSelector(e[0],bw)?[e[0]]:[]:b.find.matches(bw,e)},dir:function(bw,bv,by){var e=[],bx=bw[bv];while(bx&&bx.nodeType!==9&&(by===L||bx.nodeType!==1||!b(bx).is(by))){if(bx.nodeType===1){e.push(bx)}bx=bx[bv]}return e},nth:function(by,e,bw,bx){e=e||1;var bv=0;for(;by;by=by[bw]){if(by.nodeType===1&&++bv===e){break}}return by},sibling:function(bw,bv){var e=[];for(;bw;bw=bw.nextSibling){if(bw.nodeType===1&&bw!==bv){e.push(bw)}}return e}});function aG(bx,bw,e){bw=bw||0;if(b.isFunction(bw)){return b.grep(bx,function(bz,by){var bA=!!bw.call(bz,by,bz);return bA===e})}else{if(bw.nodeType){return b.grep(bx,function(bz,by){return(bz===bw)===e})}else{if(typeof bw==="string"){var bv=b.grep(bx,function(by){return by.nodeType===1});if(bp.test(bw)){return b.filter(bw,bv,!e)}else{bw=b.filter(bw,bv)}}}}return b.grep(bx,function(bz,by){return(b.inArray(bz,bw)>=0)===e})}function a(e){var bw=aR.split("|"),bv=e.createDocumentFragment();if(bv.createElement){while(bw.length){bv.createElement(bw.pop())}}return bv}var aR="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",ag=/ jQuery\d+="(?:\d+|null)"/g,ar=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,d=/<([\w:]+)/,w=/",""],legend:[1,"
        ","
        "],thead:[1,"","
        "],tr:[2,"","
        "],td:[3,"","
        "],col:[2,"","
        "],area:[1,"",""],_default:[0,"",""]},ac=a(av);ax.optgroup=ax.option;ax.tbody=ax.tfoot=ax.colgroup=ax.caption=ax.thead;ax.th=ax.td;if(!b.support.htmlSerialize){ax._default=[1,"div
        ","
        "]}b.fn.extend({text:function(e){if(b.isFunction(e)){return this.each(function(bw){var bv=b(this);bv.text(e.call(this,bw,bv.text()))})}if(typeof e!=="object"&&e!==L){return this.empty().append((this[0]&&this[0].ownerDocument||av).createTextNode(e))}return b.text(this)},wrapAll:function(e){if(b.isFunction(e)){return this.each(function(bw){b(this).wrapAll(e.call(this,bw))})}if(this[0]){var bv=b(e,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){bv.insertBefore(this[0])}bv.map(function(){var bw=this;while(bw.firstChild&&bw.firstChild.nodeType===1){bw=bw.firstChild}return bw}).append(this)}return this},wrapInner:function(e){if(b.isFunction(e)){return this.each(function(bv){b(this).wrapInner(e.call(this,bv))})}return this.each(function(){var bv=b(this),bw=bv.contents();if(bw.length){bw.wrapAll(e)}else{bv.append(e)}})},wrap:function(e){var bv=b.isFunction(e);return this.each(function(bw){b(this).wrapAll(bv?e.call(this,bw):e)})},unwrap:function(){return this.parent().each(function(){if(!b.nodeName(this,"body")){b(this).replaceWith(this.childNodes)}}).end()},append:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.appendChild(e)}})},prepend:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.insertBefore(e,this.firstChild)}})},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this)})}else{if(arguments.length){var e=b.clean(arguments);e.push.apply(e,this.toArray());return this.pushStack(e,"before",arguments)}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this.nextSibling)})}else{if(arguments.length){var e=this.pushStack(this,"after",arguments);e.push.apply(e,b.clean(arguments));return e}}},remove:function(e,bx){for(var bv=0,bw;(bw=this[bv])!=null;bv++){if(!e||b.filter(e,[bw]).length){if(!bx&&bw.nodeType===1){b.cleanData(bw.getElementsByTagName("*"));b.cleanData([bw])}if(bw.parentNode){bw.parentNode.removeChild(bw)}}}return this},empty:function(){for(var e=0,bv;(bv=this[e])!=null;e++){if(bv.nodeType===1){b.cleanData(bv.getElementsByTagName("*"))}while(bv.firstChild){bv.removeChild(bv.firstChild)}}return this},clone:function(bv,e){bv=bv==null?false:bv;e=e==null?bv:e;return this.map(function(){return b.clone(this,bv,e)})},html:function(bx){if(bx===L){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(ag,""):null}else{if(typeof bx==="string"&&!ae.test(bx)&&(b.support.leadingWhitespace||!ar.test(bx))&&!ax[(d.exec(bx)||["",""])[1].toLowerCase()]){bx=bx.replace(R,"<$1>");try{for(var bw=0,bv=this.length;bw1&&bw0?this.clone(true):this).get();b(bC[bA])[bv](by);bz=bz.concat(by)}return this.pushStack(bz,e,bC.selector)}}});function bg(e){if(typeof e.getElementsByTagName!=="undefined"){return e.getElementsByTagName("*")}else{if(typeof e.querySelectorAll!=="undefined"){return e.querySelectorAll("*")}else{return[]}}}function az(e){if(e.type==="checkbox"||e.type==="radio"){e.defaultChecked=e.checked}}function E(e){var bv=(e.nodeName||"").toLowerCase();if(bv==="input"){az(e)}else{if(bv!=="script"&&typeof e.getElementsByTagName!=="undefined"){b.grep(e.getElementsByTagName("input"),az)}}}function al(e){var bv=av.createElement("div");ac.appendChild(bv);bv.innerHTML=e.outerHTML;return bv.firstChild}b.extend({clone:function(by,bA,bw){var e,bv,bx,bz=b.support.html5Clone||!ah.test("<"+by.nodeName)?by.cloneNode(true):al(by);if((!b.support.noCloneEvent||!b.support.noCloneChecked)&&(by.nodeType===1||by.nodeType===11)&&!b.isXMLDoc(by)){ai(by,bz);e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){if(bv[bx]){ai(e[bx],bv[bx])}}}if(bA){t(by,bz);if(bw){e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){t(e[bx],bv[bx])}}}e=bv=null;return bz},clean:function(bw,by,bH,bA){var bF;by=by||av;if(typeof by.createElement==="undefined"){by=by.ownerDocument||by[0]&&by[0].ownerDocument||av}var bI=[],bB;for(var bE=0,bz;(bz=bw[bE])!=null;bE++){if(typeof bz==="number"){bz+=""}if(!bz){continue}if(typeof bz==="string"){if(!W.test(bz)){bz=by.createTextNode(bz)}else{bz=bz.replace(R,"<$1>");var bK=(d.exec(bz)||["",""])[1].toLowerCase(),bx=ax[bK]||ax._default,bD=bx[0],bv=by.createElement("div");if(by===av){ac.appendChild(bv)}else{a(by).appendChild(bv)}bv.innerHTML=bx[1]+bz+bx[2];while(bD--){bv=bv.lastChild}if(!b.support.tbody){var e=w.test(bz),bC=bK==="table"&&!e?bv.firstChild&&bv.firstChild.childNodes:bx[1]===""&&!e?bv.childNodes:[];for(bB=bC.length-1;bB>=0;--bB){if(b.nodeName(bC[bB],"tbody")&&!bC[bB].childNodes.length){bC[bB].parentNode.removeChild(bC[bB])}}}if(!b.support.leadingWhitespace&&ar.test(bz)){bv.insertBefore(by.createTextNode(ar.exec(bz)[0]),bv.firstChild)}bz=bv.childNodes}}var bG;if(!b.support.appendChecked){if(bz[0]&&typeof(bG=bz.length)==="number"){for(bB=0;bB=0){return bx+"px"}}else{return bx}}}});if(!b.support.opacity){b.cssHooks.opacity={get:function(bv,e){return au.test((e&&bv.currentStyle?bv.currentStyle.filter:bv.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":e?"1":""},set:function(by,bz){var bx=by.style,bv=by.currentStyle,e=b.isNumeric(bz)?"alpha(opacity="+bz*100+")":"",bw=bv&&bv.filter||bx.filter||"";bx.zoom=1;if(bz>=1&&b.trim(bw.replace(ak,""))===""){bx.removeAttribute("filter");if(bv&&!bv.filter){return}}bx.filter=ak.test(bw)?bw.replace(ak,e):bw+" "+e}}}b(function(){if(!b.support.reliableMarginRight){b.cssHooks.marginRight={get:function(bw,bv){var e;b.swap(bw,{display:"inline-block"},function(){if(bv){e=Z(bw,"margin-right","marginRight")}else{e=bw.style.marginRight}});return e}}}});if(av.defaultView&&av.defaultView.getComputedStyle){aI=function(by,bw){var bv,bx,e;bw=bw.replace(z,"-$1").toLowerCase();if((bx=by.ownerDocument.defaultView)&&(e=bx.getComputedStyle(by,null))){bv=e.getPropertyValue(bw);if(bv===""&&!b.contains(by.ownerDocument.documentElement,by)){bv=b.style(by,bw)}}return bv}}if(av.documentElement.currentStyle){aX=function(bz,bw){var bA,e,by,bv=bz.currentStyle&&bz.currentStyle[bw],bx=bz.style;if(bv===null&&bx&&(by=bx[bw])){bv=by}if(!bc.test(bv)&&bn.test(bv)){bA=bx.left;e=bz.runtimeStyle&&bz.runtimeStyle.left;if(e){bz.runtimeStyle.left=bz.currentStyle.left}bx.left=bw==="fontSize"?"1em":(bv||0);bv=bx.pixelLeft+"px";bx.left=bA;if(e){bz.runtimeStyle.left=e}}return bv===""?"auto":bv}}Z=aI||aX;function p(by,bw,bv){var bA=bw==="width"?by.offsetWidth:by.offsetHeight,bz=bw==="width"?an:a1,bx=0,e=bz.length;if(bA>0){if(bv!=="border"){for(;bx)<[^<]*)*<\/script>/gi,q=/^(?:select|textarea)/i,h=/\s+/,br=/([?&])_=[^&]*/,K=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,A=b.fn.load,aa={},r={},aE,s,aV=["*/"]+["*"];try{aE=bl.href}catch(aw){aE=av.createElement("a");aE.href="";aE=aE.href}s=K.exec(aE.toLowerCase())||[];function f(e){return function(by,bA){if(typeof by!=="string"){bA=by;by="*"}if(b.isFunction(bA)){var bx=by.toLowerCase().split(h),bw=0,bz=bx.length,bv,bB,bC;for(;bw=0){var e=bw.slice(by,bw.length);bw=bw.slice(0,by)}var bx="GET";if(bz){if(b.isFunction(bz)){bA=bz;bz=L}else{if(typeof bz==="object"){bz=b.param(bz,b.ajaxSettings.traditional);bx="POST"}}}var bv=this;b.ajax({url:bw,type:bx,dataType:"html",data:bz,complete:function(bC,bB,bD){bD=bC.responseText;if(bC.isResolved()){bC.done(function(bE){bD=bE});bv.html(e?b("
        ").append(bD.replace(a6,"")).find(e):bD)}if(bA){bv.each(bA,[bD,bB,bC])}}});return this},serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?b.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||q.test(this.nodeName)||aZ.test(this.type))}).map(function(e,bv){var bw=b(this).val();return bw==null?null:b.isArray(bw)?b.map(bw,function(by,bx){return{name:bv.name,value:by.replace(bs,"\r\n")}}):{name:bv.name,value:bw.replace(bs,"\r\n")}}).get()}});b.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(e,bv){b.fn[bv]=function(bw){return this.on(bv,bw)}});b.each(["get","post"],function(e,bv){b[bv]=function(bw,by,bz,bx){if(b.isFunction(by)){bx=bx||bz;bz=by;by=L}return b.ajax({type:bv,url:bw,data:by,success:bz,dataType:bx})}});b.extend({getScript:function(e,bv){return b.get(e,L,bv,"script")},getJSON:function(e,bv,bw){return b.get(e,bv,bw,"json")},ajaxSetup:function(bv,e){if(e){am(bv,b.ajaxSettings)}else{e=bv;bv=b.ajaxSettings}am(bv,e);return bv},ajaxSettings:{url:aE,isLocal:aM.test(s[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":aV},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":bb.String,"text html":true,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{context:true,url:true}},ajaxPrefilter:f(aa),ajaxTransport:f(r),ajax:function(bz,bx){if(typeof bz==="object"){bx=bz;bz=L}bx=bx||{};var bD=b.ajaxSetup({},bx),bS=bD.context||bD,bG=bS!==bD&&(bS.nodeType||bS instanceof b)?b(bS):b.event,bR=b.Deferred(),bN=b.Callbacks("once memory"),bB=bD.statusCode||{},bC,bH={},bO={},bQ,by,bL,bE,bI,bA=0,bw,bK,bJ={readyState:0,setRequestHeader:function(bT,bU){if(!bA){var e=bT.toLowerCase();bT=bO[e]=bO[e]||bT;bH[bT]=bU}return this},getAllResponseHeaders:function(){return bA===2?bQ:null},getResponseHeader:function(bT){var e;if(bA===2){if(!by){by={};while((e=aD.exec(bQ))){by[e[1].toLowerCase()]=e[2]}}e=by[bT.toLowerCase()]}return e===L?null:e},overrideMimeType:function(e){if(!bA){bD.mimeType=e}return this},abort:function(e){e=e||"abort";if(bL){bL.abort(e)}bF(0,e);return this}};function bF(bZ,bU,b0,bW){if(bA===2){return}bA=2;if(bE){clearTimeout(bE)}bL=L;bQ=bW||"";bJ.readyState=bZ>0?4:0;var bT,b4,b3,bX=bU,bY=b0?bj(bD,bJ,b0):L,bV,b2;if(bZ>=200&&bZ<300||bZ===304){if(bD.ifModified){if((bV=bJ.getResponseHeader("Last-Modified"))){b.lastModified[bC]=bV}if((b2=bJ.getResponseHeader("Etag"))){b.etag[bC]=b2}}if(bZ===304){bX="notmodified";bT=true}else{try{b4=G(bD,bY);bX="success";bT=true}catch(b1){bX="parsererror";b3=b1}}}else{b3=bX;if(!bX||bZ){bX="error";if(bZ<0){bZ=0}}}bJ.status=bZ;bJ.statusText=""+(bU||bX);if(bT){bR.resolveWith(bS,[b4,bX,bJ])}else{bR.rejectWith(bS,[bJ,bX,b3])}bJ.statusCode(bB);bB=L;if(bw){bG.trigger("ajax"+(bT?"Success":"Error"),[bJ,bD,bT?b4:b3])}bN.fireWith(bS,[bJ,bX]);if(bw){bG.trigger("ajaxComplete",[bJ,bD]);if(!(--b.active)){b.event.trigger("ajaxStop")}}}bR.promise(bJ);bJ.success=bJ.done;bJ.error=bJ.fail;bJ.complete=bN.add;bJ.statusCode=function(bT){if(bT){var e;if(bA<2){for(e in bT){bB[e]=[bB[e],bT[e]]}}else{e=bT[bJ.status];bJ.then(e,e)}}return this};bD.url=((bz||bD.url)+"").replace(bq,"").replace(c,s[1]+"//");bD.dataTypes=b.trim(bD.dataType||"*").toLowerCase().split(h);if(bD.crossDomain==null){bI=K.exec(bD.url.toLowerCase());bD.crossDomain=!!(bI&&(bI[1]!=s[1]||bI[2]!=s[2]||(bI[3]||(bI[1]==="http:"?80:443))!=(s[3]||(s[1]==="http:"?80:443))))}if(bD.data&&bD.processData&&typeof bD.data!=="string"){bD.data=b.param(bD.data,bD.traditional)}aW(aa,bD,bx,bJ);if(bA===2){return false}bw=bD.global;bD.type=bD.type.toUpperCase();bD.hasContent=!aQ.test(bD.type);if(bw&&b.active++===0){b.event.trigger("ajaxStart")}if(!bD.hasContent){if(bD.data){bD.url+=(M.test(bD.url)?"&":"?")+bD.data;delete bD.data}bC=bD.url;if(bD.cache===false){var bv=b.now(),bP=bD.url.replace(br,"$1_="+bv);bD.url=bP+((bP===bD.url)?(M.test(bD.url)?"&":"?")+"_="+bv:"")}}if(bD.data&&bD.hasContent&&bD.contentType!==false||bx.contentType){bJ.setRequestHeader("Content-Type",bD.contentType)}if(bD.ifModified){bC=bC||bD.url;if(b.lastModified[bC]){bJ.setRequestHeader("If-Modified-Since",b.lastModified[bC])}if(b.etag[bC]){bJ.setRequestHeader("If-None-Match",b.etag[bC])}}bJ.setRequestHeader("Accept",bD.dataTypes[0]&&bD.accepts[bD.dataTypes[0]]?bD.accepts[bD.dataTypes[0]]+(bD.dataTypes[0]!=="*"?", "+aV+"; q=0.01":""):bD.accepts["*"]);for(bK in bD.headers){bJ.setRequestHeader(bK,bD.headers[bK])}if(bD.beforeSend&&(bD.beforeSend.call(bS,bJ,bD)===false||bA===2)){bJ.abort();return false}for(bK in {success:1,error:1,complete:1}){bJ[bK](bD[bK])}bL=aW(r,bD,bx,bJ);if(!bL){bF(-1,"No Transport")}else{bJ.readyState=1;if(bw){bG.trigger("ajaxSend",[bJ,bD])}if(bD.async&&bD.timeout>0){bE=setTimeout(function(){bJ.abort("timeout")},bD.timeout)}try{bA=1;bL.send(bH,bF)}catch(bM){if(bA<2){bF(-1,bM)}else{throw bM}}}return bJ},param:function(e,bw){var bv=[],by=function(bz,bA){bA=b.isFunction(bA)?bA():bA;bv[bv.length]=encodeURIComponent(bz)+"="+encodeURIComponent(bA)};if(bw===L){bw=b.ajaxSettings.traditional}if(b.isArray(e)||(e.jquery&&!b.isPlainObject(e))){b.each(e,function(){by(this.name,this.value)})}else{for(var bx in e){v(bx,e[bx],bw,by)}}return bv.join("&").replace(k,"+")}});function v(bw,by,bv,bx){if(b.isArray(by)){b.each(by,function(bA,bz){if(bv||ap.test(bw)){bx(bw,bz)}else{v(bw+"["+(typeof bz==="object"||b.isArray(bz)?bA:"")+"]",bz,bv,bx)}})}else{if(!bv&&by!=null&&typeof by==="object"){for(var e in by){v(bw+"["+e+"]",by[e],bv,bx)}}else{bx(bw,by)}}}b.extend({active:0,lastModified:{},etag:{}});function bj(bD,bC,bz){var bv=bD.contents,bB=bD.dataTypes,bw=bD.responseFields,by,bA,bx,e;for(bA in bw){if(bA in bz){bC[bw[bA]]=bz[bA]}}while(bB[0]==="*"){bB.shift();if(by===L){by=bD.mimeType||bC.getResponseHeader("content-type")}}if(by){for(bA in bv){if(bv[bA]&&bv[bA].test(by)){bB.unshift(bA);break}}}if(bB[0] in bz){bx=bB[0]}else{for(bA in bz){if(!bB[0]||bD.converters[bA+" "+bB[0]]){bx=bA;break}if(!e){e=bA}}bx=bx||e}if(bx){if(bx!==bB[0]){bB.unshift(bx)}return bz[bx]}}function G(bH,bz){if(bH.dataFilter){bz=bH.dataFilter(bz,bH.dataType)}var bD=bH.dataTypes,bG={},bA,bE,bw=bD.length,bB,bC=bD[0],bx,by,bF,bv,e;for(bA=1;bA=bw.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();bw.animatedProperties[this.prop]=true;for(bA in bw.animatedProperties){if(bw.animatedProperties[bA]!==true){e=false}}if(e){if(bw.overflow!=null&&!b.support.shrinkWrapBlocks){b.each(["","X","Y"],function(bC,bD){bz.style["overflow"+bD]=bw.overflow[bC]})}if(bw.hide){b(bz).hide()}if(bw.hide||bw.show){for(bA in bw.animatedProperties){b.style(bz,bA,bw.orig[bA]);b.removeData(bz,"fxshow"+bA,true);b.removeData(bz,"toggle"+bA,true)}}bv=bw.complete;if(bv){bw.complete=false;bv.call(bz)}}return false}else{if(bw.duration==Infinity){this.now=bx}else{bB=bx-this.startTime;this.state=bB/bw.duration;this.pos=b.easing[bw.animatedProperties[this.prop]](this.state,bB,0,1,bw.duration);this.now=this.start+((this.end-this.start)*this.pos)}this.update()}return true}};b.extend(b.fx,{tick:function(){var bw,bv=b.timers,e=0;for(;e").appendTo(e),bw=bv.css("display");bv.remove();if(bw==="none"||bw===""){if(!a8){a8=av.createElement("iframe");a8.frameBorder=a8.width=a8.height=0}e.appendChild(a8);if(!m||!a8.createElement){m=(a8.contentWindow||a8.contentDocument).document;m.write((av.compatMode==="CSS1Compat"?"":"")+"");m.close()}bv=m.createElement(bx);m.body.appendChild(bv);bw=b.css(bv,"display");e.removeChild(a8)}Q[bx]=bw}return Q[bx]}var V=/^t(?:able|d|h)$/i,ad=/^(?:body|html)$/i;if("getBoundingClientRect" in av.documentElement){b.fn.offset=function(bI){var by=this[0],bB;if(bI){return this.each(function(e){b.offset.setOffset(this,bI,e)})}if(!by||!by.ownerDocument){return null}if(by===by.ownerDocument.body){return b.offset.bodyOffset(by)}try{bB=by.getBoundingClientRect()}catch(bF){}var bH=by.ownerDocument,bw=bH.documentElement;if(!bB||!b.contains(bw,by)){return bB?{top:bB.top,left:bB.left}:{top:0,left:0}}var bC=bH.body,bD=aK(bH),bA=bw.clientTop||bC.clientTop||0,bE=bw.clientLeft||bC.clientLeft||0,bv=bD.pageYOffset||b.support.boxModel&&bw.scrollTop||bC.scrollTop,bz=bD.pageXOffset||b.support.boxModel&&bw.scrollLeft||bC.scrollLeft,bG=bB.top+bv-bA,bx=bB.left+bz-bE;return{top:bG,left:bx}}}else{b.fn.offset=function(bF){var bz=this[0];if(bF){return this.each(function(bG){b.offset.setOffset(this,bF,bG)})}if(!bz||!bz.ownerDocument){return null}if(bz===bz.ownerDocument.body){return b.offset.bodyOffset(bz)}var bC,bw=bz.offsetParent,bv=bz,bE=bz.ownerDocument,bx=bE.documentElement,bA=bE.body,bB=bE.defaultView,e=bB?bB.getComputedStyle(bz,null):bz.currentStyle,bD=bz.offsetTop,by=bz.offsetLeft;while((bz=bz.parentNode)&&bz!==bA&&bz!==bx){if(b.support.fixedPosition&&e.position==="fixed"){break}bC=bB?bB.getComputedStyle(bz,null):bz.currentStyle;bD-=bz.scrollTop;by-=bz.scrollLeft;if(bz===bw){bD+=bz.offsetTop;by+=bz.offsetLeft;if(b.support.doesNotAddBorder&&!(b.support.doesAddBorderForTableAndCells&&V.test(bz.nodeName))){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}bv=bw;bw=bz.offsetParent}if(b.support.subtractsBorderForOverflowNotVisible&&bC.overflow!=="visible"){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}e=bC}if(e.position==="relative"||e.position==="static"){bD+=bA.offsetTop;by+=bA.offsetLeft}if(b.support.fixedPosition&&e.position==="fixed"){bD+=Math.max(bx.scrollTop,bA.scrollTop);by+=Math.max(bx.scrollLeft,bA.scrollLeft)}return{top:bD,left:by}}}b.offset={bodyOffset:function(e){var bw=e.offsetTop,bv=e.offsetLeft;if(b.support.doesNotIncludeMarginInBodyOffset){bw+=parseFloat(b.css(e,"marginTop"))||0;bv+=parseFloat(b.css(e,"marginLeft"))||0}return{top:bw,left:bv}},setOffset:function(bx,bG,bA){var bB=b.css(bx,"position");if(bB==="static"){bx.style.position="relative"}var bz=b(bx),bv=bz.offset(),e=b.css(bx,"top"),bE=b.css(bx,"left"),bF=(bB==="absolute"||bB==="fixed")&&b.inArray("auto",[e,bE])>-1,bD={},bC={},bw,by;if(bF){bC=bz.position();bw=bC.top;by=bC.left}else{bw=parseFloat(e)||0;by=parseFloat(bE)||0}if(b.isFunction(bG)){bG=bG.call(bx,bA,bv)}if(bG.top!=null){bD.top=(bG.top-bv.top)+bw}if(bG.left!=null){bD.left=(bG.left-bv.left)+by}if("using" in bG){bG.using.call(bx,bD)}else{bz.css(bD)}}};b.fn.extend({position:function(){if(!this[0]){return null}var bw=this[0],bv=this.offsetParent(),bx=this.offset(),e=ad.test(bv[0].nodeName)?{top:0,left:0}:bv.offset();bx.top-=parseFloat(b.css(bw,"marginTop"))||0;bx.left-=parseFloat(b.css(bw,"marginLeft"))||0;e.top+=parseFloat(b.css(bv[0],"borderTopWidth"))||0;e.left+=parseFloat(b.css(bv[0],"borderLeftWidth"))||0;return{top:bx.top-e.top,left:bx.left-e.left}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||av.body;while(e&&(!ad.test(e.nodeName)&&b.css(e,"position")==="static")){e=e.offsetParent}return e})}});b.each(["Left","Top"],function(bv,e){var bw="scroll"+e;b.fn[bw]=function(bz){var bx,by;if(bz===L){bx=this[0];if(!bx){return null}by=aK(bx);return by?("pageXOffset" in by)?by[bv?"pageYOffset":"pageXOffset"]:b.support.boxModel&&by.document.documentElement[bw]||by.document.body[bw]:bx[bw]}return this.each(function(){by=aK(this);if(by){by.scrollTo(!bv?bz:b(by).scrollLeft(),bv?bz:b(by).scrollTop())}else{this[bw]=bz}})}});function aK(e){return b.isWindow(e)?e:e.nodeType===9?e.defaultView||e.parentWindow:false}b.each(["Height","Width"],function(bv,e){var bw=e.toLowerCase();b.fn["inner"+e]=function(){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,"padding")):this[bw]():null};b.fn["outer"+e]=function(by){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,by?"margin":"border")):this[bw]():null};b.fn[bw]=function(bz){var bA=this[0];if(!bA){return bz==null?null:this}if(b.isFunction(bz)){return this.each(function(bE){var bD=b(this);bD[bw](bz.call(this,bE,bD[bw]()))})}if(b.isWindow(bA)){var bB=bA.document.documentElement["client"+e],bx=bA.document.body;return bA.document.compatMode==="CSS1Compat"&&bB||bx&&bx["client"+e]||bB}else{if(bA.nodeType===9){return Math.max(bA.documentElement["client"+e],bA.body["scroll"+e],bA.documentElement["scroll"+e],bA.body["offset"+e],bA.documentElement["offset"+e])}else{if(bz===L){var bC=b.css(bA,bw),by=parseFloat(bC);return b.isNumeric(by)?by:bC}else{return this.css(bw,typeof bz==="string"?bz:bz+"px")}}}}});bb.jQuery=bb.$=b;if(typeof define==="function"&&define.amd&&define.amd.jQuery){define("jquery",[],function(){return b})}})(window);/*! - * jQuery UI 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI - */ -(function(a,d){a.ui=a.ui||{};if(a.ui.version){return}a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(e,f){return typeof e==="number"?this.each(function(){var g=this;setTimeout(function(){a(g).focus();if(f){f.call(g)}},e)}):this._focus.apply(this,arguments)},scrollParent:function(){var e;if((a.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){e=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,"position",1))&&(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}else{e=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!e.length?a(document):e},zIndex:function(h){if(h!==d){return this.css("zIndex",h)}if(this.length){var f=a(this[0]),e,g;while(f.length&&f[0]!==document){e=f.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){g=parseInt(f.css("zIndex"),10);if(!isNaN(g)&&g!==0){return g}}f=f.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});a.each(["Width","Height"],function(g,e){var f=e==="Width"?["Left","Right"]:["Top","Bottom"],h=e.toLowerCase(),k={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};function j(m,l,i,n){a.each(f,function(){l-=parseFloat(a.curCSS(m,"padding"+this,true))||0;if(i){l-=parseFloat(a.curCSS(m,"border"+this+"Width",true))||0}if(n){l-=parseFloat(a.curCSS(m,"margin"+this,true))||0}});return l}a.fn["inner"+e]=function(i){if(i===d){return k["inner"+e].call(this)}return this.each(function(){a(this).css(h,j(this,i)+"px")})};a.fn["outer"+e]=function(i,l){if(typeof i!=="number"){return k["outer"+e].call(this,i)}return this.each(function(){a(this).css(h,j(this,i,true,l)+"px")})}});function c(g,e){var j=g.nodeName.toLowerCase();if("area"===j){var i=g.parentNode,h=i.name,f;if(!g.href||!h||i.nodeName.toLowerCase()!=="map"){return false}f=a("img[usemap=#"+h+"]")[0];return !!f&&b(f)}return(/input|select|textarea|button|object/.test(j)?!g.disabled:"a"==j?g.href||e:e)&&b(g)}function b(e){return !a(e).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}a.extend(a.expr[":"],{data:function(g,f,e){return !!a.data(g,e[3])},focusable:function(e){return c(e,!isNaN(a.attr(e,"tabindex")))},tabbable:function(g){var e=a.attr(g,"tabindex"),f=isNaN(e);return(f||e>=0)&&c(g,!f)}});a(function(){var e=document.body,f=e.appendChild(f=document.createElement("div"));f.offsetHeight;a.extend(f.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});a.support.minHeight=f.offsetHeight===100;a.support.selectstart="onselectstart" in f;e.removeChild(f).style.display="none"});a.extend(a.ui,{plugin:{add:function(f,g,j){var h=a.ui[f].prototype;for(var e in j){h.plugins[e]=h.plugins[e]||[];h.plugins[e].push([g,j[e]])}},call:function(e,g,f){var j=e.plugins[g];if(!j||!e.element[0].parentNode){return}for(var h=0;h0){return true}h[e]=1;g=(h[e]>0);h[e]=0;return g},isOverAxis:function(f,e,g){return(f>e)&&(f<(e+g))},isOver:function(j,f,i,h,e,g){return a.ui.isOverAxis(j,i,e)&&a.ui.isOverAxis(f,h,g)}})})(jQuery);/*! - * jQuery UI Widget 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Widget - */ -(function(b,d){if(b.cleanData){var c=b.cleanData;b.cleanData=function(f){for(var g=0,h;(h=f[g])!=null;g++){try{b(h).triggerHandler("remove")}catch(j){}}c(f)}}else{var a=b.fn.remove;b.fn.remove=function(e,f){return this.each(function(){if(!f){if(!e||b.filter(e,[this]).length){b("*",this).add([this]).each(function(){try{b(this).triggerHandler("remove")}catch(g){}})}}return a.call(b(this),e,f)})}}b.widget=function(f,h,e){var g=f.split(".")[0],j;f=f.split(".")[1];j=g+"-"+f;if(!e){e=h;h=b.Widget}b.expr[":"][j]=function(k){return !!b.data(k,f)};b[g]=b[g]||{};b[g][f]=function(k,l){if(arguments.length){this._createWidget(k,l)}};var i=new h();i.options=b.extend(true,{},i.options);b[g][f].prototype=b.extend(true,i,{namespace:g,widgetName:f,widgetEventPrefix:b[g][f].prototype.widgetEventPrefix||f,widgetBaseClass:j},e);b.widget.bridge(f,b[g][f])};b.widget.bridge=function(f,e){b.fn[f]=function(i){var g=typeof i==="string",h=Array.prototype.slice.call(arguments,1),j=this;i=!g&&h.length?b.extend.apply(null,[true,i].concat(h)):i;if(g&&i.charAt(0)==="_"){return j}if(g){this.each(function(){var k=b.data(this,f),l=k&&b.isFunction(k[i])?k[i].apply(k,h):k;if(l!==k&&l!==d){j=l;return false}})}else{this.each(function(){var k=b.data(this,f);if(k){k.option(i||{})._init()}else{b.data(this,f,new e(i,this))}})}return j}};b.Widget=function(e,f){if(arguments.length){this._createWidget(e,f)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(f,g){b.data(g,this.widgetName,this);this.element=b(g);this.options=b.extend(true,{},this.options,this._getCreateOptions(),f);var e=this;this.element.bind("remove."+this.widgetName,function(){e.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(f,g){var e=f;if(arguments.length===0){return b.extend({},this.options)}if(typeof f==="string"){if(g===d){return this.options[f]}e={};e[f]=g}this._setOptions(e);return this},_setOptions:function(f){var e=this;b.each(f,function(g,h){e._setOption(g,h)});return this},_setOption:function(e,f){this.options[e]=f;if(e==="disabled"){this.widget()[f?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",f)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(e,f,g){var j,i,h=this.options[e];g=g||{};f=b.Event(f);f.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase();f.target=this.element[0];i=f.originalEvent;if(i){for(j in i){if(!(j in f)){f[j]=i[j]}}}this.element.trigger(f,g);return !(b.isFunction(h)&&h.call(this.element[0],f,g)===false||f.isDefaultPrevented())}}})(jQuery);/*! - * jQuery UI Mouse 1.8.18 - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Mouse - * - * Depends: - * jquery.ui.widget.js - */ -(function(b,c){var a=false;b(document).mouseup(function(d){a=false});b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var d=this;this.element.bind("mousedown."+this.widgetName,function(e){return d._mouseDown(e)}).bind("click."+this.widgetName,function(e){if(true===b.data(e.target,d.widgetName+".preventClickEvent")){b.removeData(e.target,d.widgetName+".preventClickEvent");e.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(f){if(a){return}(this._mouseStarted&&this._mouseUp(f));this._mouseDownEvent=f;var e=this,g=(f.which==1),d=(typeof this.options.cancel=="string"&&f.target.nodeName?b(f.target).closest(this.options.cancel).length:false);if(!g||d||!this._mouseCapture(f)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(f)&&this._mouseDelayMet(f)){this._mouseStarted=(this._mouseStart(f)!==false);if(!this._mouseStarted){f.preventDefault();return true}}if(true===b.data(f.target,this.widgetName+".preventClickEvent")){b.removeData(f.target,this.widgetName+".preventClickEvent")}this._mouseMoveDelegate=function(h){return e._mouseMove(h)};this._mouseUpDelegate=function(h){return e._mouseUp(h)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);f.preventDefault();a=true;return true},_mouseMove:function(d){if(b.browser.msie&&!(document.documentMode>=9)&&!d.button){return this._mouseUp(d)}if(this._mouseStarted){this._mouseDrag(d);return d.preventDefault()}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,d)!==false);(this._mouseStarted?this._mouseDrag(d):this._mouseUp(d))}return !this._mouseStarted},_mouseUp:function(d){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;if(d.target==this._mouseDownEvent.target){b.data(d.target,this.widgetName+".preventClickEvent",true)}this._mouseStop(d)}return false},_mouseDistanceMet:function(d){return(Math.max(Math.abs(this._mouseDownEvent.pageX-d.pageX),Math.abs(this._mouseDownEvent.pageY-d.pageY))>=this.options.distance)},_mouseDelayMet:function(d){return this.mouseDelayMet},_mouseStart:function(d){},_mouseDrag:function(d){},_mouseStop:function(d){},_mouseCapture:function(d){return true}})})(jQuery);(function(c,d){c.widget("ui.resizable",c.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000},_create:function(){var f=this,k=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(k.aspectRatio),aspectRatio:k.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:k.helper||k.ghost||k.animate?k.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){this.element.wrap(c('
        ').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=k.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var l=this.handles.split(",");this.handles={};for(var g=0;g
        ');if(/sw|se|ne|nw/.test(j)){h.css({zIndex:++k.zIndex})}if("se"==j){h.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[j]=".ui-resizable-"+j;this.element.append(h)}}this._renderAxis=function(q){q=q||this.element;for(var n in this.handles){if(this.handles[n].constructor==String){this.handles[n]=c(this.handles[n],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var o=c(this.handles[n],this.element),p=0;p=/sw|ne|nw|se|n|s/.test(n)?o.outerHeight():o.outerWidth();var m=["padding",/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"].join("");q.css(m,p);this._proportionallyResize()}if(!c(this.handles[n]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!f.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}f.axis=i&&i[1]?i[1]:"se"}});if(k.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){if(k.disabled){return}c(this).removeClass("ui-resizable-autohide");f._handles.show()},function(){if(k.disabled){return}if(!f.resizing){c(this).addClass("ui-resizable-autohide");f._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var e=function(g){c(g).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){e(this.element);var f=this.element;f.after(this.originalElement.css({position:f.css("position"),width:f.outerWidth(),height:f.outerHeight(),top:f.css("top"),left:f.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);e(this.originalElement);return this},_mouseCapture:function(f){var g=false;for(var e in this.handles){if(c(this.handles[e])[0]==f.target){g=true}}return !this.options.disabled&&g},_mouseStart:function(g){var j=this.options,f=this.element.position(),e=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(e.is(".ui-draggable")||(/absolute/).test(e.css("position"))){e.css({position:"absolute",top:f.top,left:f.left})}this._renderProxy();var k=b(this.helper.css("left")),h=b(this.helper.css("top"));if(j.containment){k+=c(j.containment).scrollLeft()||0;h+=c(j.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:k,top:h};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:k,top:h};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:g.pageX,top:g.pageY};this.aspectRatio=(typeof j.aspectRatio=="number")?j.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var i=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",i=="auto"?this.axis+"-resize":i);e.addClass("ui-resizable-resizing");this._propagate("start",g);return true},_mouseDrag:function(e){var h=this.helper,g=this.options,m={},q=this,j=this.originalMousePosition,n=this.axis;var r=(e.pageX-j.left)||0,p=(e.pageY-j.top)||0;var i=this._change[n];if(!i){return false}var l=i.apply(this,[e,r,p]),k=c.browser.msie&&c.browser.version<7,f=this.sizeDiff;this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey){l=this._updateRatio(l,e)}l=this._respectSize(l,e);this._propagate("resize",e);h.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(l);this._trigger("resize",e,this.ui());return false},_mouseStop:function(h){this.resizing=false;var i=this.options,m=this;if(this._helper){var g=this._proportionallyResizeElements,e=g.length&&(/textarea/i).test(g[0].nodeName),f=e&&c.ui.hasScroll(g[0],"left")?0:m.sizeDiff.height,k=e?0:m.sizeDiff.width;var n={width:(m.helper.width()-k),height:(m.helper.height()-f)},j=(parseInt(m.element.css("left"),10)+(m.position.left-m.originalPosition.left))||null,l=(parseInt(m.element.css("top"),10)+(m.position.top-m.originalPosition.top))||null;if(!i.animate){this.element.css(c.extend(n,{top:l,left:j}))}m.helper.height(m.size.height);m.helper.width(m.size.width);if(this._helper&&!i.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",h);if(this._helper){this.helper.remove()}return false},_updateVirtualBoundaries:function(g){var j=this.options,i,h,f,k,e;e={minWidth:a(j.minWidth)?j.minWidth:0,maxWidth:a(j.maxWidth)?j.maxWidth:Infinity,minHeight:a(j.minHeight)?j.minHeight:0,maxHeight:a(j.maxHeight)?j.maxHeight:Infinity};if(this._aspectRatio||g){i=e.minHeight*this.aspectRatio;f=e.minWidth/this.aspectRatio;h=e.maxHeight*this.aspectRatio;k=e.maxWidth/this.aspectRatio;if(i>e.minWidth){e.minWidth=i}if(f>e.minHeight){e.minHeight=f}if(hl.width),s=a(l.height)&&i.minHeight&&(i.minHeight>l.height);if(h){l.width=i.minWidth}if(s){l.height=i.minHeight}if(t){l.width=i.maxWidth}if(m){l.height=i.maxHeight}var f=this.originalPosition.left+this.originalSize.width,p=this.position.top+this.size.height;var k=/sw|nw|w/.test(q),e=/nw|ne|n/.test(q);if(h&&k){l.left=f-i.minWidth}if(t&&k){l.left=f-i.maxWidth}if(s&&e){l.top=p-i.minHeight}if(m&&e){l.top=p-i.maxHeight}var n=!l.width&&!l.height;if(n&&!l.left&&l.top){l.top=null}else{if(n&&!l.top&&l.left){l.left=null}}return l},_proportionallyResize:function(){var k=this.options;if(!this._proportionallyResizeElements.length){return}var g=this.helper||this.element;for(var f=0;f');var e=c.browser.msie&&c.browser.version<7,g=(e?1:0),h=(e?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+h,height:this.element.outerHeight()+h,position:"absolute",left:this.elementOffset.left-g+"px",top:this.elementOffset.top-g+"px",zIndex:++i.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(g,f,e){return{width:this.originalSize.width+f}},w:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{left:i.left+f,width:g.width-f}},n:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{top:i.top+e,height:g.height-e}},s:function(g,f,e){return{height:this.originalSize.height+e}},se:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},sw:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[g,f,e]))},ne:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},nw:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[g,f,e]))}},_propagate:function(f,e){c.ui.plugin.call(this,f,[e,this.ui()]);(f!="resize"&&this._trigger(f,e,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});c.extend(c.ui.resizable,{version:"1.8.18"});c.ui.plugin.add("resizable","alsoResize",{start:function(f,g){var e=c(this).data("resizable"),i=e.options;var h=function(j){c(j).each(function(){var k=c(this);k.data("resizable-alsoresize",{width:parseInt(k.width(),10),height:parseInt(k.height(),10),left:parseInt(k.css("left"),10),top:parseInt(k.css("top"),10)})})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.parentNode){if(i.alsoResize.length){i.alsoResize=i.alsoResize[0];h(i.alsoResize)}else{c.each(i.alsoResize,function(j){h(j)})}}else{h(i.alsoResize)}},resize:function(g,i){var f=c(this).data("resizable"),j=f.options,h=f.originalSize,l=f.originalPosition;var k={height:(f.size.height-h.height)||0,width:(f.size.width-h.width)||0,top:(f.position.top-l.top)||0,left:(f.position.left-l.left)||0},e=function(m,n){c(m).each(function(){var q=c(this),r=c(this).data("resizable-alsoresize"),p={},o=n&&n.length?n:q.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];c.each(o,function(s,u){var t=(r[u]||0)+(k[u]||0);if(t&&t>=0){p[u]=t||null}});q.css(p)})};if(typeof(j.alsoResize)=="object"&&!j.alsoResize.nodeType){c.each(j.alsoResize,function(m,n){e(m,n)})}else{e(j.alsoResize)}},stop:function(e,f){c(this).removeData("resizable-alsoresize")}});c.ui.plugin.add("resizable","animate",{stop:function(i,n){var p=c(this).data("resizable"),j=p.options;var h=p._proportionallyResizeElements,e=h.length&&(/textarea/i).test(h[0].nodeName),f=e&&c.ui.hasScroll(h[0],"left")?0:p.sizeDiff.height,l=e?0:p.sizeDiff.width;var g={width:(p.size.width-l),height:(p.size.height-f)},k=(parseInt(p.element.css("left"),10)+(p.position.left-p.originalPosition.left))||null,m=(parseInt(p.element.css("top"),10)+(p.position.top-p.originalPosition.top))||null;p.element.animate(c.extend(g,m&&k?{top:m,left:k}:{}),{duration:j.animateDuration,easing:j.animateEasing,step:function(){var o={width:parseInt(p.element.css("width"),10),height:parseInt(p.element.css("height"),10),top:parseInt(p.element.css("top"),10),left:parseInt(p.element.css("left"),10)};if(h&&h.length){c(h[0]).css({width:o.width,height:o.height})}p._updateCache(o);p._propagate("resize",i)}})}});c.ui.plugin.add("resizable","containment",{start:function(f,r){var t=c(this).data("resizable"),j=t.options,l=t.element;var g=j.containment,k=(g instanceof c)?g.get(0):(/parent/.test(g))?l.parent().get(0):g;if(!k){return}t.containerElement=c(k);if(/document/.test(g)||g==document){t.containerOffset={left:0,top:0};t.containerPosition={left:0,top:0};t.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var n=c(k),i=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){i[p]=b(n.css("padding"+o))});t.containerOffset=n.offset();t.containerPosition=n.position();t.containerSize={height:(n.innerHeight()-i[3]),width:(n.innerWidth()-i[1])};var q=t.containerOffset,e=t.containerSize.height,m=t.containerSize.width,h=(c.ui.hasScroll(k,"left")?k.scrollWidth:m),s=(c.ui.hasScroll(k)?k.scrollHeight:e);t.parentData={element:k,left:q.left,top:q.top,width:h,height:s}}},resize:function(g,q){var t=c(this).data("resizable"),i=t.options,f=t.containerSize,p=t.containerOffset,m=t.size,n=t.position,r=t._aspectRatio||g.shiftKey,e={top:0,left:0},h=t.containerElement;if(h[0]!=document&&(/static/).test(h.css("position"))){e=p}if(n.left<(t._helper?p.left:0)){t.size.width=t.size.width+(t._helper?(t.position.left-p.left):(t.position.left-e.left));if(r){t.size.height=t.size.width/i.aspectRatio}t.position.left=i.helper?p.left:0}if(n.top<(t._helper?p.top:0)){t.size.height=t.size.height+(t._helper?(t.position.top-p.top):t.position.top);if(r){t.size.width=t.size.height*i.aspectRatio}t.position.top=t._helper?p.top:0}t.offset.left=t.parentData.left+t.position.left;t.offset.top=t.parentData.top+t.position.top;var l=Math.abs((t._helper?t.offset.left-e.left:(t.offset.left-e.left))+t.sizeDiff.width),s=Math.abs((t._helper?t.offset.top-e.top:(t.offset.top-p.top))+t.sizeDiff.height);var k=t.containerElement.get(0)==t.element.parent().get(0),j=/relative|absolute/.test(t.containerElement.css("position"));if(k&&j){l-=t.parentData.left}if(l+t.size.width>=t.parentData.width){t.size.width=t.parentData.width-l;if(r){t.size.height=t.size.width/t.aspectRatio}}if(s+t.size.height>=t.parentData.height){t.size.height=t.parentData.height-s;if(r){t.size.width=t.size.height*t.aspectRatio}}},stop:function(f,n){var q=c(this).data("resizable"),g=q.options,l=q.position,m=q.containerOffset,e=q.containerPosition,i=q.containerElement;var j=c(q.helper),r=j.offset(),p=j.outerWidth()-q.sizeDiff.width,k=j.outerHeight()-q.sizeDiff.height;if(q._helper&&!g.animate&&(/relative/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}if(q._helper&&!g.animate&&(/static/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}}});c.ui.plugin.add("resizable","ghost",{start:function(g,h){var e=c(this).data("resizable"),i=e.options,f=e.size;e.ghost=e.originalElement.clone();e.ghost.css({opacity:0.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof i.ghost=="string"?i.ghost:"");e.ghost.appendTo(e.helper)},resize:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost){e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})}},stop:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost&&e.helper){e.helper.get(0).removeChild(e.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(e,m){var p=c(this).data("resizable"),h=p.options,k=p.size,i=p.originalSize,j=p.originalPosition,n=p.axis,l=h._aspectRatio||e.shiftKey;h.grid=typeof h.grid=="number"?[h.grid,h.grid]:h.grid;var g=Math.round((k.width-i.width)/(h.grid[0]||1))*(h.grid[0]||1),f=Math.round((k.height-i.height)/(h.grid[1]||1))*(h.grid[1]||1);if(/^(se|s|e)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f}else{if(/^(ne)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f}else{if(/^(sw)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.left=j.left-g}else{p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f;p.position.left=j.left-g}}}}});var b=function(e){return parseInt(e,10)||0};var a=function(e){return !isNaN(parseInt(e,10))}})(jQuery);/*! - * jQuery hashchange event - v1.3 - 7/21/2010 - * http://benalman.com/projects/jquery-hashchange-plugin/ - * - * Copyright (c) 2010 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */ -(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$(' - - - -
        - -
        -
        aace Namespace Reference
        -
        -
        -
        - - - -

        -Namespaces

         alexa
         
        -

        Detailed Description

        -

        The aace namespace.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/namespaceaace_1_1alexa.html b/docs/docs/doxygen-docs/cpp/namespaceaace_1_1alexa.html deleted file mode 100644 index 443d59dd2..000000000 --- a/docs/docs/doxygen-docs/cpp/namespaceaace_1_1alexa.html +++ /dev/null @@ -1,480 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa Namespace Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa Namespace Reference
        -
        -
        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

        -Classes

        class  Alerts
         
        class  AlertsEngineInterface
         
        class  AlexaClient
         
        class  AlexaClientEngineInterface
         
        class  AlexaSpeaker
         
        class  AlexaSpeakerEngineInterface
         
        class  AudioPlayer
         
        class  AudioPlayerEngineInterface
         
        class  AuthProvider
         
        class  AuthProviderEngineInterface
         
        class  DeviceSetup
         
        class  DeviceSetupEngineInterface
         
        class  DoNotDisturb
         
        class  DoNotDisturbEngineInterface
         
        class  EqualizerController
         
        class  EqualizerControllerEngineInterface
         
        class  ExternalMediaAdapter
         
        class  ExternalMediaAdapterEngineInterface
         
        class  FeatureDiscoveryEngineInterface
         
        class  GlobalPreset
         
        class  LocalMediaSource
         
        class  LocalMediaSourceEngineInterface
         
        class  MediaPlaybackRequestor
         
        class  MediaPlaybackRequestorEngineInterface
         
        class  Notifications
         
        class  PlaybackController
         
        class  PlaybackControllerEngineInterface
         
        class  SpeechRecognizer
         
        class  SpeechRecognizerEngineInterface
         
        class  SpeechSynthesizer
         
        class  TemplateRuntime
         
        class  TemplateRuntimeEngineInterface
         
        - - - - - -

        -Enumerations

        enum  FocusState {
        -  FocusState::FOREGROUND, -
        -  FocusState::BACKGROUND, -
        -  FocusState::NONE -
        - }
         
        enum  PlayerActivity {
        -  PlayerActivity::IDLE, -
        -  PlayerActivity::PLAYING, -
        -  PlayerActivity::STOPPED, -
        -  PlayerActivity::PAUSED, -
        -  PlayerActivity::BUFFER_UNDERRUN, -
        -  PlayerActivity::FINISHED -
        - }
         
        - - - - - - - - - - - - - -

        -Functions

        std::string equalizerBandToString (const EqualizerControllerEngineInterface::EqualizerBand &band)
         
        std::ostream & operator<< (std::ostream &stream, const EqualizerControllerEngineInterface::EqualizerBand &band)
         
        std::string invocationReasonToString (const MediaPlaybackRequestorEngineInterface::InvocationReason &invocationReason)
         
        std::ostream & operator<< (std::ostream &stream, const MediaPlaybackRequestorEngineInterface::InvocationReason &invocationReason)
         
        std::string deviceSetupStatusCodeToString (const DeviceSetup::StatusCode &statusCode)
         
        std::string mediaPlaybackRequestorMediaPlaybackRequestStatusToString (const MediaPlaybackRequestor::MediaPlaybackRequestStatus &mediaPlaybackRequestStatus)
         
        -

        Detailed Description

        -

        The alexa namespace.

        -

        Enumeration Type Documentation

        - -

        ◆ FocusState

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::FocusState
        -
        -strong
        -
        -

        An enum class used to specify the levels of focus that a Channel can have.

        - - - - -
        Enumerator
        FOREGROUND 

        Represents the highest focus a Channel can have.

        -
        BACKGROUND 

        Represents the intermediate level focus a Channel can have.

        -
        NONE 

        This focus is used to represent when a Channel is not being used.

        -
        - -
        -
        - -

        ◆ PlayerActivity

        - -
        -
        - - - - - -
        - - - - -
        enum aace::alexa::PlayerActivity
        -
        -strong
        -
        -

        An enum class used to specify player activity for AudioPlayer and audio player state for TemplateRuntime.

        - - - - - - - -
        Enumerator
        IDLE 

        Audio playback has not yet begun.

        -
        PLAYING 

        Audio is currently playing.

        -
        STOPPED 

        Audio playback is stopped, either from a stop directive or playback error.

        -
        PAUSED 

        Audio playback is paused.

        -
        BUFFER_UNDERRUN 

        Audio playback is stalled because a buffer underrun has occurred.

        -
        FINISHED 

        Audio playback is finished.

        -
        - -
        -
        -

        Function Documentation

        - -

        ◆ equalizerBandToString()

        - -
        -
        - - - - - -
        - - - - - - - - -
        std::string aace::alexa::equalizerBandToString (const EqualizerControllerEngineInterface::EqualizerBandband)
        -
        -inline
        -
        -

        Provides a string representation for an EqualizerControllerEngineInterface::EqualizerBand

        -
        Parameters
        - - -
        bandThe EqualizerBand
        -
        -
        -
        Returns
        A string representation for the EqualizerBand
        - -
        -
        - -

        ◆ operator<<() [1/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        std::ostream& aace::alexa::operator<< (std::ostream & stream,
        const EqualizerControllerEngineInterface::EqualizerBandband 
        )
        -
        -inline
        -
        -

        Write an EqualizerControllerEngineInterface::EqualizerBand value to an ostream as a string

        -
        Parameters
        - - - -
        streamThe stream to write to
        bandThe EqualizerBand value to write to the ostream
        -
        -
        -
        Returns
        The ostream argument that was written to
        - -
        -
        - -

        ◆ invocationReasonToString()

        - -
        -
        - - - - - -
        - - - - - - - - -
        std::string aace::alexa::invocationReasonToString (const MediaPlaybackRequestorEngineInterface::InvocationReasoninvocationReason)
        -
        -inline
        -
        -

        Provides a string representation for an MediaPlaybackRequestorEngineInterface::InvocationReason

        -
        Parameters
        - - -
        invocationReasonThe InvocationReason
        -
        -
        -
        Returns
        A string representation for the InvocationReason
        - -
        -
        - -

        ◆ operator<<() [2/2]

        - -
        -
        - - - - - -
        - - - - - - - - - - - - - - - - - - -
        std::ostream& aace::alexa::operator<< (std::ostream & stream,
        const MediaPlaybackRequestorEngineInterface::InvocationReasoninvocationReason 
        )
        -
        -inline
        -
        -

        Write an MediaPlaybackRequestorEngineInterface::InvocationReason value to an ostream as a string

        -
        Parameters
        - - - -
        streamThe stream to write to
        bandThe InvocationReason value to write to the ostream
        -
        -
        -
        Returns
        The ostream argument that was written to
        - -
        -
        - -

        ◆ deviceSetupStatusCodeToString()

        - -
        -
        - - - - - -
        - - - - - - - - -
        std::string aace::alexa::deviceSetupStatusCodeToString (const DeviceSetup::StatusCodestatusCode)
        -
        -inline
        -
        -

        This function returns the std::string equivalent of the input enum value

        - -
        -
        - -

        ◆ mediaPlaybackRequestorMediaPlaybackRequestStatusToString()

        - -
        -
        - - - - - -
        - - - - - - - - -
        std::string aace::alexa::mediaPlaybackRequestorMediaPlaybackRequestStatusToString (const MediaPlaybackRequestor::MediaPlaybackRequestStatusmediaPlaybackRequestStatus)
        -
        -inline
        -
        -

        This function returns the std::string equivalent of the input enum value

        - -
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/namespaceaace_1_1car_control_1_1config_1_1action.html b/docs/docs/doxygen-docs/cpp/namespaceaace_1_1car_control_1_1config_1_1action.html deleted file mode 100644 index c300c0b17..000000000 --- a/docs/docs/doxygen-docs/cpp/namespaceaace_1_1car_control_1_1config_1_1action.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::carControl::config::action Namespace Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::carControl::config::action Namespace Reference
        -
        -
        -

        Detailed Description

        -

        Supported action IDs used to create action mapping 'semantic annotations' for capability instances on endpoints. Action mapping semantic annotations enable mapping specific additional utterances to the directives of individual capability instances.

        -
        Note
        These are the only supported action IDs.
        -
        See also
        https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/capability-primitives.html#semantic-annotation for additional reference, but note that state mappings are not supported.
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/namespacemembers.html b/docs/docs/doxygen-docs/cpp/namespacemembers.html deleted file mode 100644 index c62480f5c..000000000 --- a/docs/docs/doxygen-docs/cpp/namespacemembers.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - -Alexa Auto SDK: Namespace Members - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        Here is a list of all documented namespace members with links to the namespaces they belong to:
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/namespacemembers_enum.html b/docs/docs/doxygen-docs/cpp/namespacemembers_enum.html deleted file mode 100644 index 1f2c84fac..000000000 --- a/docs/docs/doxygen-docs/cpp/namespacemembers_enum.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - -Alexa Auto SDK: Namespace Members - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/namespacemembers_func.html b/docs/docs/doxygen-docs/cpp/namespacemembers_func.html deleted file mode 100644 index 44b7dca9d..000000000 --- a/docs/docs/doxygen-docs/cpp/namespacemembers_func.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Alexa Auto SDK: Namespace Members - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/nav_f.png b/docs/docs/doxygen-docs/cpp/nav_f.png deleted file mode 100644 index 72a58a529..000000000 Binary files a/docs/docs/doxygen-docs/cpp/nav_f.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/nav_g.png b/docs/docs/doxygen-docs/cpp/nav_g.png deleted file mode 100644 index 2093a237a..000000000 Binary files a/docs/docs/doxygen-docs/cpp/nav_g.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/nav_h.png b/docs/docs/doxygen-docs/cpp/nav_h.png deleted file mode 100644 index 33389b101..000000000 Binary files a/docs/docs/doxygen-docs/cpp/nav_h.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/open.png b/docs/docs/doxygen-docs/cpp/open.png deleted file mode 100644 index 30f75c7ef..000000000 Binary files a/docs/docs/doxygen-docs/cpp/open.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/pages.html b/docs/docs/doxygen-docs/cpp/pages.html deleted file mode 100644 index 90f91859a..000000000 --- a/docs/docs/doxygen-docs/cpp/pages.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Alexa Auto SDK: Related Pages - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - -
        - -
        -
        - - -
        - -
        - -
        -
        -
        Related Pages
        -
        -
        -
        Here is a list of all related documentation pages:
        - - -
         Deprecated List
        -
        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_0.html b/docs/docs/doxygen-docs/cpp/search/all_0.html deleted file mode 100644 index f25360b71..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_0.js b/docs/docs/doxygen-docs/cpp/search/all_0.js deleted file mode 100644 index afb326525..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_0.js +++ /dev/null @@ -1,92 +0,0 @@ -var searchData= -[ - ['aace',['aace',['../namespaceaace.html',1,'']]], - ['accesstoken',['accessToken',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a0f12d9c3aa3f7eedec761ed03d23342c',1,'aace::alexa::ExternalMediaAdapter::SessionState::accessToken()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#aa5e39976d05399f8ded96efd82760d9a',1,'aace::alexa::LocalMediaSource::SessionState::accessToken()']]], - ['acl_5fclient_5frequest',['ACL_CLIENT_REQUEST',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a5cd351b726751149c0464e3d9c23dcf1',1,'aace::alexa::AlexaClient']]], - ['acl_5fdisabled',['ACL_DISABLED',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aa81589ff9e0102b95f3eafce18463d1a',1,'aace::alexa::AlexaClient']]], - ['action',['action',['../namespaceaace_1_1car_control_1_1config_1_1action.html',1,'aace::carControl::config']]], - ['active',['active',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a47f42fb452b204956f732a8c3633d713',1,'aace::alexa::ExternalMediaAdapter::SessionState::active()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a68cbf53fad92de84fd8c6c857bbd7332',1,'aace::alexa::LocalMediaSource::SessionState::active()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432a18ff74f43da410c5529f7d6fca84f115',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::ACTIVE()']]], - ['ad',['AD',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836ae182ebbc166d73366e7986813a7fc5f1',1,'aace::alexa::ExternalMediaAdapter']]], - ['addactionadjustmode',['addActionAdjustMode',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ac3701e937a6c98a63a0a490e9a3ac36b',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionadjustrange',['addActionAdjustRange',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a54feaf77d254abc68dccc7eecf310ca2',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionsetmode',['addActionSetMode',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ae43f7497fa5bc94f1894c98da92f28d8',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionsetrange',['addActionSetRange',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a4ec117010b292fd7943827d0d7eafd8e',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionturnoff',['addActionTurnOff',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a2db0169e27a32bfddf2e7d54971ed121',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionturnon',['addActionTurnOn',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#aa590e83d2ea0c72701d97efe6419ed5e',1,'aace::carControl::config::CarControlConfiguration']]], - ['addaddressbook',['addAddressBook',['../classaace_1_1address_book_1_1_address_book.html#ae90d732ee31fed7fe40627d59ef766fb',1,'aace::addressBook::AddressBook']]], - ['addassetid',['addAssetId',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ae1038896bbf114e0ee90c50082e3dad4',1,'aace::carControl::config::CarControlConfiguration']]], - ['addcustomassetspath',['addCustomAssetsPath',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ae9bc03e46eaf50a6d6afbd90ee13064a',1,'aace::carControl::config::CarControlConfiguration']]], - ['adddefaultassetspath',['addDefaultAssetsPath',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a67b0af557aa409231020239fa7960255',1,'aace::carControl::config::CarControlConfiguration']]], - ['addentry',['addEntry',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#a5a399b367d1ea02327d05a2d1aaff742',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory']]], - ['addmembers',['addMembers',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a1aa86c1e0502e89b386bc6eabf2d8b61',1,'aace::carControl::config::CarControlConfiguration']]], - ['addmodecontroller',['addModeController',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a18a6ea9fc3eddc04da5c33fb73f468ef',1,'aace::carControl::config::CarControlConfiguration']]], - ['addname',['addName',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#a3708a57a7a2a997bc0c1087a092218e8',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName(const std::string &entryId, const std::string &name)=0'],['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#af68c92557d60f0c0c3940d29481bd1bf',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName(const std::string &entryId, const std::string &firstName, const std::string &lastName)=0'],['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#aa3bf0080f290fc5be55ed8237585efd1',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName(const std::string &entryId, const std::string &firstName, const std::string &lastName, const std::string &nickname, const std::string &phoneticFirstName="", const std::string &phoneticLastName="")=0']]], - ['addphone',['addPhone',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#ab6743a8145c3ada4d79aa88f120def97',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory']]], - ['addpostaladdress',['addPostalAddress',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#ae4006a027356a446f5bde1f6c783dcd4',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory']]], - ['addpowercontroller',['addPowerController',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ad33d73690c37cdb458e8bea1e8f81fb6',1,'aace::carControl::config::CarControlConfiguration']]], - ['addpreset',['addPreset',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a7f0af3338687ffe5ea0e11c06c6bc63b',1,'aace::carControl::config::CarControlConfiguration']]], - ['addrangecontroller',['addRangeController',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a012ef269ebec9731e5dfdcff40600a32',1,'aace::carControl::config::CarControlConfiguration']]], - ['addressbook',['AddressBook',['../classaace_1_1address_book_1_1_address_book.html',1,'aace::addressBook']]], - ['addressbookconfiguration',['AddressBookConfiguration',['../classaace_1_1address_book_1_1config_1_1_address_book_configuration.html',1,'aace::addressBook::config']]], - ['addtogglecontroller',['addToggleController',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a4be2edb0eec0751002dacd23cda0f3ea',1,'aace::carControl::config::CarControlConfiguration']]], - ['addvalue',['addValue',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a739b7a15004a3ea94382820e6d033152',1,'aace::carControl::config::CarControlConfiguration']]], - ['adjust_5fseek',['ADJUST_SEEK',['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea1b6236451a19ee2e11ae9fb2f1185059',1,'aace::alexa::ExternalMediaAdapter']]], - ['adjustmodecontrollervalue',['adjustModeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#aa19e4a06851823ba3b1ff60c73016ee4',1,'aace::carControl::CarControl']]], - ['adjustrangecontrollervalue',['adjustRangeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#a640312cd115ee0bc8cf86886f6d7ea90',1,'aace::carControl::CarControl']]], - ['adjustseek',['adjustSeek',['../classaace_1_1alexa_1_1_external_media_adapter.html#a84eae84e842d1c846cc5b325fc48d184',1,'aace::alexa::ExternalMediaAdapter::adjustSeek()'],['../classaace_1_1alexa_1_1_local_media_source.html#ae5514b48fe84f065ef8b115de0b6b8c3',1,'aace::alexa::LocalMediaSource::adjustSeek()']]], - ['albumid',['albumId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a671b6f011cd5f54fa23fb6b869ef9efb',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::albumId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a31bc8ee91146a94d157d6d91f8a3f366',1,'aace::alexa::LocalMediaSource::PlaybackState::albumId()']]], - ['albumname',['albumName',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#aaac4877bf0cbfcb4538b3bcceb4e85f2',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::albumName()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a0489c6562129c6520da07ff829805270',1,'aace::alexa::LocalMediaSource::PlaybackState::albumName()']]], - ['alertcreated',['alertCreated',['../classaace_1_1alexa_1_1_alerts.html#a25d28c1bff1fd629cee335f27160b3c7',1,'aace::alexa::Alerts']]], - ['alertdeleted',['alertDeleted',['../classaace_1_1alexa_1_1_alerts.html#aba0bb75596452b4853c545899fc11fc1',1,'aace::alexa::Alerts']]], - ['alerts',['Alerts',['../classaace_1_1alexa_1_1_alerts.html',1,'aace::alexa']]], - ['alerts_5fvolume',['ALERTS_VOLUME',['../classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html#a201c4dce279b98ad5e622ceabfbd8d37ae191df18ea126ad075083ed3967ee9c3',1,'aace::alexa::AlexaSpeakerEngineInterface']]], - ['alertsengineinterface',['AlertsEngineInterface',['../classaace_1_1alexa_1_1_alerts_engine_interface.html',1,'aace::alexa']]], - ['alertstate',['AlertState',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22',1,'aace::alexa::Alerts']]], - ['alertstatechanged',['alertStateChanged',['../classaace_1_1alexa_1_1_alerts.html#afc6cb0b2755cf2d90d50b070dec0162e',1,'aace::alexa::Alerts']]], - ['alexa',['alexa',['../namespaceaace_1_1alexa.html',1,'aace']]], - ['alexa_5fvolume',['ALEXA_VOLUME',['../classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html#a201c4dce279b98ad5e622ceabfbd8d37a9eacb55a5940aacff65f2779aaf9a37a',1,'aace::alexa::AlexaSpeakerEngineInterface']]], - ['alexaclient',['AlexaClient',['../classaace_1_1alexa_1_1_alexa_client.html',1,'aace::alexa']]], - ['alexaclientengineinterface',['AlexaClientEngineInterface',['../classaace_1_1alexa_1_1_alexa_client_engine_interface.html',1,'aace::alexa']]], - ['alexaconfiguration',['AlexaConfiguration',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html',1,'aace::alexa::config']]], - ['alexaconnectivity',['AlexaConnectivity',['../classaace_1_1connectivity_1_1_alexa_connectivity.html',1,'aace::connectivity']]], - ['alexapresentationtimeout',['AlexaPresentationTimeout',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html#acce82f90959c8f4f5dd2437094ffbe4e',1,'aace::apl::config::APLConfiguration']]], - ['alexapresentationtimeouttype',['AlexaPresentationTimeoutType',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html#a812a021a78a91ecaa55208dc13f9c161',1,'aace::apl::config::APLConfiguration']]], - ['alexaspeaker',['AlexaSpeaker',['../classaace_1_1alexa_1_1_alexa_speaker.html',1,'aace::alexa']]], - ['alexaspeakerengineinterface',['AlexaSpeakerEngineInterface',['../classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html',1,'aace::alexa']]], - ['am_5fradio',['AM_RADIO',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3abcae55301ccf164120b76b74b960f217',1,'aace::alexa::LocalMediaSource']]], - ['announcemaneuver',['announceManeuver',['../classaace_1_1navigation_1_1_navigation.html#af9e3309727e67403e92f31356b8998b7',1,'aace::navigation::Navigation']]], - ['announceroadregulation',['announceRoadRegulation',['../classaace_1_1navigation_1_1_navigation.html#af3321466338b4447077361f8918dc814',1,'aace::navigation::Navigation']]], - ['answer',['answer',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a749bb2ec8ad7bdb0efacd3c333aa4b00',1,'aace::phoneCallController::PhoneCallController']]], - ['apl',['APL',['../classaace_1_1apl_1_1_a_p_l.html',1,'aace::apl']]], - ['aplconfiguration',['APLConfiguration',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html',1,'aace::apl::config']]], - ['artistid',['artistId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ae8e46c9953136f5180b5d7a9d324b502',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::artistId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a9af882dbc200b638b54081e0248ff013',1,'aace::alexa::LocalMediaSource::PlaybackState::artistId()']]], - ['artistname',['artistName',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ac4a8c7f055df29c5df58a0f1f93aa774',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::artistName()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ac4e528288c407184054986b7c5f4401c',1,'aace::alexa::LocalMediaSource::PlaybackState::artistName()']]], - ['audiofocusevent',['audioFocusEvent',['../classaace_1_1audio_1_1_audio_output.html#a8c7eb63ef509c2e39888c0b841f1be5d',1,'aace::audio::AudioOutput']]], - ['audioinputprovider',['AudioInputProvider',['../classaace_1_1audio_1_1_audio_input_provider.html',1,'aace::audio']]], - ['audiooutput',['AudioOutput',['../classaace_1_1audio_1_1_audio_output.html',1,'aace::audio']]], - ['audiooutputprovider',['AudioOutputProvider',['../classaace_1_1audio_1_1_audio_output_provider.html',1,'aace::audio']]], - ['audioplayer',['AudioPlayer',['../classaace_1_1alexa_1_1_audio_player.html',1,'aace::alexa']]], - ['audioplayerengineinterface',['AudioPlayerEngineInterface',['../classaace_1_1alexa_1_1_audio_player_engine_interface.html',1,'aace::alexa']]], - ['audiostreamproperty',['AudioStreamProperty',['../classaace_1_1audio_1_1_audio_stream_property.html',1,'aace::audio::AudioStreamProperty'],['../classaace_1_1audio_1_1_audio_stream_property.html#a3ae61e4591b926ae67ab2985e6f1cd72',1,'aace::audio::AudioStreamProperty::AudioStreamProperty(const std::string &key, const std::string &value)'],['../classaace_1_1audio_1_1_audio_stream_property.html#a19a7611c34e77b001d97cc4b911362fb',1,'aace::audio::AudioStreamProperty::AudioStreamProperty(const AudioStreamProperty &other)']]], - ['autherror',['AuthError',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37',1,'aace::alexa::AuthProviderEngineInterface::AuthError()'],['../classaace_1_1alexa_1_1_auth_provider.html#a6f44b8c435407a4ff782fd931afc05ab',1,'aace::alexa::AuthProvider::AuthError()']]], - ['authfailure',['authFailure',['../classaace_1_1alexa_1_1_auth_provider.html#a5a2736293fd2ae80d5fdb85b372bbd50',1,'aace::alexa::AuthProvider']]], - ['authorization',['Authorization',['../classaace_1_1authorization_1_1_authorization.html',1,'aace::authorization']]], - ['authorization_5fexpired',['AUTHORIZATION_EXPIRED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ab5070f2cd4c592acd39c78b2023a56d3',1,'aace::alexa::AuthProviderEngineInterface::AUTHORIZATION_EXPIRED()'],['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aab5070f2cd4c592acd39c78b2023a56d3',1,'aace::cbl::CBL::AUTHORIZATION_EXPIRED()']]], - ['authorization_5ffailed',['AUTHORIZATION_FAILED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37adce1442cd971edf5002db43b36fffa35',1,'aace::alexa::AuthProviderEngineInterface']]], - ['authorization_5fpending',['AUTHORIZATION_PENDING',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a6b627cb5218d413b73e27bed70c35a3d',1,'aace::alexa::AuthProviderEngineInterface']]], - ['authorizationengineinterface',['AuthorizationEngineInterface',['../classaace_1_1authorization_1_1_authorization_engine_interface.html',1,'aace::authorization']]], - ['authorizationerror',['authorizationError',['../classaace_1_1authorization_1_1_authorization.html#a960cf0000db8889a9720af6a09e0a5a6',1,'aace::authorization::Authorization']]], - ['authorizationstate',['AuthorizationState',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a41738dc27f412d602c2fe572ec5eeac3',1,'aace::authorization::AuthorizationEngineInterface::AuthorizationState()'],['../classaace_1_1authorization_1_1_authorization.html#ae0290e2252f9cd0b623c203800350598',1,'aace::authorization::Authorization::AuthorizationState()']]], - ['authorizationstatechanged',['authorizationStateChanged',['../classaace_1_1authorization_1_1_authorization.html#a32778e7fae5a205a5e9fe48e086fd188',1,'aace::authorization::Authorization']]], - ['authorize',['authorize',['../classaace_1_1alexa_1_1_external_media_adapter.html#a5f13967ffe8b9e89cb4a4ae665944e17',1,'aace::alexa::ExternalMediaAdapter']]], - ['authorized',['AUTHORIZED',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a41738dc27f412d602c2fe572ec5eeac3ac62575d93ceab8ef551cb3fe0a3aea63',1,'aace::authorization::AuthorizationEngineInterface::AUTHORIZED()'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html#ab490eef2715a6dc3a5ccd8447e701f88',1,'aace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo::authorized()']]], - ['authorizedplayerinfo',['AuthorizedPlayerInfo',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html',1,'aace::alexa::ExternalMediaAdapter']]], - ['authorizing',['AUTHORIZING',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a41738dc27f412d602c2fe572ec5eeac3a4f402e87cfe645f9fe108b183ba979d4',1,'aace::authorization::AuthorizationEngineInterface']]], - ['authprovider',['AuthProvider',['../classaace_1_1alexa_1_1_auth_provider.html',1,'aace::alexa']]], - ['authproviderengineinterface',['AuthProviderEngineInterface',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html',1,'aace::alexa']]], - ['authstate',['AuthState',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792ec',1,'aace::alexa::AuthProviderEngineInterface::AuthState()'],['../classaace_1_1alexa_1_1_auth_provider.html#a703c765e6cb7c747a9fc6a12d81b7ef4',1,'aace::alexa::AuthProvider::AuthState()']]], - ['authstatechanged',['authStateChanged',['../classaace_1_1alexa_1_1_alexa_client.html#a6b469f0511ffdea1083044f0fe9f421e',1,'aace::alexa::AlexaClient::authStateChanged()'],['../classaace_1_1alexa_1_1_auth_provider.html#a38e948a90a4e5ef46e2bdc34eb0b19cf',1,'aace::alexa::AuthProvider::authStateChanged()']]], - ['automotive_5fstartup',['AUTOMOTIVE_STARTUP',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#a94fe59eef9dd34edd6b29cec376cd85baef51798806764343e79d65db51b79d7c',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['avs',['AVS',['../classaace_1_1alexa_1_1_alexa_client.html#ad71ae13d124da8a6a3003cb0a516e2cda4c2270e341a62ea54d593d50968aa912',1,'aace::alexa::AlexaClient']]], - ['alexa_20auto_20sdk_20for_20c_2b_2b',['Alexa Auto SDK for C++',['../index.html',1,'']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_1.html b/docs/docs/doxygen-docs/cpp/search/all_1.html deleted file mode 100644 index b13f0f7f3..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_1.js b/docs/docs/doxygen-docs/cpp/search/all_1.js deleted file mode 100644 index cdf9dbaae..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_1.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['background',['BACKGROUND',['../namespaceaace_1_1alexa.html#a8742c5f44018cc6c71ab05f1ee8afa9ba87ed58ce5596142e11cb65deb049bb4b',1,'aace::alexa']]], - ['bass',['BASS',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a733a5c62b16ef4f62b5c94d16f314cb3ae1618eb6a84ac61faefe0a87d5649689',1,'aace::alexa::EqualizerControllerEngineInterface']]], - ['bluetooth',['BLUETOOTH',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a8de8a62c3191fb6cf61e0ac4b2b59045',1,'aace::alexa::LocalMediaSource']]], - ['bluetoothprovider',['BluetoothProvider',['../classaace_1_1bluetooth_1_1_bluetooth_provider.html',1,'aace::bluetooth']]], - ['buffer_5funderrun',['BUFFER_UNDERRUN',['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa8c1a053a04b750c9a6a26ac7388a1d49',1,'aace::alexa']]], - ['busy',['BUSY',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefa802706a9238e2928077f97736854bad4',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['buttonpressed',['buttonPressed',['../classaace_1_1alexa_1_1_playback_controller.html#a425fe815370ff0ed45518eea30e5540d',1,'aace::alexa::PlaybackController']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_10.html b/docs/docs/doxygen-docs/cpp/search/all_10.html deleted file mode 100644 index d1345a1f0..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_10.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_10.js b/docs/docs/doxygen-docs/cpp/search/all_10.js deleted file mode 100644 index 80fe378b9..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_10.js +++ /dev/null @@ -1,31 +0,0 @@ -var searchData= -[ - ['tap_5fto_5ftalk',['TAP_TO_TALK',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html#a32b21eebeb377059d5548e7297c0846ba69d29d63897c939d1aab97d1bc7fd4a1',1,'aace::alexa::SpeechRecognizerEngineInterface']]], - ['taptotalk',['tapToTalk',['../classaace_1_1alexa_1_1_speech_recognizer.html#a43cf5fc0d4a1386949d5a5d4e00d804c',1,'aace::alexa::SpeechRecognizer']]], - ['templateruntime',['TemplateRuntime',['../classaace_1_1alexa_1_1_template_runtime.html',1,'aace::alexa']]], - ['templateruntimeengineinterface',['TemplateRuntimeEngineInterface',['../classaace_1_1alexa_1_1_template_runtime_engine_interface.html',1,'aace::alexa']]], - ['templateruntimetimeout',['TemplateRuntimeTimeout',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a27fcf72e4bbe6b90e7d86f14c09c577c',1,'aace::alexa::config::AlexaConfiguration']]], - ['templateruntimetimeouttype',['TemplateRuntimeTimeoutType',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abf68ff89209ddbd51fbd9fa7abe21b41',1,'aace::alexa::config::AlexaConfiguration']]], - ['texttospeech',['TextToSpeech',['../classaace_1_1text_to_speech_1_1_text_to_speech.html',1,'aace::textToSpeech']]], - ['thinking',['THINKING',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586ea18004389aa6f827c608aad2441a2bc53',1,'aace::alexa::AlexaClient']]], - ['thumbs_5fdown',['THUMBS_DOWN',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8cad0f46468c4c82a194d3addf70a4fd30c',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['thumbs_5fup',['THUMBS_UP',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8ca0681d0f86db4139eecabf879c0c63f77',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['time_5funknown',['TIME_UNKNOWN',['../classaace_1_1alexa_1_1_audio_player.html#a1dfdec2432e3caf9dc5f92d95aa231f1',1,'aace::alexa::AudioPlayer::TIME_UNKNOWN()'],['../classaace_1_1audio_1_1_audio_output.html#a6e6edf1cd19f4da033cfe3607d8872f3',1,'aace::audio::AudioOutput::TIME_UNKNOWN()']]], - ['timeout',['TIMEOUT',['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aa070a0fb40f6c308ab544b227660aadff',1,'aace::cbl::CBL']]], - ['timer',['TIMER',['../classaace_1_1metrics_1_1_metrics_uploader.html#a67e6fa51b9ef4b8a9b293870363eb4b5ab127d163c55a6603f3a37ce3a642c36d',1,'aace::metrics::MetricsUploader']]], - ['tinyurl',['tinyURL',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#aa5ddbdfee98be70abd85a447201c63fc',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::tinyURL()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a0b32a57129734f844645fe78264195e9',1,'aace::alexa::LocalMediaSource::PlaybackState::tinyURL()']]], - ['togglepressed',['togglePressed',['../classaace_1_1alexa_1_1_playback_controller.html#a4ea5e27e8b76ce7066a9878af02ae9f6',1,'aace::alexa::PlaybackController']]], - ['tokenrefreshinterval',['tokenRefreshInterval',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#ac1255f0d7e2c0e6a042b26e066bb9653',1,'aace::alexa::ExternalMediaAdapter::SessionState::tokenRefreshInterval()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a10073922619c9deba7c285325c7360a5',1,'aace::alexa::LocalMediaSource::SessionState::tokenRefreshInterval()']]], - ['track',['TRACK',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836ab82057c0f8a7631cf533363631986a00',1,'aace::alexa::ExternalMediaAdapter']]], - ['trackid',['trackId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#af73ca90a34010c26670249b726af82f3',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::trackId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a421de2ac72c7b632ececfa0472988c83',1,'aace::alexa::LocalMediaSource::PlaybackState::trackId()']]], - ['trackname',['trackName',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a4bf58240989f3cadeb677e07e7cdb59d',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::trackName()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#aecb7cc6074bd7e23c166ace53b5436c1',1,'aace::alexa::LocalMediaSource::PlaybackState::trackName()']]], - ['tracknumber',['trackNumber',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ac72282047646042715d88a4fa67287c3',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::trackNumber()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a5a9c2c7c21e3c64901f49d73e1f33197',1,'aace::alexa::LocalMediaSource::PlaybackState::trackNumber()']]], - ['trackoffset',['trackOffset',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a20733d0a377adf547315367bf6efeecf',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::trackOffset()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a03ddbda405c7381c38382f7f21e04635',1,'aace::alexa::LocalMediaSource::PlaybackState::trackOffset()']]], - ['treble',['TREBLE',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a733a5c62b16ef4f62b5c94d16f314cb3a6481bb83f7c61a109bd727e3fa30917b',1,'aace::alexa::EqualizerControllerEngineInterface']]], - ['trim',['TRIM',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfaa32049f307ffa78cf7b4586ac7d98e06',1,'aace::vehicle::config::VehicleConfiguration']]], - ['turnpowercontrolleroff',['turnPowerControllerOff',['../classaace_1_1car_control_1_1_car_control.html#a213c71cb12f115e5c826fca82ef62905',1,'aace::carControl::CarControl']]], - ['turnpowercontrolleron',['turnPowerControllerOn',['../classaace_1_1car_control_1_1_car_control.html#ae9386e89c038f9d215611f34eaeb7de4',1,'aace::carControl::CarControl']]], - ['turntogglecontrolleroff',['turnToggleControllerOff',['../classaace_1_1car_control_1_1_car_control.html#a817fe2332c70813506adae57188cc63a',1,'aace::carControl::CarControl']]], - ['turntogglecontrolleron',['turnToggleControllerOn',['../classaace_1_1car_control_1_1_car_control.html#a2fe461687d626b4530e2d25022851723',1,'aace::carControl::CarControl']]], - ['type',['type',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a8efae92e933eb314931ca275833cf5c7',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::type()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a934dcf2adab877ac18d865ce00b5b9c9',1,'aace::alexa::LocalMediaSource::PlaybackState::type()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_11.html b/docs/docs/doxygen-docs/cpp/search/all_11.html deleted file mode 100644 index 2be8b7111..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_11.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_11.js b/docs/docs/doxygen-docs/cpp/search/all_11.js deleted file mode 100644 index 30dba69b1..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_11.js +++ /dev/null @@ -1,22 +0,0 @@ -var searchData= -[ - ['unauthorized',['UNAUTHORIZED',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a41738dc27f412d602c2fe572ec5eeac3a0ab06e7c28266cc1ed601325013a874c',1,'aace::authorization::AuthorizationEngineInterface']]], - ['unauthorized_5fclient',['UNAUTHORIZED_CLIENT',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a0416665af33a040a02e16a0448a44c92',1,'aace::alexa::AuthProviderEngineInterface']]], - ['unfavorite',['UNFAVORITE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a5c2f8adadd8300e2e33031712bee3af9',1,'aace::alexa::ExternalMediaAdapter::UNFAVORITE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea5c2f8adadd8300e2e33031712bee3af9',1,'aace::alexa::ExternalMediaAdapter::UNFAVORITE()']]], - ['unfavorited',['UNFAVORITED',['../classaace_1_1alexa_1_1_external_media_adapter.html#a36a5f525a243568ee2bbdbdc2228d742a0b9b4237a1b7659eddb0cc00d9cdda9d',1,'aace::alexa::ExternalMediaAdapter']]], - ['uninitialized',['UNINITIALIZED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792ecadd652546039b18970b8dcf2cff824268',1,'aace::alexa::AuthProviderEngineInterface']]], - ['unknown',['UNKNOWN',['../classaace_1_1alexa_1_1_notifications.html#a745c257147c726a31f30ccf52c4f83d1a696b031073e74bf2cb98e5ef201d4aa3',1,'aace::alexa::Notifications::UNKNOWN()'],['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1a696b031073e74bf2cb98e5ef201d4aa3',1,'aace::network::NetworkInfoProviderEngineInterface::UNKNOWN()']]], - ['unknown_5ferror',['UNKNOWN_ERROR',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a9a10f345b0f755d461a8673a5e9ef6b4',1,'aace::alexa::AuthProviderEngineInterface']]], - ['unmute_5froute_5fguidance',['UNMUTE_ROUTE_GUIDANCE',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a0bcbef6583b6e672676fe25fa0b36e43',1,'aace::navigation::Navigation']]], - ['unmuted',['UNMUTED',['../classaace_1_1audio_1_1_audio_output.html#ad03cbdbbf172fd64a16c16b64d8a4b05a760f8b47116ad0f3481f06d99b17e12c',1,'aace::audio::AudioOutput']]], - ['unrecoverable_5ferror',['UNRECOVERABLE_ERROR',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aa0d7ca35e85a9f7eb269d17c780ab691',1,'aace::alexa::AlexaClient::UNRECOVERABLE_ERROR()'],['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792ecaa0d7ca35e85a9f7eb269d17c780ab691',1,'aace::alexa::AuthProviderEngineInterface::UNRECOVERABLE_ERROR()']]], - ['unsupported_5fgrant_5ftype',['UNSUPPORTED_GRANT_TYPE',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a58c1573951cde96d85d8fc7c0c850889',1,'aace::alexa::AuthProviderEngineInterface']]], - ['updateaplruntimeproperties',['updateAPLRuntimeProperties',['../classaace_1_1apl_1_1_a_p_l.html#a27fad281daef252e05b857e107a74677',1,'aace::apl::APL']]], - ['updatemessagesstatus',['updateMessagesStatus',['../classaace_1_1messaging_1_1_messaging.html#aaf53ed5e18038e934141b122d02743d4',1,'aace::messaging::Messaging']]], - ['updatemessagesstatusfailed',['updateMessagesStatusFailed',['../classaace_1_1messaging_1_1_messaging.html#aeac6a0a8cc3ee421b406077ff184ad60',1,'aace::messaging::Messaging']]], - ['updatemessagesstatussucceeded',['updateMessagesStatusSucceeded',['../classaace_1_1messaging_1_1_messaging.html#ac000677cb85763161fc18d852eb3d663',1,'aace::messaging::Messaging']]], - ['updatemessagingendpointstate',['updateMessagingEndpointState',['../classaace_1_1messaging_1_1_messaging.html#a82badff7bcfd0175ecaadf2ddb6fd9b5',1,'aace::messaging::Messaging']]], - ['uploadconversations',['uploadConversations',['../classaace_1_1messaging_1_1_messaging.html#adae9c5df0e8a1b5723fecefd2f677f0c',1,'aace::messaging::Messaging']]], - ['usb',['USB',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a7aca5ec618f7317328dcd7014cf9bdcf',1,'aace::alexa::LocalMediaSource']]], - ['username',['userName',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a3cdb22dff7dd902f4ce60eb945fc15b8',1,'aace::alexa::ExternalMediaAdapter::SessionState::userName()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a94c0ace7076a16849d18bf34fb157a2c',1,'aace::alexa::LocalMediaSource::SessionState::userName()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_12.html b/docs/docs/doxygen-docs/cpp/search/all_12.html deleted file mode 100644 index 13c526372..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_12.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_12.js b/docs/docs/doxygen-docs/cpp/search/all_12.js deleted file mode 100644 index dc186f425..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_12.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['validationdata',['validationData',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html#a44eb13f37d92cad2d4d31ab0cda8b42e',1,'aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo']]], - ['validationmethod',['validationMethod',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html#a564feaee70d1dda1b132669fa212b2c8',1,'aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo']]], - ['vehicle_5fidentifier',['VEHICLE_IDENTIFIER',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa85399bf95fd69bdc2f006fd5490aa748',1,'aace::vehicle::config::VehicleConfiguration']]], - ['vehicleconfiguration',['VehicleConfiguration',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html',1,'aace::vehicle::config']]], - ['vehicleproperty',['VehicleProperty',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a8c75abd04aaf80ed9057f1b940e83bd7',1,'aace::vehicle::config::VehicleConfiguration']]], - ['vehiclepropertytype',['VehiclePropertyType',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cf',1,'aace::vehicle::config::VehicleConfiguration']]], - ['verbose',['VERBOSE',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786aec1f06e9fb39c4ef0729b3c7c9c8e8cc',1,'aace::logger::LoggerEngineInterface']]], - ['version',['VERSION',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa021321e8c168ba3ae39ce3a2e7b3ec87',1,'aace::vehicle::config::VehicleConfiguration']]], - ['volumechanged',['volumeChanged',['../classaace_1_1alexa_1_1_external_media_adapter.html#ac73f6dd4d24881723c7237da431dea0d',1,'aace::alexa::ExternalMediaAdapter::volumeChanged()'],['../classaace_1_1alexa_1_1_local_media_source.html#aa4a2d08e30728bcfb35bcba0f4921aa1',1,'aace::alexa::LocalMediaSource::volumeChanged()'],['../classaace_1_1audio_1_1_audio_output.html#a1a6e4c80146a448b4532f80f613dba11',1,'aace::audio::AudioOutput::volumeChanged()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_13.html b/docs/docs/doxygen-docs/cpp/search/all_13.html deleted file mode 100644 index b4a8bca69..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_13.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_13.js b/docs/docs/doxygen-docs/cpp/search/all_13.js deleted file mode 100644 index 5236a6fc0..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_13.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['wakeword',['WAKEWORD',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html#a32b21eebeb377059d5548e7297c0846bacb8de769bb1ad99fe7114fa74fc11e72',1,'aace::alexa::SpeechRecognizerEngineInterface']]], - ['wakeworddetected',['wakewordDetected',['../classaace_1_1alexa_1_1_speech_recognizer.html#adb2ff621353bb47de5e4d1d41662b278',1,'aace::alexa::SpeechRecognizer']]], - ['warn',['WARN',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786a32bd8a1db2275458673903bdb84cb277',1,'aace::logger::LoggerEngineInterface']]], - ['write_5ftimedout',['WRITE_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a97af85d432104a37a1d183a76f05ad98',1,'aace::alexa::AlexaClient']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_14.html b/docs/docs/doxygen-docs/cpp/search/all_14.html deleted file mode 100644 index fb4d0ecc7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_14.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_14.js b/docs/docs/doxygen-docs/cpp/search/all_14.js deleted file mode 100644 index 20296cf53..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_14.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['year',['YEAR',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfad18101729d290479023d5eceeb29c9cf',1,'aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_15.html b/docs/docs/doxygen-docs/cpp/search/all_15.html deleted file mode 100644 index 8afe9a033..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_15.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_15.js b/docs/docs/doxygen-docs/cpp/search/all_15.js deleted file mode 100644 index ede04ac69..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_15.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['zoom_5fin',['ZOOM_IN',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a9fb15123c848cda02eec2316e765134a',1,'aace::navigation::Navigation']]], - ['zoom_5fout',['ZOOM_OUT',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3aa2ef1b00efd83e548ce99f6ead83bacd',1,'aace::navigation::Navigation']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_16.html b/docs/docs/doxygen-docs/cpp/search/all_16.html deleted file mode 100644 index e511edbc1..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_16.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_16.js b/docs/docs/doxygen-docs/cpp/search/all_16.js deleted file mode 100644 index 2a913455b..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_16.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['_7eauthorization',['~Authorization',['../classaace_1_1authorization_1_1_authorization.html#a31e6849b0c9fc20dd58b70fb68db89d2',1,'aace::authorization::Authorization']]], - ['_7ecarcontrol',['~CarControl',['../classaace_1_1car_control_1_1_car_control.html#a2a6f08b35b122c21fef79c0304a77d0a',1,'aace::carControl::CarControl']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_2.html b/docs/docs/doxygen-docs/cpp/search/all_2.html deleted file mode 100644 index 9543c57b1..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_2.js b/docs/docs/doxygen-docs/cpp/search/all_2.js deleted file mode 100644 index d80325337..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_2.js +++ /dev/null @@ -1,89 +0,0 @@ -var searchData= -[ - ['call_5fnot_5fin_5fprogress',['CALL_NOT_IN_PROGRESS',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a6a73274c0233185e56bf632c6b069893ae59b96ef9585b66ce2095b383e44af62',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['call_5freceived',['CALL_RECEIVED',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432a832d7a4a7c429e4b54298bfa71b0bb73',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['calleridreceived',['callerIdReceived',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a9f43a4313a18f23dda607f839bbd0081',1,'aace::phoneCallController::PhoneCallController']]], - ['callerror',['CallError',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fef',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::CallError()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#ae7491c5cce0b1868dfb1fefd0a2e52d3',1,'aace::phoneCallController::PhoneCallController::CallError()']]], - ['callfailed',['callFailed',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a350aed0aa2c701a4423dfd008ce61aca',1,'aace::phoneCallController::PhoneCallController']]], - ['callingdeviceconfigurationproperty',['CallingDeviceConfigurationProperty',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a84647b3bad59bc01079e1addb1d3a2b6',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::CallingDeviceConfigurationProperty()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#ae8320021335ca082bdcf800786d5c825',1,'aace::phoneCallController::PhoneCallController::CallingDeviceConfigurationProperty()']]], - ['callstate',['CallState',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::CallState()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a000a8a46c8b591fed67d17d531028efa',1,'aace::phoneCallController::PhoneCallController::CallState()']]], - ['callstatechanged',['callStateChanged',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a884b898f29116af5cb74c3f02d73cc1d',1,'aace::phoneCallController::PhoneCallController']]], - ['cancel',['cancel',['../classaace_1_1cbl_1_1_c_b_l.html#a08eafdc469f9d7d282878c5caa016237',1,'aace::cbl::CBL']]], - ['cancelauthorization',['cancelAuthorization',['../classaace_1_1authorization_1_1_authorization.html#a6a7a83d21ddf58261ef0df5b87ae911d',1,'aace::authorization::Authorization']]], - ['cancelnavigation',['cancelNavigation',['../classaace_1_1navigation_1_1_navigation.html#afbda005d6f22d549b01b3700144f1d2a',1,'aace::navigation::Navigation']]], - ['capabilitiesreceived',['capabilitiesReceived',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#a3d358ef1b99c6d7d781ae32cc0c66845',1,'aace::textToSpeech::TextToSpeech']]], - ['carcontrol',['CarControl',['../classaace_1_1car_control_1_1_car_control.html',1,'aace::carControl::CarControl'],['../classaace_1_1car_control_1_1_car_control.html#a84ce7f162332e09c9e7ff35f240ca1d4',1,'aace::carControl::CarControl::CarControl()']]], - ['carcontrolconfiguration',['CarControlConfiguration',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html',1,'aace::carControl::config']]], - ['cbl',['CBL',['../classaace_1_1cbl_1_1_c_b_l.html',1,'aace::cbl']]], - ['cblconfiguration',['CBLConfiguration',['../classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html',1,'aace::cbl::config']]], - ['cblstate',['CBLState',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2bab',1,'aace::cbl::CBL']]], - ['cblstatechanged',['cblStateChanged',['../classaace_1_1cbl_1_1_c_b_l.html#adf012d535ed61ac2f0df50a8dd01cac7',1,'aace::cbl::CBL']]], - ['cblstatechangedreason',['CBLStateChangedReason',['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0a',1,'aace::cbl::CBL']]], - ['center_5fmap_5fon_5fcurrent_5flocation',['CENTER_MAP_ON_CURRENT_LOCATION',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a86b3adee9cf3a962e17f0b0a5ffc4bd8',1,'aace::navigation::Navigation']]], - ['channel',['CHANNEL',['../classaace_1_1alexa_1_1_local_media_source.html#ae2468e3779807990305dfd341ca3d19daf52e9c50a060add65a035429b2a22229',1,'aace::alexa::LocalMediaSource']]], - ['clearallexecutecommands',['clearAllExecuteCommands',['../classaace_1_1apl_1_1_a_p_l.html#a7ea358a32c50da5fbe733bb370e640a2',1,'aace::apl::APL']]], - ['clearcard',['clearCard',['../classaace_1_1apl_1_1_a_p_l.html#a6831186c4572d71e2094271563c1a805',1,'aace::apl::APL']]], - ['cleardocument',['clearDocument',['../classaace_1_1apl_1_1_a_p_l.html#a4c115c7161d6061ae7a1d72436e5c587',1,'aace::apl::APL']]], - ['clearplayerinfo',['clearPlayerInfo',['../classaace_1_1alexa_1_1_template_runtime.html#a173cf6b23048bc7ee8436e931db3b5fc',1,'aace::alexa::TemplateRuntime']]], - ['clearrefreshtoken',['clearRefreshToken',['../classaace_1_1cbl_1_1_c_b_l.html#aabf78f56e306cc7cfe0d46ac084fbaf1',1,'aace::cbl::CBL']]], - ['cleartemplate',['clearTemplate',['../classaace_1_1alexa_1_1_template_runtime.html#ace5c19caa541744cdc358bf6f375e259',1,'aace::alexa::TemplateRuntime']]], - ['code_5fpair_5fexpired',['CODE_PAIR_EXPIRED',['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aa148d26ab0a4875d4d779000bb517c11b',1,'aace::cbl::CBL']]], - ['code_5fpair_5freceived',['CODE_PAIR_RECEIVED',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2baba2d3f989f023b33dc57c7a334f05fea34',1,'aace::cbl::CBL']]], - ['compact_5fdisc',['COMPACT_DISC',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a22339bd4fde59838518b6304cb6a0caf',1,'aace::alexa::LocalMediaSource']]], - ['completed',['COMPLETED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a8f7afecbc8fbc4cd0f50a57d1172482e',1,'aace::alexa::Alerts']]], - ['configurationfile',['ConfigurationFile',['../classaace_1_1core_1_1config_1_1_configuration_file.html',1,'aace::core::config']]], - ['configure',['configure',['../classaace_1_1core_1_1_engine.html#a224b8c7fe1f66b210d4851ac31082364',1,'aace::core::Engine::configure(std::initializer_list< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)=0'],['../classaace_1_1core_1_1_engine.html#afe5c533283f9f79917c0a5ddfbd0e718',1,'aace::core::Engine::configure(std::vector< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)=0'],['../classaace_1_1core_1_1_engine.html#acf93c7857ba5151ae88f8781425d4fac',1,'aace::core::Engine::configure(std::shared_ptr< aace::core::config::EngineConfiguration > configuration)=0']]], - ['connected',['CONNECTED',['../classaace_1_1alexa_1_1_alexa_client.html#a375451d4d9cb626701ac8cbaa02ffbe2aa5afd6edd5336d91316964e493936858',1,'aace::alexa::AlexaClient::CONNECTED()'],['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1aa5afd6edd5336d91316964e493936858',1,'aace::network::NetworkInfoProviderEngineInterface::CONNECTED()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a811798c0331570b684648f0cd71a82a8aa5afd6edd5336d91316964e493936858',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::CONNECTED()']]], - ['connecting',['CONNECTING',['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1a9a14f95e151eec641316e7c784ce832d',1,'aace::network::NetworkInfoProviderEngineInterface']]], - ['connection_5fthrottled',['CONNECTION_THROTTLED',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a8ca1e58168f20f0b69f8ae91fd3426f7',1,'aace::alexa::AlexaClient']]], - ['connection_5ftimedout',['CONNECTION_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a1e5d3c84593c457cee72e18634f28914',1,'aace::alexa::AlexaClient']]], - ['connectionchangedreason',['ConnectionChangedReason',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05',1,'aace::alexa::AlexaClient']]], - ['connectionstate',['ConnectionState',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a811798c0331570b684648f0cd71a82a8',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::ConnectionState()'],['../classaace_1_1messaging_1_1_messaging.html#aa70529b477113d86c1cf2f2d9bb9b0b6',1,'aace::messaging::Messaging::ConnectionState()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a05037f25d4285444a0ae111af231fe36',1,'aace::phoneCallController::PhoneCallController::ConnectionState()']]], - ['connectionstatechanged',['connectionStateChanged',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#acaa5a6e69479b162c2783134f62ab43c',1,'aace::phoneCallController::PhoneCallController']]], - ['connectionstatus',['ConnectionStatus',['../classaace_1_1alexa_1_1_alexa_client.html#a375451d4d9cb626701ac8cbaa02ffbe2',1,'aace::alexa::AlexaClient']]], - ['connectionstatuschanged',['connectionStatusChanged',['../classaace_1_1alexa_1_1_alexa_client.html#a70491bf5bb02e0fce4d8fcf2bc206261',1,'aace::alexa::AlexaClient::connectionStatusChanged(ConnectionStatus status, ConnectionChangedReason reason)'],['../classaace_1_1alexa_1_1_alexa_client.html#a11c3ae215d9b4102fbd53a72ccee7b25',1,'aace::alexa::AlexaClient::connectionStatusChanged(ConnectionStatus status, ConnectionChangedReason reason, std::vector< ConnectionStatusInfo > detailed)']]], - ['connectionstatusinfo',['ConnectionStatusInfo',['../structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info.html',1,'aace::alexa::AlexaClient']]], - ['connectiontype',['ConnectionType',['../classaace_1_1alexa_1_1_alexa_client.html#ad71ae13d124da8a6a3003cb0a516e2cd',1,'aace::alexa::AlexaClient']]], - ['connectivityeventresponse',['connectivityEventResponse',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#acaabd74d3f84b3e21c97a6e85e97b07c',1,'aace::connectivity::AlexaConnectivity']]], - ['connectivitystatechange',['connectivityStateChange',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#ac59837802c8aa3d7abdb526019e4cc34',1,'aace::connectivity::AlexaConnectivity']]], - ['contentselector',['ContentSelector',['../classaace_1_1alexa_1_1_local_media_source.html#ae2468e3779807990305dfd341ca3d19d',1,'aace::alexa::LocalMediaSource']]], - ['controldisplay',['ControlDisplay',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3',1,'aace::navigation::Navigation']]], - ['conversationsreport',['conversationsReport',['../classaace_1_1messaging_1_1_messaging.html#afa197b45ff57fd137480b18ff8f0d9cd',1,'aace::messaging::Messaging']]], - ['counter',['COUNTER',['../classaace_1_1metrics_1_1_metrics_uploader.html#a67e6fa51b9ef4b8a9b293870363eb4b5a125e831262b4dbbd68c6878c5d3759f6',1,'aace::metrics::MetricsUploader']]], - ['coverid',['coverId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ad0ddda86a145a2d25e053c41c75fa6d9',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::coverId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a0a697b06e34e1687628a00d7a9e06f55',1,'aace::alexa::LocalMediaSource::PlaybackState::coverId()']]], - ['create',['create',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a09e0dfb274d946c2b2a7d1726c0586c3',1,'aace::carControl::config::CarControlConfiguration::create()'],['../classaace_1_1core_1_1config_1_1_stream_configuration.html#a7168bd10c4756eb4087609edb9a4d587',1,'aace::core::config::StreamConfiguration::create()'],['../classaace_1_1core_1_1config_1_1_configuration_file.html#ad96c069ff3ba56714d05a1df4110c817',1,'aace::core::config::ConfigurationFile::create()']]], - ['createaddressbookconfig',['createAddressBookConfig',['../classaace_1_1address_book_1_1config_1_1_address_book_configuration.html#a4363e6e7ef7334f5ac9264725040e595',1,'aace::addressBook::config::AddressBookConfiguration']]], - ['createalertsconfig',['createAlertsConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#af7a3007198c8d8e47ce33edbf5c902a7',1,'aace::alexa::config::AlexaConfiguration']]], - ['createalexapresentationtimeoutconfig',['createAlexaPresentationTimeoutConfig',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html#a56ef719eddebda92b88505f908a8d85b',1,'aace::apl::config::APLConfiguration']]], - ['createauthproviderconfig',['createAuthProviderConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aac1f2b1ed508bf0b0d481195660c6cca',1,'aace::alexa::config::AlexaConfiguration']]], - ['createcallid',['createCallId',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a24de2d5e0fc97b239d8b9881341e6790',1,'aace::phoneCallController::PhoneCallController']]], - ['createcapabilitiesdelegateconfig',['createCapabilitiesDelegateConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a85784965a44345df2874caa93af74cfb',1,'aace::alexa::config::AlexaConfiguration']]], - ['createcblconfig',['createCBLConfig',['../classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#aeaacf62926a948b1d9e59cd75f69c6e1',1,'aace::cbl::config::CBLConfiguration']]], - ['createcbluserprofileconfig',['createCBLUserProfileConfig',['../classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#a5a70191fa2181583b169248fa94dcecb',1,'aace::cbl::config::CBLConfiguration']]], - ['createcertifiedsenderconfig',['createCertifiedSenderConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a5d38a056525d20aad2114677d8d461ae',1,'aace::alexa::config::AlexaConfiguration']]], - ['createconsolesinkconfig',['createConsoleSinkConfig',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#ae6aa1d5ddd52e173073d501861e6835a',1,'aace::logger::config::LoggerConfiguration']]], - ['createcurlconfig',['createCurlConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a221fd921e3b5f297a99520a6e09c283d',1,'aace::alexa::config::AlexaConfiguration']]], - ['createdeviceinfoconfig',['createDeviceInfoConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aceaa112768e13cd30722766cc9d1a2c6',1,'aace::alexa::config::AlexaConfiguration']]], - ['createdevicesettingsconfig',['createDeviceSettingsConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a8e556b5044008752d356c6e72b095df5',1,'aace::alexa::config::AlexaConfiguration']]], - ['createduckingconfig',['createDuckingConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abe49171331c4e53d147979638cea07a3',1,'aace::alexa::config::AlexaConfiguration']]], - ['createendpoint',['createEndpoint',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ad5854625364fa4390d96712dc4eff550',1,'aace::carControl::config::CarControlConfiguration']]], - ['createequalizercontrollerconfig',['createEqualizerControllerConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abe7962c53c63c808d2c4ebaf2056c855',1,'aace::alexa::config::AlexaConfiguration']]], - ['createexternalmediaplayerconfig',['createExternalMediaPlayerConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a4753ff7cfd440ba505e0508c2c77c07a',1,'aace::alexa::config::AlexaConfiguration']]], - ['createfilesinkconfig',['createFileSinkConfig',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#ab58d322f01f350cf87c89c41e8257037',1,'aace::logger::config::LoggerConfiguration']]], - ['creategattserver',['createGATTServer',['../classaace_1_1bluetooth_1_1_bluetooth_provider.html#abbc81947a9a92155c8d86b596b963b15',1,'aace::bluetooth::BluetoothProvider']]], - ['createlocalstorageconfig',['createLocalStorageConfig',['../classaace_1_1storage_1_1config_1_1_storage_configuration.html#a1619cb1c7be8fcb913454e16ceb49a1d',1,'aace::storage::config::StorageConfiguration']]], - ['createloggerruleconfig',['createLoggerRuleConfig',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#a9875f58897e59ce67932f1c4f9edf085',1,'aace::logger::config::LoggerConfiguration']]], - ['createmiscstorageconfig',['createMiscStorageConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a500f37306f03ef987e8d014cb7b64470',1,'aace::alexa::config::AlexaConfiguration']]], - ['createnavigationconfig',['createNavigationConfig',['../classaace_1_1navigation_1_1config_1_1_navigation_configuration.html#ab984104f14947c042b67c8ed17b55364',1,'aace::navigation::config::NavigationConfiguration']]], - ['createnotificationsconfig',['createNotificationsConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a5205a15e4b9f8596a6aff6e4c26595fa',1,'aace::alexa::config::AlexaConfiguration']]], - ['createoperatingcountryconfig',['createOperatingCountryConfig',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a469681a9d4866c0e898f512fe98eb8ab',1,'aace::vehicle::config::VehicleConfiguration']]], - ['createsettingsconfig',['createSettingsConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a08aee7c879ef040c17d32bd9a781a940',1,'aace::alexa::config::AlexaConfiguration']]], - ['createspeakermanagerconfig',['createSpeakerManagerConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a53c25e237c84550bd09d8d46b79a99f3',1,'aace::alexa::config::AlexaConfiguration']]], - ['createspeechrecognizerconfig',['createSpeechRecognizerConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aacb872514a75a1fdc3d54d17b64a2ec6',1,'aace::alexa::config::AlexaConfiguration']]], - ['createsyslogsinkconfig',['createSyslogSinkConfig',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#a60f4bbc3559e3d9900cfed5bef4fa86a',1,'aace::logger::config::LoggerConfiguration']]], - ['createsystemconfig',['createSystemConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a1a918b6c9d057360a64ace0ba68df93a',1,'aace::alexa::config::AlexaConfiguration']]], - ['createtemplateruntimetimeoutconfig',['createTemplateRuntimeTimeoutConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a89e139921c42c3078c70cd40cdeb0881',1,'aace::alexa::config::AlexaConfiguration']]], - ['createvehicleinfoconfig',['createVehicleInfoConfig',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#ad67c9d173ea737eb9d737db84b2d0ec1',1,'aace::vehicle::config::VehicleConfiguration']]], - ['createzone',['createZone',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ab7480ff4128eda5b72dbfbed9da5dcbe',1,'aace::carControl::config::CarControlConfiguration']]], - ['critical',['CRITICAL',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786a99cd1c61610c76a57cb8d10d6df6b870',1,'aace::logger::LoggerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_3.html b/docs/docs/doxygen-docs/cpp/search/all_3.html deleted file mode 100644 index 03405c0fb..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_3.js b/docs/docs/doxygen-docs/cpp/search/all_3.js deleted file mode 100644 index a486f43dd..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_3.js +++ /dev/null @@ -1,40 +0,0 @@ -var searchData= -[ - ['dab',['DAB',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3ab30917aa48bf6125b9e85daf9c6eb5fc',1,'aace::alexa::LocalMediaSource']]], - ['datapoint',['Datapoint',['../classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint.html',1,'aace::metrics::MetricsUploader']]], - ['datapointtype',['DatapointType',['../classaace_1_1metrics_1_1_metrics_uploader.html#a67e6fa51b9ef4b8a9b293870363eb4b5',1,'aace::metrics::MetricsUploader']]], - ['datasourceupdate',['dataSourceUpdate',['../classaace_1_1apl_1_1_a_p_l.html#a2c8c2bc29a5c9b8f684069743b586bc5',1,'aace::apl::APL']]], - ['default',['DEFAULT',['../classaace_1_1alexa_1_1_external_media_adapter.html#a4b57948f71acaa90e57d40dffb873eeea5b39c8b553c821e7cddc6da64b5bd2ee',1,'aace::alexa::ExternalMediaAdapter::DEFAULT()'],['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a5b39c8b553c821e7cddc6da64b5bd2ee',1,'aace::alexa::LocalMediaSource::DEFAULT()']]], - ['defaultskilltoken',['defaultSkillToken',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html#a819a92a8ef3efd20ddf855b2d681146d',1,'aace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo']]], - ['deleted',['DELETED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a63c2867fdcae0e8e8413d7ac21b69b59',1,'aace::alexa::Alerts']]], - ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]], - ['deviceconfigurationupdated',['deviceConfigurationUpdated',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a3d36c76efd0e96bd84196a8dcd5071de',1,'aace::phoneCallController::PhoneCallController']]], - ['devicesetup',['DeviceSetup',['../classaace_1_1alexa_1_1_device_setup.html',1,'aace::alexa']]], - ['devicesetupengineinterface',['DeviceSetupEngineInterface',['../classaace_1_1alexa_1_1_device_setup_engine_interface.html',1,'aace::alexa']]], - ['devicesetupstatuscodetostring',['deviceSetupStatusCodeToString',['../namespaceaace_1_1alexa.html#aa8e789fa621df6a2f846918564cdb3f2',1,'aace::alexa']]], - ['deviceusage',['DeviceUsage',['../classaace_1_1device_usage_1_1_device_usage.html',1,'aace::deviceUsage']]], - ['deviceusageengineinterface',['DeviceUsageEngineInterface',['../classaace_1_1device_usage_1_1_device_usage_engine_interface.html',1,'aace::deviceUsage']]], - ['dial',['dial',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a398192e0728d2e352483c6967419aba4',1,'aace::phoneCallController::PhoneCallController']]], - ['dialing',['DIALING',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432a6c9becac74f2d56eab5eeea8d8fb4b67',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['dialogstate',['DialogState',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586e',1,'aace::alexa::AlexaClient']]], - ['dialogstatechanged',['dialogStateChanged',['../classaace_1_1alexa_1_1_alexa_client.html#a0c91642e76d6501af40ef878f12d7bf4',1,'aace::alexa::AlexaClient']]], - ['disable_5frepeat',['DISABLE_REPEAT',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6aef32cc2ba67b1ec38670dead3c18cf53',1,'aace::alexa::ExternalMediaAdapter::DISABLE_REPEAT()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eaef32cc2ba67b1ec38670dead3c18cf53',1,'aace::alexa::ExternalMediaAdapter::DISABLE_REPEAT()']]], - ['disable_5fshuffle',['DISABLE_SHUFFLE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6aaf7aaf6d6fc5ba25daee4b6636910a2f',1,'aace::alexa::ExternalMediaAdapter::DISABLE_SHUFFLE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eaaf7aaf6d6fc5ba25daee4b6636910a2f',1,'aace::alexa::ExternalMediaAdapter::DISABLE_SHUFFLE()']]], - ['disabled',['DISABLED',['../classaace_1_1location_1_1_location_provider_engine_interface.html#af50b4c69d527d2c4eb15ca5b9169799ca055c1a591abb0e8cd86dc969727bcc0b',1,'aace::location::LocationProviderEngineInterface']]], - ['disconnected',['DISCONNECTED',['../classaace_1_1alexa_1_1_alexa_client.html#a375451d4d9cb626701ac8cbaa02ffbe2a99c8ce56e7ab246445d3b134724428f3',1,'aace::alexa::AlexaClient::DISCONNECTED()'],['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1a99c8ce56e7ab246445d3b134724428f3',1,'aace::network::NetworkInfoProviderEngineInterface::DISCONNECTED()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a811798c0331570b684648f0cd71a82a8a99c8ce56e7ab246445d3b134724428f3',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::DISCONNECTED()']]], - ['disconnecting',['DISCONNECTING',['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1aad793e31fab5703fc5b990cf40f8a585',1,'aace::network::NetworkInfoProviderEngineInterface']]], - ['discoveredplayerinfo',['DiscoveredPlayerInfo',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html',1,'aace::alexa::ExternalMediaAdapterEngineInterface']]], - ['display_5fcard_5faudio_5fplayback_5ffinished_5ftimeout',['DISPLAY_CARD_AUDIO_PLAYBACK_FINISHED_TIMEOUT',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abf68ff89209ddbd51fbd9fa7abe21b41a75f689a91ec0aafe83528281324ecf25',1,'aace::alexa::config::AlexaConfiguration']]], - ['display_5fcard_5faudio_5fplayback_5fstopped_5fpaused_5ftimeout',['DISPLAY_CARD_AUDIO_PLAYBACK_STOPPED_PAUSED_TIMEOUT',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abf68ff89209ddbd51fbd9fa7abe21b41a519cca93dd1076dbeb68337fd2bc33e7',1,'aace::alexa::config::AlexaConfiguration']]], - ['display_5fcard_5ftts_5ffinished_5ftimeout',['DISPLAY_CARD_TTS_FINISHED_TIMEOUT',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abf68ff89209ddbd51fbd9fa7abe21b41ad084961d221fc1d7a551f5d52a5b4029',1,'aace::alexa::config::AlexaConfiguration']]], - ['display_5fdocument_5finteraction_5fidle_5ftimeout',['DISPLAY_DOCUMENT_INTERACTION_IDLE_TIMEOUT',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html#a812a021a78a91ecaa55208dc13f9c161adfea37626b2f2fba9f5e6af60c1619d7',1,'aace::apl::config::APLConfiguration']]], - ['displaycardcleared',['displayCardCleared',['../classaace_1_1alexa_1_1_template_runtime.html#a056c771904624b16bafdd97d97619b80',1,'aace::alexa::TemplateRuntime']]], - ['dns_5ftimedout',['DNS_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aff2281b1a4e2df717c0cc8019eacfab6',1,'aace::alexa::AlexaClient']]], - ['donotdisturb',['DoNotDisturb',['../classaace_1_1alexa_1_1_do_not_disturb.html',1,'aace::alexa']]], - ['donotdisturbchanged',['doNotDisturbChanged',['../classaace_1_1alexa_1_1_do_not_disturb.html#a5ea5c9f9142db27b3a1c704012294f7b',1,'aace::alexa::DoNotDisturb']]], - ['donotdisturbengineinterface',['DoNotDisturbEngineInterface',['../classaace_1_1alexa_1_1_do_not_disturb_engine_interface.html',1,'aace::alexa']]], - ['dtmf_5ffailed',['DTMF_FAILED',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a6a73274c0233185e56bf632c6b069893a5c6ec9e2720310fe33e2f3f1ad2f23f5',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['dtmf_5fsupported',['DTMF_SUPPORTED',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a84647b3bad59bc01079e1addb1d3a2b6a01eb9816b3e3131b2e9584e4c0f999a4',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['dtmferror',['DTMFError',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a6a73274c0233185e56bf632c6b069893',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::DTMFError()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#adb76ccaed091ba27062e1835e5727399',1,'aace::phoneCallController::PhoneCallController::DTMFError()']]], - ['duration',['duration',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a031db9827daaf6d93e6a1624c2a97d0c',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::duration()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a1899127344b0f4e5bab4ed6fe434d62e',1,'aace::alexa::LocalMediaSource::PlaybackState::duration()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_4.html b/docs/docs/doxygen-docs/cpp/search/all_4.html deleted file mode 100644 index 8e1f4b9cd..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_4.js b/docs/docs/doxygen-docs/cpp/search/all_4.js deleted file mode 100644 index 9a61662d4..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_4.js +++ /dev/null @@ -1,28 +0,0 @@ -var searchData= -[ - ['enable_5frepeat',['ENABLE_REPEAT',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a5599a51729f75f3d058ddc7dad49e384',1,'aace::alexa::ExternalMediaAdapter::ENABLE_REPEAT()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea5599a51729f75f3d058ddc7dad49e384',1,'aace::alexa::ExternalMediaAdapter::ENABLE_REPEAT()']]], - ['enable_5frepeat_5fone',['ENABLE_REPEAT_ONE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a262dab2d76e82f83e0c981e0372025fa',1,'aace::alexa::ExternalMediaAdapter::ENABLE_REPEAT_ONE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea262dab2d76e82f83e0c981e0372025fa',1,'aace::alexa::ExternalMediaAdapter::ENABLE_REPEAT_ONE()']]], - ['enable_5fshuffle',['ENABLE_SHUFFLE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6aae74b0b6d349c980a2329bc9c5cf1d66',1,'aace::alexa::ExternalMediaAdapter::ENABLE_SHUFFLE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eaae74b0b6d349c980a2329bc9c5cf1d66',1,'aace::alexa::ExternalMediaAdapter::ENABLE_SHUFFLE()']]], - ['enabled',['ENABLED',['../classaace_1_1location_1_1_location_provider_engine_interface.html#af50b4c69d527d2c4eb15ca5b9169799cac8cf6eea8f096ed51160b484d97c5bbd',1,'aace::location::LocationProviderEngineInterface']]], - ['endofspeechdetected',['endOfSpeechDetected',['../classaace_1_1alexa_1_1_speech_recognizer.html#a7e4d179fd39031d3a898466841905748',1,'aace::alexa::SpeechRecognizer']]], - ['endpointid',['endpointId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#ada43dff94ace3219b86960616e22558f',1,'aace::alexa::ExternalMediaAdapter::SessionState::endpointId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a8e331ee5d60fd3d034acddccfd73f87c',1,'aace::alexa::LocalMediaSource::SessionState::endpointId()']]], - ['engine',['Engine',['../classaace_1_1core_1_1_engine.html',1,'aace::core']]], - ['engine_5ftype',['ENGINE_TYPE',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfaa9d881f4c0b245ec3c7eb6475df3808f',1,'aace::vehicle::config::VehicleConfiguration']]], - ['engineconfiguration',['EngineConfiguration',['../classaace_1_1core_1_1config_1_1_engine_configuration.html',1,'aace::core::config']]], - ['equalizerband',['EqualizerBand',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a733a5c62b16ef4f62b5c94d16f314cb3',1,'aace::alexa::EqualizerControllerEngineInterface::EqualizerBand()'],['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aabb71d98c3dd763d0522a5e688a0eab1',1,'aace::alexa::config::AlexaConfiguration::EqualizerBand()'],['../classaace_1_1alexa_1_1_equalizer_controller.html#ac79148250b90df9f0ce22b223d3db2c4',1,'aace::alexa::EqualizerController::EqualizerBand()']]], - ['equalizerbandlevel',['EqualizerBandLevel',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aba7e45428c26995d0827c5eccd61f9ab',1,'aace::alexa::config::AlexaConfiguration::EqualizerBandLevel()'],['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a383ac0bd70d914002dd5906e1dd1f74d',1,'aace::alexa::EqualizerControllerEngineInterface::EqualizerBandLevel()'],['../classaace_1_1alexa_1_1_equalizer_controller.html#a5785072a612afeff083b230978275347',1,'aace::alexa::EqualizerController::EqualizerBandLevel()']]], - ['equalizerbandtostring',['equalizerBandToString',['../namespaceaace_1_1alexa.html#aaa09d97f0a502bb056f6eb8b610b39cd',1,'aace::alexa']]], - ['equalizercontroller',['EqualizerController',['../classaace_1_1alexa_1_1_equalizer_controller.html',1,'aace::alexa']]], - ['equalizercontrollerengineinterface',['EqualizerControllerEngineInterface',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html',1,'aace::alexa']]], - ['error',['ERROR',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22abb1ca97ec761fc37101737ba0aa2e7c5',1,'aace::alexa::Alerts::ERROR()'],['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7abb1ca97ec761fc37101737ba0aa2e7c5',1,'aace::alexa::MediaPlaybackRequestorEngineInterface::ERROR()'],['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aabb1ca97ec761fc37101737ba0aa2e7c5',1,'aace::cbl::CBL::ERROR()'],['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786abb1ca97ec761fc37101737ba0aa2e7c5',1,'aace::logger::LoggerEngineInterface::ERROR()']]], - ['errorcode',['ErrorCode',['../classaace_1_1messaging_1_1_messaging.html#a8b0aec4199d79f3a1ceb9cf640a17fb6',1,'aace::messaging::Messaging']]], - ['eventreceived',['eventReceived',['../classaace_1_1authorization_1_1_authorization.html#a1398bf1a4bde9c3f240b8f0819374096',1,'aace::authorization::Authorization']]], - ['executecommands',['executeCommands',['../classaace_1_1apl_1_1_a_p_l.html#a14091f7b0a6e8898098d04ec67abac8c',1,'aace::apl::APL']]], - ['executecommandsresult',['executeCommandsResult',['../classaace_1_1apl_1_1_a_p_l.html#a3599f0eec806b4e0d1315ca1f1e8d1b1',1,'aace::apl::APL']]], - ['expecting',['EXPECTING',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586eabd416d769c9ba62060c04ae8455e98d2',1,'aace::alexa::AlexaClient']]], - ['expired',['EXPIRED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792eca38afd7ae34bd5e3e6fc170d8b09178a3',1,'aace::alexa::AuthProviderEngineInterface']]], - ['explicit_5fuser_5faction',['EXPLICIT_USER_ACTION',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#a94fe59eef9dd34edd6b29cec376cd85ba402464ae0b3d55b0bcdcb593baae4b06',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['externalmediaadapter',['ExternalMediaAdapter',['../classaace_1_1alexa_1_1_external_media_adapter.html',1,'aace::alexa']]], - ['externalmediaadapterengineinterface',['ExternalMediaAdapterEngineInterface',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface.html',1,'aace::alexa']]], - ['externalmediaadapterstate',['ExternalMediaAdapterState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html',1,'aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html#a5d3afec4f892bcf48396fb725d137017',1,'aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState::ExternalMediaAdapterState()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_5.html b/docs/docs/doxygen-docs/cpp/search/all_5.html deleted file mode 100644 index 89a879ea9..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_5.js b/docs/docs/doxygen-docs/cpp/search/all_5.js deleted file mode 100644 index bb13909dd..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_5.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['fail',['FAIL',['../classaace_1_1alexa_1_1_device_setup.html#a9b27d4306350236719aed083ff389f00ac2759effffc94bb9acc71d69fe3e8a1f',1,'aace::alexa::DeviceSetup']]], - ['failed_5fcan_5fretry',['FAILED_CAN_RETRY',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7a27c710e758f9f6541ee73aecffcd20b6',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['failed_5ftimeout',['FAILED_TIMEOUT',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7a8e5b60d59e8c72d3cd7524cee60eefaa',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['failure_5fprotocol_5ferror',['FAILURE_PROTOCOL_ERROR',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aafb0ae7bf77c6f70390d3658d3e12033',1,'aace::alexa::AlexaClient']]], - ['fast_5fforward',['FAST_FORWARD',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6afe48dc1aa055edc05bb3f1db44bf9e3f',1,'aace::alexa::ExternalMediaAdapter::FAST_FORWARD()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eafe48dc1aa055edc05bb3f1db44bf9e3f',1,'aace::alexa::ExternalMediaAdapter::FAST_FORWARD()']]], - ['favorite',['FAVORITE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a39946cd74c5a09296f76740ad067c460',1,'aace::alexa::ExternalMediaAdapter::FAVORITE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea39946cd74c5a09296f76740ad067c460',1,'aace::alexa::ExternalMediaAdapter::FAVORITE()']]], - ['favorited',['FAVORITED',['../classaace_1_1alexa_1_1_external_media_adapter.html#a36a5f525a243568ee2bbdbdc2228d742af7c29c75803e8bd4039ea07a2307e791',1,'aace::alexa::ExternalMediaAdapter']]], - ['favorites',['Favorites',['../classaace_1_1alexa_1_1_external_media_adapter.html#a36a5f525a243568ee2bbdbdc2228d742',1,'aace::alexa::ExternalMediaAdapter::Favorites()'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a4a8a97314926068ffe56d36544c964e0',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::favorites()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a21f1fe29e355b3df6efe8961cfb2b424',1,'aace::alexa::LocalMediaSource::PlaybackState::favorites()']]], - ['featurediscoveryengineinterface',['FeatureDiscoveryEngineInterface',['../classaace_1_1alexa_1_1_feature_discovery_engine_interface.html',1,'aace::alexa']]], - ['finished',['FINISHED',['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa2c616b2713e2e0aed04b4c4752c88133',1,'aace::alexa']]], - ['fm_5fradio',['FM_RADIO',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3aedcb4026e4075f9367b903d5b2c97e65',1,'aace::alexa::LocalMediaSource']]], - ['focus_5fentered_5fbackground',['FOCUS_ENTERED_BACKGROUND',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a8f2c39a6e3871da5c682a37a792a6b05',1,'aace::alexa::Alerts']]], - ['focus_5fentered_5fforeground',['FOCUS_ENTERED_FOREGROUND',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22aa72d9c6d4fab6a8bb2fcc8fe3f7dff13',1,'aace::alexa::Alerts']]], - ['focusaction',['FocusAction',['../classaace_1_1audio_1_1_audio_output.html#a4c1ae35009e69410b2b4e7be3f36c187',1,'aace::audio::AudioOutput']]], - ['focusstate',['FocusState',['../classaace_1_1alexa_1_1_template_runtime.html#a5d54a3bd39730d828d4514b550c8d211',1,'aace::alexa::TemplateRuntime::FocusState()'],['../namespaceaace_1_1alexa.html#a8742c5f44018cc6c71ab05f1ee8afa9b',1,'aace::alexa::FocusState()']]], - ['foreground',['FOREGROUND',['../classaace_1_1alexa_1_1_external_media_adapter.html#a4b57948f71acaa90e57d40dffb873eeeae41f4c3e11dd067fd5691da0124b8fd2',1,'aace::alexa::ExternalMediaAdapter::FOREGROUND()'],['../namespaceaace_1_1alexa.html#a8742c5f44018cc6c71ab05f1ee8afa9bae41f4c3e11dd067fd5691da0124b8fd2',1,'aace::alexa::FOREGROUND()']]], - ['frequency',['FREQUENCY',['../classaace_1_1alexa_1_1_local_media_source.html#ae2468e3779807990305dfd341ca3d19da1e3e433edd76f91457ea26d0ae88ec2f',1,'aace::alexa::LocalMediaSource']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_6.html b/docs/docs/doxygen-docs/cpp/search/all_6.html deleted file mode 100644 index 6afac0662..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_6.js b/docs/docs/doxygen-docs/cpp/search/all_6.js deleted file mode 100644 index d8781cf35..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_6.js +++ /dev/null @@ -1,40 +0,0 @@ -var searchData= -[ - ['geography',['GEOGRAPHY',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfaf86cc9cf8e9ec55a6a9bb2e8380f08ae',1,'aace::vehicle::config::VehicleConfiguration']]], - ['getaccuracy',['getAccuracy',['../classaace_1_1location_1_1_location.html#a1741ce546e33172d68825650d5499ce9',1,'aace::location::Location']]], - ['getaltitude',['getAltitude',['../classaace_1_1location_1_1_location.html#a6651d8181e4361df5777f1992cb063c0',1,'aace::location::Location']]], - ['getauthorizationdata',['getAuthorizationData',['../classaace_1_1authorization_1_1_authorization.html#aaeb9fc700765a86d973a0e03ed865c29',1,'aace::authorization::Authorization']]], - ['getauthstate',['getAuthState',['../classaace_1_1alexa_1_1_auth_provider.html#a6d00a8dac76187fd4d7eebc3f13160fd',1,'aace::alexa::AuthProvider']]], - ['getauthtoken',['getAuthToken',['../classaace_1_1alexa_1_1_auth_provider.html#ac2600cbd59d19ce4f9e5d5134913376f',1,'aace::alexa::AuthProvider']]], - ['getbandlevels',['getBandLevels',['../classaace_1_1alexa_1_1_equalizer_controller.html#ac9c19ed0f79cfef1675a950560320b1e',1,'aace::alexa::EqualizerController']]], - ['getcapabilities',['getCapabilities',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#a9ed1695ff201d42c2921fd61782b09e1',1,'aace::textToSpeech::TextToSpeech']]], - ['getconnectivitystate',['getConnectivityState',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#ab4078c652c810778ac8155fe5d6e02c7',1,'aace::connectivity::AlexaConnectivity']]], - ['getcountry',['getCountry',['../classaace_1_1location_1_1_location_provider.html#aea9910732c32ee028b109ff24bd61ef8',1,'aace::location::LocationProvider']]], - ['getduration',['getDuration',['../classaace_1_1audio_1_1_audio_output.html#af0ee84c73cd22161c02497508556ee90',1,'aace::audio::AudioOutput']]], - ['getentries',['getEntries',['../classaace_1_1address_book_1_1_address_book.html#a9546fee7482f3ba302e3765727f5ac28',1,'aace::addressBook::AddressBook']]], - ['getidentifier',['getIdentifier',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#abdd1825371562bd56f6d2462f833dcd0',1,'aace::connectivity::AlexaConnectivity']]], - ['getkey',['getKey',['../classaace_1_1audio_1_1_audio_stream_property.html#a84c0802fe136f0b6487e216b3b6fafe0',1,'aace::audio::AudioStreamProperty']]], - ['getlatitude',['getLatitude',['../classaace_1_1location_1_1_location.html#a2ff0516c0cb41fa318b75edd5e81f5e0',1,'aace::location::Location']]], - ['getlocation',['getLocation',['../classaace_1_1location_1_1_location_provider.html#a97f95a88be0b6cf84f3295a11eed5ba5',1,'aace::location::LocationProvider']]], - ['getlongitude',['getLongitude',['../classaace_1_1location_1_1_location.html#a64a93e6dd590bf066aa0790f32436c9d',1,'aace::location::Location']]], - ['getmessagebroker',['getMessageBroker',['../classaace_1_1core_1_1_engine.html#ad0ff52b7868f34f4876c925efbfa52fe',1,'aace::core::Engine']]], - ['getmodecontrollervalue',['getModeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#ab4aa2eb8be815b26dc69badac72d0eca',1,'aace::carControl::CarControl']]], - ['getnavigationstate',['getNavigationState',['../classaace_1_1navigation_1_1_navigation.html#a173894876f146db7b0e34ffaeab915d7',1,'aace::navigation::Navigation']]], - ['getnetworkstatus',['getNetworkStatus',['../classaace_1_1network_1_1_network_info_provider.html#ad7cf08c5dbaad707cc176e422258ee1d',1,'aace::network::NetworkInfoProvider']]], - ['getnumbytesbuffered',['getNumBytesBuffered',['../classaace_1_1audio_1_1_audio_output.html#a9fc6bddf91b8365fbd134ce024e25dfa',1,'aace::audio::AudioOutput']]], - ['getoffset',['getOffset',['../classaace_1_1alexa_1_1_external_media_adapter.html#a7fe9f27ced7438f1badf8bf0122af326',1,'aace::alexa::ExternalMediaAdapter']]], - ['getplayerduration',['getPlayerDuration',['../classaace_1_1alexa_1_1_audio_player.html#a79508257fa720e5fe633c5b76c0ff911',1,'aace::alexa::AudioPlayer']]], - ['getplayerposition',['getPlayerPosition',['../classaace_1_1alexa_1_1_audio_player.html#aa2b61c4887d9bca905914559b23fcf38',1,'aace::alexa::AudioPlayer']]], - ['getposition',['getPosition',['../classaace_1_1audio_1_1_audio_output.html#a04ff4005d0f36300bc54421906b89299',1,'aace::audio::AudioOutput']]], - ['getproperty',['getProperty',['../classaace_1_1property_manager_1_1_property_manager.html#a1892fedbf2193e03f040758207a4dea6',1,'aace::propertyManager::PropertyManager']]], - ['getrangecontrollervalue',['getRangeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#a37f2556dd5b73fe6a098679b9cce60d5',1,'aace::carControl::CarControl']]], - ['getrefreshtoken',['getRefreshToken',['../classaace_1_1cbl_1_1_c_b_l.html#ae957213803bd5ca4a6a19d4133160963',1,'aace::cbl::CBL']]], - ['getsource',['getSource',['../classaace_1_1alexa_1_1_local_media_source.html#a7876023493487be41be9044c198dfba2',1,'aace::alexa::LocalMediaSource']]], - ['getstate',['getState',['../classaace_1_1alexa_1_1_external_media_adapter.html#a550bb60e8d5bb8fb885c94dc4debed94',1,'aace::alexa::ExternalMediaAdapter::getState()'],['../classaace_1_1alexa_1_1_local_media_source.html#ab548e09fd634975590e4fd3bf2843682',1,'aace::alexa::LocalMediaSource::getState()']]], - ['getstream',['getStream',['../classaace_1_1core_1_1config_1_1_engine_configuration.html#ace6b90a16f1c8366e0beb15898c93e4e',1,'aace::core::config::EngineConfiguration::getStream()'],['../classaace_1_1core_1_1config_1_1_stream_configuration.html#a2a0af105fa9142f2190b749c91585d58',1,'aace::core::config::StreamConfiguration::getStream()'],['../classaace_1_1core_1_1config_1_1_configuration_file.html#a8ee151fa389256ca8e2df8626e76407e',1,'aace::core::config::ConfigurationFile::getStream()']]], - ['gettime',['getTime',['../classaace_1_1location_1_1_location.html#a20ba8e872b6b255d46dd5ea231cffb1a',1,'aace::location::Location']]], - ['gettimeasstring',['getTimeAsString',['../classaace_1_1location_1_1_location.html#aea77abc6aa7edc610312fde96cb77d7a',1,'aace::location::Location']]], - ['getvalue',['getValue',['../classaace_1_1audio_1_1_audio_stream_property.html#a9d8ef88c1f40c83b75d0f1928f09605f',1,'aace::audio::AudioStreamProperty']]], - ['getwifisignalstrength',['getWifiSignalStrength',['../classaace_1_1network_1_1_network_info_provider.html#a605775f8cfa22e10ca7a9144dc636a62',1,'aace::network::NetworkInfoProvider']]], - ['globalpreset',['GlobalPreset',['../classaace_1_1alexa_1_1_global_preset.html',1,'aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_7.html b/docs/docs/doxygen-docs/cpp/search/all_7.html deleted file mode 100644 index de1910770..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_7.js b/docs/docs/doxygen-docs/cpp/search/all_7.js deleted file mode 100644 index cf5e9be93..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_7.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['hardware_5farch',['HARDWARE_ARCH',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa369dd85de22dfb81108b4fbd1d84203e',1,'aace::vehicle::config::VehicleConfiguration']]], - ['hold_5fto_5ftalk',['HOLD_TO_TALK',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html#a32b21eebeb377059d5548e7297c0846bab8c3869bf1fc2cdd2f2234030bbd364c',1,'aace::alexa::SpeechRecognizerEngineInterface']]], - ['holdtotalk',['holdToTalk',['../classaace_1_1alexa_1_1_speech_recognizer.html#aa2859cbc2a49609ba8027f912d373692',1,'aace::alexa::SpeechRecognizer']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_8.html b/docs/docs/doxygen-docs/cpp/search/all_8.html deleted file mode 100644 index 11e27cdb4..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_8.js b/docs/docs/doxygen-docs/cpp/search/all_8.js deleted file mode 100644 index 963a17910..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_8.js +++ /dev/null @@ -1,22 +0,0 @@ -var searchData= -[ - ['iaddressbookentriesfactory',['IAddressBookEntriesFactory',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html',1,'aace::addressBook::AddressBook']]], - ['idle',['IDLE',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586eaa5daf7f2ebbba4975d61dab1c40188c7',1,'aace::alexa::AlexaClient::IDLE()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432aa5daf7f2ebbba4975d61dab1c40188c7',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::IDLE()'],['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aaa5daf7f2ebbba4975d61dab1c40188c7',1,'aace::alexa::IDLE()']]], - ['inbound_5fringing',['INBOUND_RINGING',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432aecd9ce56920e4a6362a315ae02d3b938',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['indicatorstate',['IndicatorState',['../classaace_1_1alexa_1_1_notifications.html#a745c257147c726a31f30ccf52c4f83d1',1,'aace::alexa::Notifications']]], - ['info',['INFO',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786a551b723eafd6a31d444fcb2f5920fbd3',1,'aace::logger::LoggerEngineInterface']]], - ['initiator',['Initiator',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html#a32b21eebeb377059d5548e7297c0846b',1,'aace::alexa::SpeechRecognizerEngineInterface::Initiator()'],['../classaace_1_1alexa_1_1_speech_recognizer.html#a0cb2f19f83b36509b8db7aa5ac5b1233',1,'aace::alexa::SpeechRecognizer::Initiator()']]], - ['internal_5ferror',['INTERNAL_ERROR',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05ae8c0c70879b5895c615677261d64a1ee',1,'aace::alexa::AlexaClient::INTERNAL_ERROR()'],['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ae8c0c70879b5895c615677261d64a1ee',1,'aace::alexa::AuthProviderEngineInterface::INTERNAL_ERROR()']]], - ['interruptcommandsequence',['interruptCommandSequence',['../classaace_1_1apl_1_1_a_p_l.html#a9441e36376baf10f844837b80e769c28',1,'aace::apl::APL']]], - ['invalid_5fauth',['INVALID_AUTH',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aabd298f8599f681c645d152c354f24de',1,'aace::alexa::AlexaClient']]], - ['invalid_5fcbl_5fclient_5fid',['INVALID_CBL_CLIENT_ID',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a4ef167bea8f7fa2a2cfd2934ea952ce3',1,'aace::alexa::AuthProviderEngineInterface']]], - ['invalid_5fcode_5fpair',['INVALID_CODE_PAIR',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a12c3d12888b38141abcbee72ee836587',1,'aace::alexa::AuthProviderEngineInterface']]], - ['invalid_5frequest',['INVALID_REQUEST',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ab8c9d7ce4c399c56136475f36309020f',1,'aace::alexa::AuthProviderEngineInterface']]], - ['invalid_5fvalue',['INVALID_VALUE',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ad8f24f388e990b9ccf8905b7993b99ae',1,'aace::alexa::AuthProviderEngineInterface']]], - ['invocationreason',['InvocationReason',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#a94fe59eef9dd34edd6b29cec376cd85b',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['invocationreasontostring',['invocationReasonToString',['../namespaceaace_1_1alexa.html#ab8cada5e3278b14c30035f7a4faf5325',1,'aace::alexa']]], - ['isguest',['isGuest',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a1ca861f8fc670ade16dbcfc3209d504e',1,'aace::alexa::ExternalMediaAdapter::SessionState::isGuest()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#acf3bb6f9c5201741392a1387fbe774bb',1,'aace::alexa::LocalMediaSource::SessionState::isGuest()']]], - ['ispowercontrolleron',['isPowerControllerOn',['../classaace_1_1car_control_1_1_car_control.html#a9a094718c3c42f12adae6adfb8a4cee2',1,'aace::carControl::CarControl']]], - ['istogglecontrolleron',['isToggleControllerOn',['../classaace_1_1car_control_1_1_car_control.html#a122710f35e288fb86c40564b782ebc7d',1,'aace::carControl::CarControl']]], - ['isvalid',['isValid',['../classaace_1_1location_1_1_location.html#a2dd9abb6c2c005ca822c29d14fefada4',1,'aace::location::Location']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_9.html b/docs/docs/doxygen-docs/cpp/search/all_9.html deleted file mode 100644 index f8abbbe59..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_9.js b/docs/docs/doxygen-docs/cpp/search/all_9.js deleted file mode 100644 index cc693e59c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_9.js +++ /dev/null @@ -1,39 +0,0 @@ -var searchData= -[ - ['language',['LANGUAGE',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa5b64a5253f843da2950972747ac9a3b0',1,'aace::vehicle::config::VehicleConfiguration']]], - ['largeurl',['largeURL',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ae3eb99c0fa114617ef22978c6b12596f',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::largeURL()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a96937de06c1065ed35cde06bf609605a',1,'aace::alexa::LocalMediaSource::PlaybackState::largeURL()']]], - ['launched',['launched',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#ae33ecdd2506d0988e16caf6e79c7311b',1,'aace::alexa::ExternalMediaAdapter::SessionState::launched()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a76eedef6ff685965e14f901863d44e7f',1,'aace::alexa::LocalMediaSource::SessionState::launched()']]], - ['level',['Level',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786',1,'aace::logger::LoggerEngineInterface::Level()'],['../classaace_1_1logger_1_1_logger.html#acde0b19d1be1c61274536b6a955d2d7a',1,'aace::logger::Logger::Level()'],['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#a11d693782db686f4ac4667fb814d0b29',1,'aace::logger::config::LoggerConfiguration::Level()']]], - ['line_5fin',['LINE_IN',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a8ed9247709b828e86d4db1e0a207e2c5',1,'aace::alexa::LocalMediaSource']]], - ['listening',['LISTENING',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586eac0ff938e396e72c225bd66562b80a77e',1,'aace::alexa::AlexaClient']]], - ['listenusingiap2',['listenUsingiAP2',['../classaace_1_1bluetooth_1_1_bluetooth_provider.html#a29e75260cc9989492497e7b276d65145',1,'aace::bluetooth::BluetoothProvider']]], - ['listenusingrfcomm',['listenUsingRfcomm',['../classaace_1_1bluetooth_1_1_bluetooth_provider.html#a8efc72e2e9aee87e114186ff93233f9c',1,'aace::bluetooth::BluetoothProvider']]], - ['local',['LOCAL',['../classaace_1_1alexa_1_1_alexa_client.html#ad71ae13d124da8a6a3003cb0a516e2cda54b4c4075463b2e02cd69f5cd139b5b2',1,'aace::alexa::AlexaClient']]], - ['localadjustbandlevels',['localAdjustBandLevels',['../classaace_1_1alexa_1_1_equalizer_controller.html#a3b65b2452d162ab9e074a6d4cc2a0168',1,'aace::alexa::EqualizerController']]], - ['localadjustvolume',['localAdjustVolume',['../classaace_1_1alexa_1_1_alexa_speaker.html#ae09e49988bc163c950883e2d3afc5173',1,'aace::alexa::AlexaSpeaker']]], - ['localmediasource',['LocalMediaSource',['../classaace_1_1alexa_1_1_local_media_source.html',1,'aace::alexa']]], - ['localmediasourceengineinterface',['LocalMediaSourceEngineInterface',['../classaace_1_1alexa_1_1_local_media_source_engine_interface.html',1,'aace::alexa']]], - ['localmediasourcestate',['LocalMediaSourceState',['../classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html',1,'aace::alexa::LocalMediaSource::LocalMediaSourceState'],['../classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html#a723b558daff74779e029b96f48ec0f22',1,'aace::alexa::LocalMediaSource::LocalMediaSourceState::LocalMediaSourceState()']]], - ['localplayerid',['localPlayerId',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html#a7d901a7d851472d8f49bdb5b3a800a55',1,'aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo::localPlayerId()'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html#ae81d224b974f097d1bc768f3dfa2d3de',1,'aace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo::localPlayerId()']]], - ['localresetbands',['localResetBands',['../classaace_1_1alexa_1_1_equalizer_controller.html#a37364dafdb7c7302247c20ed2e4f73c3',1,'aace::alexa::EqualizerController']]], - ['localsetbandlevels',['localSetBandLevels',['../classaace_1_1alexa_1_1_equalizer_controller.html#ab09a3198bf598b88714b59b505198e0d',1,'aace::alexa::EqualizerController']]], - ['localsetmute',['localSetMute',['../classaace_1_1alexa_1_1_alexa_speaker.html#a8ff679b4fc9e2f74c196083ef9b528a8',1,'aace::alexa::AlexaSpeaker']]], - ['localsetvolume',['localSetVolume',['../classaace_1_1alexa_1_1_alexa_speaker.html#a3bd38cc6bcdda25f00af7b57e8e1c324',1,'aace::alexa::AlexaSpeaker']]], - ['localstop',['localStop',['../classaace_1_1alexa_1_1_alerts.html#a0ad3204360a08a578af1af59013f64a8',1,'aace::alexa::Alerts']]], - ['location',['Location',['../classaace_1_1location_1_1_location.html',1,'aace::location::Location'],['../classaace_1_1location_1_1_location.html#af72835578a771a956936116f9597a10e',1,'aace::location::Location::Location()'],['../classaace_1_1location_1_1_location.html#a2fee1df1854e9ae0f8a279ef0fe4bae9',1,'aace::location::Location::Location(double latitude, double longitude, double altitude=UNDEFINED, double accuracy=UNDEFINED, std::chrono::system_clock::time_point time=std::chrono::system_clock::now())'],['../classaace_1_1location_1_1_location.html#a579c0255247a086d5715044b9f783beb',1,'aace::location::Location::Location(const Location &location)']]], - ['locationprovider',['LocationProvider',['../classaace_1_1location_1_1_location_provider.html',1,'aace::location']]], - ['locationproviderengineinterface',['LocationProviderEngineInterface',['../classaace_1_1location_1_1_location_provider_engine_interface.html',1,'aace::location']]], - ['locationserviceaccess',['LocationServiceAccess',['../classaace_1_1location_1_1_location_provider_engine_interface.html#af50b4c69d527d2c4eb15ca5b9169799c',1,'aace::location::LocationProviderEngineInterface']]], - ['locationserviceaccesschanged',['locationServiceAccessChanged',['../classaace_1_1location_1_1_location_provider.html#ada8a11d25bde2e2d760cbb38c445f9cf',1,'aace::location::LocationProvider']]], - ['log',['log',['../classaace_1_1logger_1_1_logger.html#a3cb300839a1de085377517669522ad78',1,'aace::logger::Logger']]], - ['logevent',['logEvent',['../classaace_1_1logger_1_1_logger.html#a5114127c48c451e846ca3d1b120a3f44',1,'aace::logger::Logger']]], - ['loggedin',['loggedIn',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#ada22c60c9c13b72b9d2b16ada309d3e9',1,'aace::alexa::ExternalMediaAdapter::SessionState::loggedIn()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#aa34672570b2e78efa57b913ba5de086d',1,'aace::alexa::LocalMediaSource::SessionState::loggedIn()']]], - ['logger',['Logger',['../classaace_1_1logger_1_1_logger.html',1,'aace::logger']]], - ['loggerconfiguration',['LoggerConfiguration',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html',1,'aace::logger::config']]], - ['loggerengineinterface',['LoggerEngineInterface',['../classaace_1_1logger_1_1_logger_engine_interface.html',1,'aace::logger']]], - ['login',['login',['../classaace_1_1alexa_1_1_external_media_adapter.html#a96bb8efcb2543da52c01bcb50e1ecc7a',1,'aace::alexa::ExternalMediaAdapter']]], - ['logincomplete',['loginComplete',['../classaace_1_1alexa_1_1_external_media_adapter.html#a88309779a5b42dc313942aab6e1feb38',1,'aace::alexa::ExternalMediaAdapter']]], - ['logout',['logout',['../classaace_1_1alexa_1_1_external_media_adapter.html#a3663ab45e41484de6c96140e5c161a8f',1,'aace::alexa::ExternalMediaAdapter::logout()'],['../classaace_1_1authorization_1_1_authorization.html#a66f95375e98f4b8012f5f2531100550c',1,'aace::authorization::Authorization::logout()']]], - ['logoutcomplete',['logoutComplete',['../classaace_1_1alexa_1_1_external_media_adapter.html#ab86f7e5ee076c56fe7d9bf249dc65d2d',1,'aace::alexa::ExternalMediaAdapter']]], - ['loop',['LOOP',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8ca9159b3578e4e1eb31ffdf90acd6f6e40',1,'aace::alexa::PlaybackControllerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_a.html b/docs/docs/doxygen-docs/cpp/search/all_a.html deleted file mode 100644 index 9601fcee1..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_a.js b/docs/docs/doxygen-docs/cpp/search/all_a.js deleted file mode 100644 index 784a468ff..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_a.js +++ /dev/null @@ -1,27 +0,0 @@ -var searchData= -[ - ['make',['MAKE',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfab1e5b15ab34e89de8faf65a0d88d1c64',1,'aace::vehicle::config::VehicleConfiguration']]], - ['mayduck',['mayDuck',['../classaace_1_1audio_1_1_audio_output.html#a662b7237e069d491c278b3175b3246a8',1,'aace::audio::AudioOutput']]], - ['mediaerror',['MediaError',['../classaace_1_1audio_1_1_audio_output.html#a3259653b849b84a183de95091860dd21',1,'aace::audio::AudioOutput::MediaError()'],['../classaace_1_1audio_1_1_audio_output.html#a5e4b3034d90818de56f925b227f2c2b7',1,'aace::audio::AudioOutput::mediaError(MediaError error, const std::string &description="")']]], - ['mediaplaybackrequestor',['MediaPlaybackRequestor',['../classaace_1_1alexa_1_1_media_playback_requestor.html',1,'aace::alexa']]], - ['mediaplaybackrequestorengineinterface',['MediaPlaybackRequestorEngineInterface',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html',1,'aace::alexa']]], - ['mediaplaybackrequestormediaplaybackrequeststatustostring',['mediaPlaybackRequestorMediaPlaybackRequestStatusToString',['../namespaceaace_1_1alexa.html#a2381538962d81a4fa1e7d485750f8852',1,'aace::alexa']]], - ['mediaplaybackrequeststatus',['MediaPlaybackRequestStatus',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['mediaplaybackresponse',['mediaPlaybackResponse',['../classaace_1_1alexa_1_1_media_playback_requestor.html#a7a017fdc9a452aac558b8cf827e3da16',1,'aace::alexa::MediaPlaybackRequestor']]], - ['mediaprovider',['mediaProvider',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#afed847fb6d1a433912d25efbd3a5deeb',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::mediaProvider()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#af5047b85c14787ac9604c2e1cd69ec7b',1,'aace::alexa::LocalMediaSource::PlaybackState::mediaProvider()']]], - ['mediastate',['MediaState',['../classaace_1_1audio_1_1_audio_output.html#ab1be1bc2a34898eba12b799787d908c5',1,'aace::audio::AudioOutput']]], - ['mediastatechanged',['mediaStateChanged',['../classaace_1_1audio_1_1_audio_output.html#a0159c40c50906ee017f1de903fc23590',1,'aace::audio::AudioOutput']]], - ['mediatype',['MediaType',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836',1,'aace::alexa::ExternalMediaAdapter::MediaType()'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a02949fd4dbc76d1a777252817aff6709',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::mediaType()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a815882ddd4509bc466cb4e9fd7aab90b',1,'aace::alexa::LocalMediaSource::PlaybackState::mediaType()']]], - ['mediumurl',['mediumURL',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ad3a1789ab11e758aa2c16498b6e724b3',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::mediumURL()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ac09dd6568db8fefda4001e9d02bc0a5e',1,'aace::alexa::LocalMediaSource::PlaybackState::mediumURL()']]], - ['messagebroker',['MessageBroker',['../classaace_1_1core_1_1_message_broker.html',1,'aace::core']]], - ['messaging',['Messaging',['../classaace_1_1messaging_1_1_messaging.html',1,'aace::messaging']]], - ['metric',['METRIC',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786ad83e9b0c6b9339aaeb08d2a04ae9e34d',1,'aace::logger::LoggerEngineInterface']]], - ['metricsuploader',['MetricsUploader',['../classaace_1_1metrics_1_1_metrics_uploader.html',1,'aace::metrics']]], - ['microphone',['MICROPHONE',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa74a1ebda7fe4e2d30e665420bedde3bf',1,'aace::vehicle::config::VehicleConfiguration']]], - ['midrange',['MIDRANGE',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a733a5c62b16ef4f62b5c94d16f314cb3a9029b1c3eca5f9c1cf7d9939e815b750',1,'aace::alexa::EqualizerControllerEngineInterface']]], - ['model',['MODEL',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa7a03bac2692f8d17e2cda1b0721ffd0e',1,'aace::vehicle::config::VehicleConfiguration']]], - ['mute_5froute_5fguidance',['MUTE_ROUTE_GUIDANCE',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a118f7d6e8b43bc513574bb19f64a6383',1,'aace::navigation::Navigation']]], - ['muted',['MUTED',['../classaace_1_1audio_1_1_audio_output.html#ad03cbdbbf172fd64a16c16b64d8a4b05acd1ae4f9f957c14ebf6f0e57671dc020',1,'aace::audio::AudioOutput']]], - ['mutedstate',['MutedState',['../classaace_1_1audio_1_1_audio_output.html#ad03cbdbbf172fd64a16c16b64d8a4b05',1,'aace::audio::AudioOutput']]], - ['mutedstatechanged',['mutedStateChanged',['../classaace_1_1alexa_1_1_external_media_adapter.html#a0872bd033d641414641e8a8539df7878',1,'aace::alexa::ExternalMediaAdapter::mutedStateChanged()'],['../classaace_1_1alexa_1_1_local_media_source.html#afe2c689e38a4e5f8bd6ebd630412cef7',1,'aace::alexa::LocalMediaSource::mutedStateChanged()'],['../classaace_1_1audio_1_1_audio_output.html#a51ae5c98c56a0ed6328b1444d0aaf041',1,'aace::audio::AudioOutput::mutedStateChanged()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_b.html b/docs/docs/doxygen-docs/cpp/search/all_b.html deleted file mode 100644 index 0814e4e03..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_b.js b/docs/docs/doxygen-docs/cpp/search/all_b.js deleted file mode 100644 index 792404fde..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_b.js +++ /dev/null @@ -1,19 +0,0 @@ -var searchData= -[ - ['navigation',['Navigation',['../classaace_1_1navigation_1_1_navigation.html',1,'aace::navigation::Navigation'],['../classaace_1_1alexa_1_1_external_media_adapter.html#a4b57948f71acaa90e57d40dffb873eee',1,'aace::alexa::ExternalMediaAdapter::Navigation()']]], - ['navigationconfiguration',['NavigationConfiguration',['../classaace_1_1navigation_1_1config_1_1_navigation_configuration.html',1,'aace::navigation::config']]], - ['navigationerror',['navigationError',['../classaace_1_1navigation_1_1_navigation.html#a391d9b1c3de2790bdf1e5d7845c22d05',1,'aace::navigation::Navigation']]], - ['navigationevent',['navigationEvent',['../classaace_1_1navigation_1_1_navigation.html#a0593c914f53afaa11c2ccaca8216f17f',1,'aace::navigation::Navigation']]], - ['networkinfoprovider',['NetworkInfoProvider',['../classaace_1_1network_1_1_network_info_provider.html',1,'aace::network']]], - ['networkinfoproviderengineinterface',['NetworkInfoProviderEngineInterface',['../classaace_1_1network_1_1_network_info_provider_engine_interface.html',1,'aace::network']]], - ['networkstatus',['NetworkStatus',['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1',1,'aace::network::NetworkInfoProviderEngineInterface::NetworkStatus()'],['../classaace_1_1network_1_1_network_info_provider.html#a7559331245cff527a1acb4423ca4dfd3',1,'aace::network::NetworkInfoProvider::NetworkStatus()']]], - ['networkstatuschanged',['networkStatusChanged',['../classaace_1_1network_1_1_network_info_provider.html#a51201e3d5dc9f1ea8e6ef973373ed971',1,'aace::network::NetworkInfoProvider']]], - ['next',['NEXT',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a47559fb833ff58321570e5e877b467f6',1,'aace::alexa::PlaybackControllerEngineInterface::NEXT()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a47559fb833ff58321570e5e877b467f6',1,'aace::alexa::ExternalMediaAdapter::NEXT()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea47559fb833ff58321570e5e877b467f6',1,'aace::alexa::ExternalMediaAdapter::NEXT()']]], - ['no_5fanswer',['NO_ANSWER',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefada54db18fbf008822603662a98f6e650',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['no_5fcarrier',['NO_CARRIER',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefad7a9ed13ed586dc55e871540a2605abf',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['no_5ferror',['NO_ERROR',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ad306b6fdee05fe87455110ddf6501e6c',1,'aace::alexa::AuthProviderEngineInterface']]], - ['no_5fnumber_5ffor_5fredial',['NO_NUMBER_FOR_REDIAL',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefabfc8b6f0d7bba958f573f344c580d514',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['none',['NONE',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05ab50339a10e1de285ac99d4c3990b8693',1,'aace::alexa::AlexaClient::NONE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#a4b57948f71acaa90e57d40dffb873eeeab50339a10e1de285ac99d4c3990b8693',1,'aace::alexa::ExternalMediaAdapter::NONE()'],['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aab50339a10e1de285ac99d4c3990b8693',1,'aace::cbl::CBL::NONE()'],['../namespaceaace_1_1alexa.html#a8742c5f44018cc6c71ab05f1ee8afa9bab50339a10e1de285ac99d4c3990b8693',1,'aace::alexa::NONE()']]], - ['not_5frated',['NOT_RATED',['../classaace_1_1alexa_1_1_external_media_adapter.html#a36a5f525a243568ee2bbdbdc2228d742a2c25db4cbf8eeac801ec4b9be6b59e08',1,'aace::alexa::ExternalMediaAdapter']]], - ['notifications',['Notifications',['../classaace_1_1alexa_1_1_notifications.html',1,'aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_c.html b/docs/docs/doxygen-docs/cpp/search/all_c.html deleted file mode 100644 index da08c387a..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_c.js b/docs/docs/doxygen-docs/cpp/search/all_c.js deleted file mode 100644 index 8b692eaaa..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_c.js +++ /dev/null @@ -1,20 +0,0 @@ -var searchData= -[ - ['off',['OFF',['../classaace_1_1alexa_1_1_notifications.html#a745c257147c726a31f30ccf52c4f83d1a88559a0cfd8250c9d65970cc145c92d4',1,'aace::alexa::Notifications']]], - ['on',['ON',['../classaace_1_1alexa_1_1_notifications.html#a745c257147c726a31f30ccf52c4f83d1a90651ebea9a35ec4e018c8157492e17c',1,'aace::alexa::Notifications']]], - ['oncancelauthorization',['onCancelAuthorization',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#aac2bb834613c656019d6637dc360aac1',1,'aace::authorization::AuthorizationEngineInterface']]], - ['ondisplaycardcleared',['onDisplayCardCleared',['../classaace_1_1alexa_1_1_template_runtime_engine_interface.html#ae996902577687707f57ef00b240752f5',1,'aace::alexa::TemplateRuntimeEngineInterface']]], - ['ongetplayerduration',['onGetPlayerDuration',['../classaace_1_1alexa_1_1_audio_player_engine_interface.html#a380a99414e5f66c1ab1ed771e92a64cd',1,'aace::alexa::AudioPlayerEngineInterface']]], - ['ongetplayerposition',['onGetPlayerPosition',['../classaace_1_1alexa_1_1_audio_player_engine_interface.html#a8b16159c547ae8f0703d3a8385fa6ff8',1,'aace::alexa::AudioPlayerEngineInterface']]], - ['onlogout',['onLogout',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a1ab5b57b2b705d2d30a4d533cc1146af',1,'aace::authorization::AuthorizationEngineInterface']]], - ['onnotificationreceived',['onNotificationReceived',['../classaace_1_1alexa_1_1_notifications.html#a72f76e86a5e8a022db2aee933751c7dc',1,'aace::alexa::Notifications']]], - ['onsendevent',['onSendEvent',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a227a1f3016ebf443b568b9dd96a232a5',1,'aace::authorization::AuthorizationEngineInterface']]], - ['onstartauthorization',['onStartAuthorization',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a47cdafa4c4b2869eddee1e664221bc6a',1,'aace::authorization::AuthorizationEngineInterface']]], - ['openstream',['openStream',['../classaace_1_1core_1_1_message_broker.html#ae2028114234d3ad4ab0bcbadb4a86eaf',1,'aace::core::MessageBroker']]], - ['operating_5fsystem',['OPERATING_SYSTEM',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa079a931f8bc9b374ff498c7343959d32',1,'aace::vehicle::config::VehicleConfiguration']]], - ['operator_3c_3c',['operator<<',['../namespaceaace_1_1alexa.html#a34edec6ce32fa2cc7fa9dddc3da15ce9',1,'aace::alexa::operator<<(std::ostream &stream, const EqualizerControllerEngineInterface::EqualizerBand &band)'],['../namespaceaace_1_1alexa.html#a7b69fced6fc0a7435f1d79924e4619b8',1,'aace::alexa::operator<<(std::ostream &stream, const MediaPlaybackRequestorEngineInterface::InvocationReason &invocationReason)']]], - ['operator_3d',['operator=',['../classaace_1_1audio_1_1_audio_stream_property.html#a924207ad94f9a5d8409e6048e229da37',1,'aace::audio::AudioStreamProperty']]], - ['orient_5fnorth',['ORIENT_NORTH',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3ad64c38b4864ee9a090f20d240b3a300d',1,'aace::navigation::Navigation']]], - ['other',['OTHER',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836a03570470bad94692ce93e32700d2e1cb',1,'aace::alexa::ExternalMediaAdapter::OTHER()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefa03570470bad94692ce93e32700d2e1cb',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::OTHER()']]], - ['outbound_5fringing',['OUTBOUND_RINGING',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432ad912b0d80fa8ac23f9ba79e278f61966',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_d.html b/docs/docs/doxygen-docs/cpp/search/all_d.html deleted file mode 100644 index 9986c9cbf..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_d.js b/docs/docs/doxygen-docs/cpp/search/all_d.js deleted file mode 100644 index df505cf98..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_d.js +++ /dev/null @@ -1,40 +0,0 @@ -var searchData= -[ - ['past_5fdue',['PAST_DUE',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a560bb2d9ea9002aa8c70a4462ca6c304',1,'aace::alexa::Alerts']]], - ['pause',['PAUSE',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a291554596c183e837f0a6bec3767c891',1,'aace::alexa::PlaybackControllerEngineInterface::PAUSE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a291554596c183e837f0a6bec3767c891',1,'aace::alexa::ExternalMediaAdapter::PAUSE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea291554596c183e837f0a6bec3767c891',1,'aace::alexa::ExternalMediaAdapter::PAUSE()'],['../classaace_1_1audio_1_1_audio_output.html#ab0a3cb1163e4a2b4fa6ed0fbb54bdc4e',1,'aace::audio::AudioOutput::pause()']]], - ['paused',['PAUSED',['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa99b2439e63f73ad515f7ab2447a80673',1,'aace::alexa']]], - ['pending',['PENDING',['../classaace_1_1alexa_1_1_alexa_client.html#a375451d4d9cb626701ac8cbaa02ffbe2ac69f06e1a9b016d133907b4e5f5864d2',1,'aace::alexa::AlexaClient']]], - ['permissionstate',['PermissionState',['../classaace_1_1messaging_1_1_messaging.html#abc8737f2c9a630793c570482266c0c55',1,'aace::messaging::Messaging']]], - ['phonecallcontroller',['PhoneCallController',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html',1,'aace::phoneCallController']]], - ['phonecallcontrollerengineinterface',['PhoneCallControllerEngineInterface',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html',1,'aace::phoneCallController']]], - ['ping_5ftimedout',['PING_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a2e03079aa2f230632487842f6cce997a',1,'aace::alexa::AlexaClient']]], - ['platforminterface',['PlatformInterface',['../classaace_1_1core_1_1_platform_interface.html',1,'aace::core']]], - ['play',['play',['../classaace_1_1alexa_1_1_external_media_adapter.html#a744856c875bd6e2187584af95ccdf62f',1,'aace::alexa::ExternalMediaAdapter::play(const std::string &localPlayerId, const std::string &playContextToken, int64_t index, std::chrono::milliseconds offset, bool preload, Navigation navigation)=0'],['../classaace_1_1alexa_1_1_external_media_adapter.html#a159219dfe69cbb6b937edb97c52619db',1,'aace::alexa::ExternalMediaAdapter::play(const std::string &localPlayerId, const std::string &playContextToken, int64_t index, std::chrono::milliseconds offset, bool preload, Navigation navigation, const std::string &playbackSessionId, const std::string &skillToken)'],['../classaace_1_1alexa_1_1_local_media_source.html#a1a1f194d9ecc288b70fa09a04d937e8e',1,'aace::alexa::LocalMediaSource::play(ContentSelector contentSelectorType, const std::string &payload)'],['../classaace_1_1alexa_1_1_local_media_source.html#acfa5a4b31e25aad959be05d56a495fb8',1,'aace::alexa::LocalMediaSource::play(ContentSelector contentSelectorType, const std::string &payload, const std::string &sessionId)'],['../classaace_1_1audio_1_1_audio_output.html#a5318ee52ef7ec7216ede5d09b7099c80',1,'aace::audio::AudioOutput::play()'],['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a6a216efc529825c60a4a4c0bc99ad77f',1,'aace::alexa::PlaybackControllerEngineInterface::PLAY()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea6a216efc529825c60a4a4c0bc99ad77f',1,'aace::alexa::ExternalMediaAdapter::PLAY()']]], - ['playbackbutton',['PlaybackButton',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4',1,'aace::alexa::PlaybackControllerEngineInterface::PlaybackButton()'],['../classaace_1_1alexa_1_1_playback_controller.html#a18c59eb4f33742d091a065d02c764762',1,'aace::alexa::PlaybackController::PlaybackButton()']]], - ['playbackcontroller',['PlaybackController',['../classaace_1_1alexa_1_1_playback_controller.html',1,'aace::alexa']]], - ['playbackcontrollerengineinterface',['PlaybackControllerEngineInterface',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html',1,'aace::alexa']]], - ['playbacksource',['playbackSource',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ab65edcec57ea9126b9936b68f3694509',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::playbackSource()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ae5c486e6d4c79537597a8430d099b2dd',1,'aace::alexa::LocalMediaSource::PlaybackState::playbackSource()']]], - ['playbacksourceid',['playbackSourceId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a1b0f4fbadc859257a4c2300f41494b16',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::playbackSourceId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a42ff0f9ba02eff868248aa688db77221',1,'aace::alexa::LocalMediaSource::PlaybackState::playbackSourceId()']]], - ['playbackstate',['PlaybackState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html',1,'aace::alexa::ExternalMediaAdapter::PlaybackState'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html',1,'aace::alexa::LocalMediaSource::PlaybackState'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#aeac23f8b8544eff187f8cc29c43a254e',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::PlaybackState()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a45f06189dbaaf23939994d0d921a6cb3',1,'aace::alexa::LocalMediaSource::PlaybackState::PlaybackState()'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html#aadbf68e90a1b84c5714dc432cf2c7dbf',1,'aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState::playbackState()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html#a22cb98bddfdd580cc71069d3167a58a5',1,'aace::alexa::LocalMediaSource::LocalMediaSourceState::playbackState()']]], - ['playbacktoggle',['PlaybackToggle',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8c',1,'aace::alexa::PlaybackControllerEngineInterface::PlaybackToggle()'],['../classaace_1_1alexa_1_1_playback_controller.html#a15781abf2231c9b5de41444a27844a7d',1,'aace::alexa::PlaybackController::PlaybackToggle()']]], - ['playcontrol',['playControl',['../classaace_1_1alexa_1_1_external_media_adapter.html#ab1741d92c3a2530f58d8f5b2bbc06953',1,'aace::alexa::ExternalMediaAdapter::playControl()'],['../classaace_1_1alexa_1_1_local_media_source.html#ad541a6f60242ad371b453570e1e8da4d',1,'aace::alexa::LocalMediaSource::playControl()']]], - ['playcontroltype',['PlayControlType',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6',1,'aace::alexa::ExternalMediaAdapter::PlayControlType()'],['../classaace_1_1alexa_1_1_local_media_source.html#aea96a47b1442b4c5fa2906b2e0d9a4a9',1,'aace::alexa::LocalMediaSource::PlayControlType()']]], - ['playeractivity',['PlayerActivity',['../classaace_1_1alexa_1_1_audio_player.html#afb9cdf00184a4e792b2207583145ef34',1,'aace::alexa::AudioPlayer::PlayerActivity()'],['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0a',1,'aace::alexa::PlayerActivity()']]], - ['playeractivitychanged',['playerActivityChanged',['../classaace_1_1alexa_1_1_audio_player.html#a13c5a430737a7d55a39525da2a90a7a1',1,'aace::alexa::AudioPlayer']]], - ['playercookie',['playerCookie',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a6aa00c891594ccfe90626c3a15e139a0',1,'aace::alexa::ExternalMediaAdapter::SessionState']]], - ['playererror',['playerError',['../classaace_1_1alexa_1_1_external_media_adapter.html#a2f8520de5bd484936c32f496adcd9295',1,'aace::alexa::ExternalMediaAdapter::playerError()'],['../classaace_1_1alexa_1_1_local_media_source.html#a32a7ab6c37b036e83ab4b5f21448088c',1,'aace::alexa::LocalMediaSource::playerError()']]], - ['playerevent',['playerEvent',['../classaace_1_1alexa_1_1_external_media_adapter.html#a762baea1e5caf06ca343dfba22c67902',1,'aace::alexa::ExternalMediaAdapter::playerEvent()'],['../classaace_1_1alexa_1_1_local_media_source.html#a7227c31de96b605df8e22b83eb161a32',1,'aace::alexa::LocalMediaSource::playerEvent()']]], - ['playing',['PLAYING',['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa50366a49630a416ab3ccaa004196027e',1,'aace::alexa']]], - ['podcast',['PODCAST',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836a78e22457c7b45ec21614b44e54620ef3',1,'aace::alexa::ExternalMediaAdapter']]], - ['prepare',['prepare',['../classaace_1_1audio_1_1_audio_output.html#a2e67f2223e68d842685da2f32f14d49d',1,'aace::audio::AudioOutput::prepare(std::shared_ptr< AudioStream > stream, bool repeating)=0'],['../classaace_1_1audio_1_1_audio_output.html#ac65040330bf053723e6ded2df6c2da88',1,'aace::audio::AudioOutput::prepare(const std::string &url, bool repeating)=0']]], - ['preparespeech',['prepareSpeech',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#a53d87c2ee1397aa40cab33ed9662e2f8',1,'aace::textToSpeech::TextToSpeech']]], - ['preparespeechcompleted',['prepareSpeechCompleted',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#af482fce1219eba826408b538e89aeb13',1,'aace::textToSpeech::TextToSpeech']]], - ['preparespeechfailed',['prepareSpeechFailed',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#a7a57fd6f8ac823b94d3afdb0d84774c5',1,'aace::textToSpeech::TextToSpeech']]], - ['preset',['PRESET',['../classaace_1_1alexa_1_1_local_media_source.html#ae2468e3779807990305dfd341ca3d19dae02d6531f660a4cb37e2e978136891f6',1,'aace::alexa::LocalMediaSource']]], - ['previous',['PREVIOUS',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a315ba7a868d45a9cb131c8dca3166b51',1,'aace::alexa::PlaybackControllerEngineInterface::PREVIOUS()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a315ba7a868d45a9cb131c8dca3166b51',1,'aace::alexa::ExternalMediaAdapter::PREVIOUS()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea315ba7a868d45a9cb131c8dca3166b51',1,'aace::alexa::ExternalMediaAdapter::PREVIOUS()']]], - ['processactivityevent',['processActivityEvent',['../classaace_1_1apl_1_1_a_p_l.html#a1e382051d18bc09a39e1f3cd9b9ddb9a',1,'aace::apl::APL']]], - ['propertychanged',['propertyChanged',['../classaace_1_1property_manager_1_1_property_manager.html#a71d433e4f3149f96ce2b3df3a51d1aa5',1,'aace::propertyManager::PropertyManager']]], - ['propertymanager',['PropertyManager',['../classaace_1_1property_manager_1_1_property_manager.html',1,'aace::propertyManager']]], - ['propertystatechanged',['propertyStateChanged',['../classaace_1_1property_manager_1_1_property_manager.html#acfe5b9136c08b87e35c55045129e5aa3',1,'aace::propertyManager::PropertyManager']]], - ['publish',['publish',['../classaace_1_1core_1_1_message_broker.html#a1d13752c762535554c5b195d77f7593f',1,'aace::core::MessageBroker']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_e.html b/docs/docs/doxygen-docs/cpp/search/all_e.html deleted file mode 100644 index 9fa42bbac..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_e.js b/docs/docs/doxygen-docs/cpp/search/all_e.js deleted file mode 100644 index a2512f739..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_e.js +++ /dev/null @@ -1,29 +0,0 @@ -var searchData= -[ - ['read_5ftimedout',['READ_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05acc3d4fecdd44cc6a7090ead5bcdc89a0',1,'aace::alexa::AlexaClient']]], - ['ready',['READY',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a2baa69eafc7204f3bd8648eba580c489',1,'aace::alexa::Alerts']]], - ['record',['record',['../classaace_1_1metrics_1_1_metrics_uploader.html#aed82a63aeae759182dd2f9d744b729f9',1,'aace::metrics::MetricsUploader']]], - ['redial',['redial',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#aa4487723257e8e3ac2b7ba8c335b461d',1,'aace::phoneCallController::PhoneCallController']]], - ['refreshed',['REFRESHED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792eca87d0a2ea7d2aee5153eaa716da4c8f60',1,'aace::alexa::AuthProviderEngineInterface']]], - ['refreshing_5ftoken',['REFRESHING_TOKEN',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2babab0c63d28df32e59e41939aee63757077',1,'aace::cbl::CBL']]], - ['registerplatforminterface',['registerPlatformInterface',['../classaace_1_1core_1_1_engine.html#abab09ff31a4c13f8841bc124d87c24eb',1,'aace::core::Engine::registerPlatformInterface(std::shared_ptr< aace::core::PlatformInterface > platformInterface)=0'],['../classaace_1_1core_1_1_engine.html#a5b1e5999b008bee74249d162c95be7c7',1,'aace::core::Engine::registerPlatformInterface(std::initializer_list< std::shared_ptr< aace::core::PlatformInterface >> platformInterfaceList)=0']]], - ['removeaddressbook',['removeAddressBook',['../classaace_1_1address_book_1_1_address_book.html#aa7114710ac2761899fd033a06fd39cf3',1,'aace::addressBook::AddressBook']]], - ['removeallalerts',['removeAllAlerts',['../classaace_1_1alexa_1_1_alerts.html#a48eea8459c5a5c42819fb4fcd155ff89',1,'aace::alexa::Alerts']]], - ['renderdocument',['renderDocument',['../classaace_1_1apl_1_1_a_p_l.html#a605da3ae66ca91baa83f71442e0c4273',1,'aace::apl::APL']]], - ['renderdocumentresult',['renderDocumentResult',['../classaace_1_1apl_1_1_a_p_l.html#a42ad9effa8cb1ae3ca95fa65c3378993',1,'aace::apl::APL']]], - ['renderplayerinfo',['renderPlayerInfo',['../classaace_1_1alexa_1_1_template_runtime.html#a216ae3f6aa681cd2b5abead91eb17e49',1,'aace::alexa::TemplateRuntime']]], - ['rendertemplate',['renderTemplate',['../classaace_1_1alexa_1_1_template_runtime.html#aa3d04935b3c41e98610a0e427bf4f3f1',1,'aace::alexa::TemplateRuntime']]], - ['repeat',['REPEAT',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8ca5be68175be14dfaa080165456c2e9555',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['repeatenabled',['repeatEnabled',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ad18c03b18fc5fd59d4502cb5902841c9',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::repeatEnabled()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ac7d32d117f01f4e07020b68eb3d7a329',1,'aace::alexa::LocalMediaSource::PlaybackState::repeatEnabled()']]], - ['repeatoneenabled',['repeatOneEnabled',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a0bb23d6c12a7b4527c71849079c6f4d7',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::repeatOneEnabled()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a0c9af887be4652b9006229d650abf733',1,'aace::alexa::LocalMediaSource::PlaybackState::repeatOneEnabled()']]], - ['reportdiscoveredplayers',['reportDiscoveredPlayers',['../classaace_1_1alexa_1_1_external_media_adapter.html#ac21345c1356b5a346302f4f94a4c9cd9',1,'aace::alexa::ExternalMediaAdapter']]], - ['reportnetworkdatausage',['reportNetworkDataUsage',['../classaace_1_1device_usage_1_1_device_usage.html#aa9003acec174eae323c0ed3e7acbdaef',1,'aace::deviceUsage::DeviceUsage']]], - ['requesting_5fcode_5fpair',['REQUESTING_CODE_PAIR',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2baba699a1731760b4edc72e1528fde0e839f',1,'aace::cbl::CBL']]], - ['requesting_5ftoken',['REQUESTING_TOKEN',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2babaefb6f44f1ec98c410a023954cf0270b9',1,'aace::cbl::CBL']]], - ['requestmediaplayback',['requestMediaPlayback',['../classaace_1_1alexa_1_1_media_playback_requestor.html#af93926d89c6ebfd55baa2d5dbf62a7d1',1,'aace::alexa::MediaPlaybackRequestor']]], - ['requesttoken',['requestToken',['../classaace_1_1alexa_1_1_external_media_adapter.html#a852b1789a85467ede731ba005de78320',1,'aace::alexa::ExternalMediaAdapter']]], - ['reset',['reset',['../classaace_1_1cbl_1_1_c_b_l.html#a6b9bf59fb1f4a358273851049b2a74b6',1,'aace::cbl::CBL']]], - ['resume',['RESUME',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6abac2aec3ee8d7d495123dbe5ca2fdac9',1,'aace::alexa::ExternalMediaAdapter::RESUME()'],['../classaace_1_1audio_1_1_audio_output.html#a16da42e4ec758e6635ab01c01bd435e5',1,'aace::audio::AudioOutput::resume()']]], - ['rewind',['REWIND',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6af302817a1a3baa8f5aef592bda7c0adc',1,'aace::alexa::ExternalMediaAdapter::REWIND()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eaf302817a1a3baa8f5aef592bda7c0adc',1,'aace::alexa::ExternalMediaAdapter::REWIND()']]], - ['rse_5fembedded_5ffiretvs',['RSE_EMBEDDED_FIRETVS',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa00596599fbcfdf162c7c2bb17eb73d98',1,'aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/all_f.html b/docs/docs/doxygen-docs/cpp/search/all_f.html deleted file mode 100644 index 6ecfc0ed8..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/all_f.js b/docs/docs/doxygen-docs/cpp/search/all_f.js deleted file mode 100644 index 75e8fa3f0..000000000 --- a/docs/docs/doxygen-docs/cpp/search/all_f.js +++ /dev/null @@ -1,95 +0,0 @@ -var searchData= -[ - ['sample',['SAMPLE',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836af5a2496cf66cb8cffe66cb1b27d7dede',1,'aace::alexa::ExternalMediaAdapter']]], - ['satellite_5fradio',['SATELLITE_RADIO',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3ac88fb9fa48ad5e1cf455de65f0a769a8',1,'aace::alexa::LocalMediaSource']]], - ['scheduled_5ffor_5flater',['SCHEDULED_FOR_LATER',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22af46151a3d4da2bd79c4000ab5a199d94',1,'aace::alexa::Alerts']]], - ['scroll_5fdown',['SCROLL_DOWN',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a26b36a2a5f3ef7983f88fb7601ccd228',1,'aace::navigation::Navigation']]], - ['scroll_5feast',['SCROLL_EAST',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3ac29902d41c0a97f6be6b9ca7337c9faf',1,'aace::navigation::Navigation']]], - ['scroll_5fleft',['SCROLL_LEFT',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a2fac8e25a4ca281bbb3c4597aa868a75',1,'aace::navigation::Navigation']]], - ['scroll_5fnorth',['SCROLL_NORTH',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a390f0237e5fdefaec0700615a737959d',1,'aace::navigation::Navigation']]], - ['scroll_5fright',['SCROLL_RIGHT',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3ae365369ee6653f1cc7e5b0702a375723',1,'aace::navigation::Navigation']]], - ['scroll_5fsouth',['SCROLL_SOUTH',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a005cf110c6daf59bd3f97f341d2037ea',1,'aace::navigation::Navigation']]], - ['scroll_5fup',['SCROLL_UP',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a6ae640c96760bbabf3c8abafd1abc20f',1,'aace::navigation::Navigation']]], - ['scroll_5fwest',['SCROLL_WEST',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a841785456955b3715ed16ddecbacbc40',1,'aace::navigation::Navigation']]], - ['seek',['seek',['../classaace_1_1alexa_1_1_external_media_adapter.html#a95da75990f502cac72ed8b15cb4e2bc6',1,'aace::alexa::ExternalMediaAdapter::seek()'],['../classaace_1_1alexa_1_1_local_media_source.html#af1bdc078c4702c3f8b7a864dd0095a47',1,'aace::alexa::LocalMediaSource::seek()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea71fa98cecf9e896e77d11325dbe19dc6',1,'aace::alexa::ExternalMediaAdapter::SEEK()']]], - ['sendconnectivityevent',['sendConnectivityEvent',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#a07992367aa0b66f931ca374da0feb86d',1,'aace::connectivity::AlexaConnectivity']]], - ['senddatasourcefetchrequestevent',['sendDataSourceFetchRequestEvent',['../classaace_1_1apl_1_1_a_p_l.html#a306d1701b8132eb2306b22880e4401e8',1,'aace::apl::APL']]], - ['senddevicewindowstate',['sendDeviceWindowState',['../classaace_1_1apl_1_1_a_p_l.html#ac3b76e6d3ad96161c5e37f2d3728ae1d',1,'aace::apl::APL']]], - ['senddocumentstate',['sendDocumentState',['../classaace_1_1apl_1_1_a_p_l.html#a87d590c8a9a8f32c36bf15b41ce6d1a0',1,'aace::apl::APL']]], - ['senddtmf',['sendDTMF',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#af236ece858fd897886f7d62fc175665c',1,'aace::phoneCallController::PhoneCallController']]], - ['senddtmffailed',['sendDTMFFailed',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a7711ff33033a10bb6ec080269ac30ba6',1,'aace::phoneCallController::PhoneCallController']]], - ['senddtmfsucceeded',['sendDTMFSucceeded',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a4d89b0bc7309cd32a096641a45f559e5',1,'aace::phoneCallController::PhoneCallController']]], - ['sendevent',['sendEvent',['../classaace_1_1authorization_1_1_authorization.html#a7c5073cd65feff21a46022ab6e6d2274',1,'aace::authorization::Authorization']]], - ['sendmessage',['sendMessage',['../classaace_1_1messaging_1_1_messaging.html#a99ba888d9a757817fb0edcf4de845cfe',1,'aace::messaging::Messaging']]], - ['sendmessagefailed',['sendMessageFailed',['../classaace_1_1messaging_1_1_messaging.html#a67d5c75859171895cf5781086f567919',1,'aace::messaging::Messaging']]], - ['sendmessagesucceeded',['sendMessageSucceeded',['../classaace_1_1messaging_1_1_messaging.html#ac0e38e8653ffbfb1bb5bc8cca55274ca',1,'aace::messaging::Messaging']]], - ['sendruntimeerrorevent',['sendRuntimeErrorEvent',['../classaace_1_1apl_1_1_a_p_l.html#a3a3bba659088b4e3d4fed3f14ebf7f69',1,'aace::apl::APL']]], - ['senduserevent',['sendUserEvent',['../classaace_1_1apl_1_1_a_p_l.html#a650185d2e461fa04a54ca6389cea9b7e',1,'aace::apl::APL']]], - ['server_5fendpoint_5fchanged',['SERVER_ENDPOINT_CHANGED',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05acb2bd81ff7f58b2c6782fe390a723bbe',1,'aace::alexa::AlexaClient']]], - ['server_5ferror',['SERVER_ERROR',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a3fd4acc4cfaa41114f84707b95f05f31',1,'aace::alexa::AuthProviderEngineInterface']]], - ['server_5finternal_5ferror',['SERVER_INTERNAL_ERROR',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a6a701b3f16c45b9d96fec4ac97805d9c',1,'aace::alexa::AlexaClient']]], - ['server_5fside_5fdisconnect',['SERVER_SIDE_DISCONNECT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05ac15c6f3c089148a1bfa565ab4efea186',1,'aace::alexa::AlexaClient']]], - ['sessionstate',['SessionState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html',1,'aace::alexa::ExternalMediaAdapter::SessionState'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html',1,'aace::alexa::LocalMediaSource::SessionState'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a4d0362ceeb3aeb4a5523e3a9c1b355b2',1,'aace::alexa::ExternalMediaAdapter::SessionState::SessionState()'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html#aa5e42c3124172f96c11377bed58963aa',1,'aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState::sessionState()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html#a1a0533445205c67cca585e45ba1e9486',1,'aace::alexa::LocalMediaSource::LocalMediaSourceState::sessionState()']]], - ['setaplmaxversion',['setAPLMaxVersion',['../classaace_1_1apl_1_1_a_p_l.html#ae78b5ed9cf53ac882d12bdff99d69638',1,'aace::apl::APL']]], - ['setauthorizationdata',['setAuthorizationData',['../classaace_1_1authorization_1_1_authorization.html#a147681c6d9a1677d289aa715e910bb3d',1,'aace::authorization::Authorization']]], - ['setbandlevels',['setBandLevels',['../classaace_1_1alexa_1_1_equalizer_controller.html#a9f0774201117c45bc87f68e571f2478e',1,'aace::alexa::EqualizerController']]], - ['setdefaultzone',['setDefaultZone',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ac1c48da7ee8a6244c27414b97a40f3a0',1,'aace::carControl::config::CarControlConfiguration']]], - ['setdocumentidletimeout',['setDocumentIdleTimeout',['../classaace_1_1apl_1_1_a_p_l.html#ad6270378b772440b1d4679b844d4d928',1,'aace::apl::APL']]], - ['setdonotdisturb',['setDoNotDisturb',['../classaace_1_1alexa_1_1_do_not_disturb.html#adf4a853a8f3366e416127d1f1767ccab',1,'aace::alexa::DoNotDisturb']]], - ['setfocus',['setFocus',['../classaace_1_1alexa_1_1_external_media_adapter.html#a62328f4019ee4f59192e92606c5b4a57',1,'aace::alexa::ExternalMediaAdapter::setFocus()'],['../classaace_1_1alexa_1_1_local_media_source.html#ad1217e4c192da618ae846ba57c8611ac',1,'aace::alexa::LocalMediaSource::setFocus()']]], - ['setglobalpreset',['setGlobalPreset',['../classaace_1_1alexa_1_1_global_preset.html#a9cecca4284cee3de1215a53bb3b763ea',1,'aace::alexa::GlobalPreset']]], - ['setindicator',['setIndicator',['../classaace_1_1alexa_1_1_notifications.html#ac88ce22736f266b4ef6d703b7e2fbc58',1,'aace::alexa::Notifications']]], - ['setmodecontrollervalue',['setModeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#a68e0a7b00fa0024f83240e273817390a',1,'aace::carControl::CarControl']]], - ['setplatformproperty',['setPlatformProperty',['../classaace_1_1apl_1_1_a_p_l.html#a09d51de009a384fd4bb59a8da39b8231',1,'aace::apl::APL']]], - ['setposition',['setPosition',['../classaace_1_1audio_1_1_audio_output.html#a2d621811ac53c6128ad435546ba964e7',1,'aace::audio::AudioOutput']]], - ['setproperty',['setProperty',['../classaace_1_1property_manager_1_1_property_manager.html#a07bd961c86047b1b1e5de7366bf83820',1,'aace::propertyManager::PropertyManager']]], - ['setrangecontrollervalue',['setRangeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#a6eb554713a311dcf2dbe6aca00e1739e',1,'aace::carControl::CarControl']]], - ['setrefreshtoken',['setRefreshToken',['../classaace_1_1cbl_1_1_c_b_l.html#aeb62feeb8cdaad65b1d8dea41f243d7b',1,'aace::cbl::CBL']]], - ['setupcompleted',['setupCompleted',['../classaace_1_1alexa_1_1_device_setup.html#a7c2c215c0f18b326aaf7cf57569a2814',1,'aace::alexa::DeviceSetup']]], - ['setupcompletedresponse',['setupCompletedResponse',['../classaace_1_1alexa_1_1_device_setup.html#a24abfcf7ec0b5f52d976f14bcb913909',1,'aace::alexa::DeviceSetup']]], - ['setuserprofile',['setUserProfile',['../classaace_1_1cbl_1_1_c_b_l.html#a5ce90c8c986bdb7afa6ce7fcfb6a4be5',1,'aace::cbl::CBL']]], - ['show_5fdirections_5flist',['SHOW_DIRECTIONS_LIST',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a7658bb134731065ab512fd00a7833bf7',1,'aace::navigation::Navigation']]], - ['show_5froute_5foverview',['SHOW_ROUTE_OVERVIEW',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a3ee69731d295fff34a3a777b7d29cee7',1,'aace::navigation::Navigation']]], - ['showalternativeroutessucceeded',['showAlternativeRoutesSucceeded',['../classaace_1_1navigation_1_1_navigation.html#a0ddacd8f63a00cdcf322b11007345c9a',1,'aace::navigation::Navigation']]], - ['shuffle',['SHUFFLE',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8ca790b1468c0b9fb28fa9317ce7dd5fe6a',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['shuffleenabled',['shuffleEnabled',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a80455c20bb3b0800f323a0ccf51b25e9',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::shuffleEnabled()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ad9dbda90ac6bebf653a00d373cc3f296',1,'aace::alexa::LocalMediaSource::PlaybackState::shuffleEnabled()']]], - ['shutdown',['shutdown',['../classaace_1_1core_1_1_engine.html#a8d127cbe960a7e4e86fb404289011901',1,'aace::core::Engine']]], - ['sirius_5fxm',['SIRIUS_XM',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3acfe28902332d7da3436d56bd02e24d67',1,'aace::alexa::LocalMediaSource']]], - ['skip_5fbackward',['SKIP_BACKWARD',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a5ed6a35f9ed44a55531439293700797d',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['skip_5fforward',['SKIP_FORWARD',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a71a897441648c4e958274ec25b2286cc',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['slow_5fdown',['SLOW_DOWN',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a4a0a2ddc7446f94d38bcdd71e9bd4ee6',1,'aace::alexa::AuthProviderEngineInterface']]], - ['smallurl',['smallURL',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a40bc2ec8931aae4f77d2655613246cc8',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::smallURL()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ac2f9ba4ca5782c9ad8d6aa3dffe34d04',1,'aace::alexa::LocalMediaSource::PlaybackState::smallURL()']]], - ['snoozed',['SNOOZED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22adbd414f9aaabb67e8430e9520f604a79',1,'aace::alexa::Alerts']]], - ['source',['Source',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3',1,'aace::alexa::LocalMediaSource']]], - ['speakersettingschanged',['speakerSettingsChanged',['../classaace_1_1alexa_1_1_alexa_speaker.html#a240488c50d82f556621a521635304dfa',1,'aace::alexa::AlexaSpeaker']]], - ['speakertype',['SpeakerType',['../classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html#a201c4dce279b98ad5e622ceabfbd8d37',1,'aace::alexa::AlexaSpeakerEngineInterface']]], - ['speaking',['SPEAKING',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586eaddee564b336f5de690b746eb04e62114',1,'aace::alexa::AlexaClient']]], - ['speechrecognizer',['SpeechRecognizer',['../classaace_1_1alexa_1_1_speech_recognizer.html',1,'aace::alexa']]], - ['speechrecognizerengineinterface',['SpeechRecognizerEngineInterface',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html',1,'aace::alexa']]], - ['speechsynthesizer',['SpeechSynthesizer',['../classaace_1_1alexa_1_1_speech_synthesizer.html',1,'aace::alexa']]], - ['spiversion',['spiVersion',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html#a835f44aee5987c33adae9eb581129cfb',1,'aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo::spiVersion()'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a5ff9845559c445945ce46743577f02f0',1,'aace::alexa::ExternalMediaAdapter::SessionState::spiVersion()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a2b5d75eb773a180280a9e86311fb216a',1,'aace::alexa::LocalMediaSource::SessionState::spiVersion()']]], - ['start',['start',['../classaace_1_1cbl_1_1_c_b_l.html#a98ab22f22a9e395718c09730b35c9bdf',1,'aace::cbl::CBL::start()'],['../classaace_1_1core_1_1_engine.html#ace84ee80b94b7da5c7f38390d5a160d7',1,'aace::core::Engine::start()']]], - ['start_5fover',['START_OVER',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a023418747f62596e661828ad289f9fd1',1,'aace::alexa::ExternalMediaAdapter::START_OVER()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea023418747f62596e661828ad289f9fd1',1,'aace::alexa::ExternalMediaAdapter::START_OVER()']]], - ['startauthorization',['startAuthorization',['../classaace_1_1authorization_1_1_authorization.html#af93d589976a27961166a454ca50239eb',1,'aace::authorization::Authorization']]], - ['startcapture',['startCapture',['../classaace_1_1alexa_1_1_speech_recognizer.html#ab2d1df9942a32ff6eb829211a1ebffba',1,'aace::alexa::SpeechRecognizer']]], - ['startducking',['startDucking',['../classaace_1_1audio_1_1_audio_output.html#a127f6c48e927c2ad6d908dc7ba724da5',1,'aace::audio::AudioOutput']]], - ['started',['STARTED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a17130e6c806885e23770df1519b18eb7',1,'aace::alexa::Alerts']]], - ['starting',['STARTING',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2baba034312d8adc8099c1c6f53aaff745e26',1,'aace::cbl::CBL']]], - ['startnavigation',['startNavigation',['../classaace_1_1navigation_1_1_navigation.html#abb26aed1a2b2fb215fd9c69cb9b6511c',1,'aace::navigation::Navigation']]], - ['station',['STATION',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836aa0b67bb0a7cfbb35a3b71363059d5d80',1,'aace::alexa::ExternalMediaAdapter']]], - ['statuscode',['StatusCode',['../classaace_1_1alexa_1_1_device_setup.html#a9b27d4306350236719aed083ff389f00',1,'aace::alexa::DeviceSetup::StatusCode()'],['../classaace_1_1connectivity_1_1_alexa_connectivity.html#ae0c713d0bd876d87af35632d8b199927',1,'aace::connectivity::AlexaConnectivity::StatusCode()']]], - ['stop',['STOP',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a615a46af313786fc4e349f34118be111',1,'aace::alexa::ExternalMediaAdapter::STOP()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea615a46af313786fc4e349f34118be111',1,'aace::alexa::ExternalMediaAdapter::STOP()'],['../classaace_1_1audio_1_1_audio_output.html#a80a92aeb055e394e6661c43f9217c670',1,'aace::audio::AudioOutput::stop()'],['../classaace_1_1core_1_1_engine.html#a456599306224a018b0c7b708594671f2',1,'aace::core::Engine::stop()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#adbeb8a3a5c7f6e7bfd290ebe81770cae',1,'aace::phoneCallController::PhoneCallController::stop()']]], - ['stopcapture',['stopCapture',['../classaace_1_1alexa_1_1_speech_recognizer.html#afbbd237e855308ed0d440c7f3d469a69',1,'aace::alexa::SpeechRecognizer']]], - ['stopducking',['stopDucking',['../classaace_1_1audio_1_1_audio_output.html#a616f8d7ed77d3afcbb684977bf98368b',1,'aace::audio::AudioOutput']]], - ['stopforegroundactivity',['stopForegroundActivity',['../classaace_1_1alexa_1_1_alexa_client.html#a5ac8bb84af2126339c7bf685d3540bac',1,'aace::alexa::AlexaClient']]], - ['stopped',['STOPPED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a09d4d696b4e935115b9313e3c412509a',1,'aace::alexa::Alerts::STOPPED()'],['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa09d4d696b4e935115b9313e3c412509a',1,'aace::alexa::STOPPED()']]], - ['stopping',['STOPPING',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2babaf6cdb3c6710b50ec65ee07f740847e10',1,'aace::cbl::CBL']]], - ['storageconfiguration',['StorageConfiguration',['../classaace_1_1storage_1_1config_1_1_storage_configuration.html',1,'aace::storage::config']]], - ['streamconfiguration',['StreamConfiguration',['../classaace_1_1core_1_1config_1_1_stream_configuration.html',1,'aace::core::config']]], - ['string',['STRING',['../classaace_1_1metrics_1_1_metrics_uploader.html#a67e6fa51b9ef4b8a9b293870363eb4b5a63b588d5559f64f89a416e656880b949',1,'aace::metrics::MetricsUploader']]], - ['subscribe',['subscribe',['../classaace_1_1core_1_1_message_broker.html#a772d071dfd5916d8502defb703932a56',1,'aace::core::MessageBroker']]], - ['success',['SUCCESS',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05ad0749aaba8b833466dfcbb0428e4f89c',1,'aace::alexa::AlexaClient::SUCCESS()'],['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7ad0749aaba8b833466dfcbb0428e4f89c',1,'aace::alexa::MediaPlaybackRequestorEngineInterface::SUCCESS()'],['../classaace_1_1alexa_1_1_device_setup.html#a9b27d4306350236719aed083ff389f00ad0749aaba8b833466dfcbb0428e4f89c',1,'aace::alexa::DeviceSetup::SUCCESS()'],['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aad0749aaba8b833466dfcbb0428e4f89c',1,'aace::cbl::CBL::SUCCESS()']]], - ['supportedcontentselectors',['supportedContentSelectors',['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a8cff541377f47ba71c31fda6f53b46bf',1,'aace::alexa::LocalMediaSource::SessionState']]], - ['supportedoperations',['supportedOperations',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a7f87f3ccce182708d81da10642971c6c',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::supportedOperations()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a9663c11c93549bac86bc0794e7a6193b',1,'aace::alexa::LocalMediaSource::PlaybackState::supportedOperations()']]], - ['supportedplaybackoperation',['SupportedPlaybackOperation',['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6e',1,'aace::alexa::ExternalMediaAdapter']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_0.html b/docs/docs/doxygen-docs/cpp/search/classes_0.html deleted file mode 100644 index 1c3e406ac..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_0.js b/docs/docs/doxygen-docs/cpp/search/classes_0.js deleted file mode 100644 index cc0bba3ef..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_0.js +++ /dev/null @@ -1,26 +0,0 @@ -var searchData= -[ - ['addressbook',['AddressBook',['../classaace_1_1address_book_1_1_address_book.html',1,'aace::addressBook']]], - ['addressbookconfiguration',['AddressBookConfiguration',['../classaace_1_1address_book_1_1config_1_1_address_book_configuration.html',1,'aace::addressBook::config']]], - ['alerts',['Alerts',['../classaace_1_1alexa_1_1_alerts.html',1,'aace::alexa']]], - ['alertsengineinterface',['AlertsEngineInterface',['../classaace_1_1alexa_1_1_alerts_engine_interface.html',1,'aace::alexa']]], - ['alexaclient',['AlexaClient',['../classaace_1_1alexa_1_1_alexa_client.html',1,'aace::alexa']]], - ['alexaclientengineinterface',['AlexaClientEngineInterface',['../classaace_1_1alexa_1_1_alexa_client_engine_interface.html',1,'aace::alexa']]], - ['alexaconfiguration',['AlexaConfiguration',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html',1,'aace::alexa::config']]], - ['alexaconnectivity',['AlexaConnectivity',['../classaace_1_1connectivity_1_1_alexa_connectivity.html',1,'aace::connectivity']]], - ['alexaspeaker',['AlexaSpeaker',['../classaace_1_1alexa_1_1_alexa_speaker.html',1,'aace::alexa']]], - ['alexaspeakerengineinterface',['AlexaSpeakerEngineInterface',['../classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html',1,'aace::alexa']]], - ['apl',['APL',['../classaace_1_1apl_1_1_a_p_l.html',1,'aace::apl']]], - ['aplconfiguration',['APLConfiguration',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html',1,'aace::apl::config']]], - ['audioinputprovider',['AudioInputProvider',['../classaace_1_1audio_1_1_audio_input_provider.html',1,'aace::audio']]], - ['audiooutput',['AudioOutput',['../classaace_1_1audio_1_1_audio_output.html',1,'aace::audio']]], - ['audiooutputprovider',['AudioOutputProvider',['../classaace_1_1audio_1_1_audio_output_provider.html',1,'aace::audio']]], - ['audioplayer',['AudioPlayer',['../classaace_1_1alexa_1_1_audio_player.html',1,'aace::alexa']]], - ['audioplayerengineinterface',['AudioPlayerEngineInterface',['../classaace_1_1alexa_1_1_audio_player_engine_interface.html',1,'aace::alexa']]], - ['audiostreamproperty',['AudioStreamProperty',['../classaace_1_1audio_1_1_audio_stream_property.html',1,'aace::audio']]], - ['authorization',['Authorization',['../classaace_1_1authorization_1_1_authorization.html',1,'aace::authorization']]], - ['authorizationengineinterface',['AuthorizationEngineInterface',['../classaace_1_1authorization_1_1_authorization_engine_interface.html',1,'aace::authorization']]], - ['authorizedplayerinfo',['AuthorizedPlayerInfo',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html',1,'aace::alexa::ExternalMediaAdapter']]], - ['authprovider',['AuthProvider',['../classaace_1_1alexa_1_1_auth_provider.html',1,'aace::alexa']]], - ['authproviderengineinterface',['AuthProviderEngineInterface',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html',1,'aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_1.html b/docs/docs/doxygen-docs/cpp/search/classes_1.html deleted file mode 100644 index a8e706950..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_1.js b/docs/docs/doxygen-docs/cpp/search/classes_1.js deleted file mode 100644 index a3c8b0273..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['bluetoothprovider',['BluetoothProvider',['../classaace_1_1bluetooth_1_1_bluetooth_provider.html',1,'aace::bluetooth']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_2.html b/docs/docs/doxygen-docs/cpp/search/classes_2.html deleted file mode 100644 index 5c09c9691..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_2.js b/docs/docs/doxygen-docs/cpp/search/classes_2.js deleted file mode 100644 index a5e90cbe6..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_2.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['carcontrol',['CarControl',['../classaace_1_1car_control_1_1_car_control.html',1,'aace::carControl']]], - ['carcontrolconfiguration',['CarControlConfiguration',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html',1,'aace::carControl::config']]], - ['cbl',['CBL',['../classaace_1_1cbl_1_1_c_b_l.html',1,'aace::cbl']]], - ['cblconfiguration',['CBLConfiguration',['../classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html',1,'aace::cbl::config']]], - ['configurationfile',['ConfigurationFile',['../classaace_1_1core_1_1config_1_1_configuration_file.html',1,'aace::core::config']]], - ['connectionstatusinfo',['ConnectionStatusInfo',['../structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info.html',1,'aace::alexa::AlexaClient']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_3.html b/docs/docs/doxygen-docs/cpp/search/classes_3.html deleted file mode 100644 index 5faaeba81..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_3.js b/docs/docs/doxygen-docs/cpp/search/classes_3.js deleted file mode 100644 index 9a2f5bba5..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_3.js +++ /dev/null @@ -1,11 +0,0 @@ -var searchData= -[ - ['datapoint',['Datapoint',['../classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint.html',1,'aace::metrics::MetricsUploader']]], - ['devicesetup',['DeviceSetup',['../classaace_1_1alexa_1_1_device_setup.html',1,'aace::alexa']]], - ['devicesetupengineinterface',['DeviceSetupEngineInterface',['../classaace_1_1alexa_1_1_device_setup_engine_interface.html',1,'aace::alexa']]], - ['deviceusage',['DeviceUsage',['../classaace_1_1device_usage_1_1_device_usage.html',1,'aace::deviceUsage']]], - ['deviceusageengineinterface',['DeviceUsageEngineInterface',['../classaace_1_1device_usage_1_1_device_usage_engine_interface.html',1,'aace::deviceUsage']]], - ['discoveredplayerinfo',['DiscoveredPlayerInfo',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html',1,'aace::alexa::ExternalMediaAdapterEngineInterface']]], - ['donotdisturb',['DoNotDisturb',['../classaace_1_1alexa_1_1_do_not_disturb.html',1,'aace::alexa']]], - ['donotdisturbengineinterface',['DoNotDisturbEngineInterface',['../classaace_1_1alexa_1_1_do_not_disturb_engine_interface.html',1,'aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_4.html b/docs/docs/doxygen-docs/cpp/search/classes_4.html deleted file mode 100644 index b3f11bc78..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_4.js b/docs/docs/doxygen-docs/cpp/search/classes_4.js deleted file mode 100644 index 617f90b1a..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_4.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['engine',['Engine',['../classaace_1_1core_1_1_engine.html',1,'aace::core']]], - ['engineconfiguration',['EngineConfiguration',['../classaace_1_1core_1_1config_1_1_engine_configuration.html',1,'aace::core::config']]], - ['equalizercontroller',['EqualizerController',['../classaace_1_1alexa_1_1_equalizer_controller.html',1,'aace::alexa']]], - ['equalizercontrollerengineinterface',['EqualizerControllerEngineInterface',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html',1,'aace::alexa']]], - ['externalmediaadapter',['ExternalMediaAdapter',['../classaace_1_1alexa_1_1_external_media_adapter.html',1,'aace::alexa']]], - ['externalmediaadapterengineinterface',['ExternalMediaAdapterEngineInterface',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface.html',1,'aace::alexa']]], - ['externalmediaadapterstate',['ExternalMediaAdapterState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html',1,'aace::alexa::ExternalMediaAdapter']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_5.html b/docs/docs/doxygen-docs/cpp/search/classes_5.html deleted file mode 100644 index 952ace6f4..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_5.js b/docs/docs/doxygen-docs/cpp/search/classes_5.js deleted file mode 100644 index b15939a13..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_5.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['featurediscoveryengineinterface',['FeatureDiscoveryEngineInterface',['../classaace_1_1alexa_1_1_feature_discovery_engine_interface.html',1,'aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_6.html b/docs/docs/doxygen-docs/cpp/search/classes_6.html deleted file mode 100644 index 75eef9f42..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_6.js b/docs/docs/doxygen-docs/cpp/search/classes_6.js deleted file mode 100644 index 70cbd3061..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_6.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['globalpreset',['GlobalPreset',['../classaace_1_1alexa_1_1_global_preset.html',1,'aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_7.html b/docs/docs/doxygen-docs/cpp/search/classes_7.html deleted file mode 100644 index 745f5f282..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_7.js b/docs/docs/doxygen-docs/cpp/search/classes_7.js deleted file mode 100644 index b55ea05bd..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_7.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['iaddressbookentriesfactory',['IAddressBookEntriesFactory',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html',1,'aace::addressBook::AddressBook']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_8.html b/docs/docs/doxygen-docs/cpp/search/classes_8.html deleted file mode 100644 index 5a443d9d5..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_8.js b/docs/docs/doxygen-docs/cpp/search/classes_8.js deleted file mode 100644 index 957a573db..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_8.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['localmediasource',['LocalMediaSource',['../classaace_1_1alexa_1_1_local_media_source.html',1,'aace::alexa']]], - ['localmediasourceengineinterface',['LocalMediaSourceEngineInterface',['../classaace_1_1alexa_1_1_local_media_source_engine_interface.html',1,'aace::alexa']]], - ['localmediasourcestate',['LocalMediaSourceState',['../classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html',1,'aace::alexa::LocalMediaSource']]], - ['location',['Location',['../classaace_1_1location_1_1_location.html',1,'aace::location']]], - ['locationprovider',['LocationProvider',['../classaace_1_1location_1_1_location_provider.html',1,'aace::location']]], - ['locationproviderengineinterface',['LocationProviderEngineInterface',['../classaace_1_1location_1_1_location_provider_engine_interface.html',1,'aace::location']]], - ['logger',['Logger',['../classaace_1_1logger_1_1_logger.html',1,'aace::logger']]], - ['loggerconfiguration',['LoggerConfiguration',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html',1,'aace::logger::config']]], - ['loggerengineinterface',['LoggerEngineInterface',['../classaace_1_1logger_1_1_logger_engine_interface.html',1,'aace::logger']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_9.html b/docs/docs/doxygen-docs/cpp/search/classes_9.html deleted file mode 100644 index 9cb55be44..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_9.js b/docs/docs/doxygen-docs/cpp/search/classes_9.js deleted file mode 100644 index faa89ffc8..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_9.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['mediaplaybackrequestor',['MediaPlaybackRequestor',['../classaace_1_1alexa_1_1_media_playback_requestor.html',1,'aace::alexa']]], - ['mediaplaybackrequestorengineinterface',['MediaPlaybackRequestorEngineInterface',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html',1,'aace::alexa']]], - ['messagebroker',['MessageBroker',['../classaace_1_1core_1_1_message_broker.html',1,'aace::core']]], - ['messaging',['Messaging',['../classaace_1_1messaging_1_1_messaging.html',1,'aace::messaging']]], - ['metricsuploader',['MetricsUploader',['../classaace_1_1metrics_1_1_metrics_uploader.html',1,'aace::metrics']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_a.html b/docs/docs/doxygen-docs/cpp/search/classes_a.html deleted file mode 100644 index 54940d78f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_a.js b/docs/docs/doxygen-docs/cpp/search/classes_a.js deleted file mode 100644 index 0635d050c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_a.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['navigation',['Navigation',['../classaace_1_1navigation_1_1_navigation.html',1,'aace::navigation']]], - ['navigationconfiguration',['NavigationConfiguration',['../classaace_1_1navigation_1_1config_1_1_navigation_configuration.html',1,'aace::navigation::config']]], - ['networkinfoprovider',['NetworkInfoProvider',['../classaace_1_1network_1_1_network_info_provider.html',1,'aace::network']]], - ['networkinfoproviderengineinterface',['NetworkInfoProviderEngineInterface',['../classaace_1_1network_1_1_network_info_provider_engine_interface.html',1,'aace::network']]], - ['notifications',['Notifications',['../classaace_1_1alexa_1_1_notifications.html',1,'aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_b.html b/docs/docs/doxygen-docs/cpp/search/classes_b.html deleted file mode 100644 index 6071ae049..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_b.js b/docs/docs/doxygen-docs/cpp/search/classes_b.js deleted file mode 100644 index eafbdc8cd..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_b.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['phonecallcontroller',['PhoneCallController',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html',1,'aace::phoneCallController']]], - ['phonecallcontrollerengineinterface',['PhoneCallControllerEngineInterface',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html',1,'aace::phoneCallController']]], - ['platforminterface',['PlatformInterface',['../classaace_1_1core_1_1_platform_interface.html',1,'aace::core']]], - ['playbackcontroller',['PlaybackController',['../classaace_1_1alexa_1_1_playback_controller.html',1,'aace::alexa']]], - ['playbackcontrollerengineinterface',['PlaybackControllerEngineInterface',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html',1,'aace::alexa']]], - ['playbackstate',['PlaybackState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html',1,'aace::alexa::ExternalMediaAdapter::PlaybackState'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html',1,'aace::alexa::LocalMediaSource::PlaybackState']]], - ['propertymanager',['PropertyManager',['../classaace_1_1property_manager_1_1_property_manager.html',1,'aace::propertyManager']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_c.html b/docs/docs/doxygen-docs/cpp/search/classes_c.html deleted file mode 100644 index 6cf1d0080..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_c.js b/docs/docs/doxygen-docs/cpp/search/classes_c.js deleted file mode 100644 index 7485ee12b..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_c.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['sessionstate',['SessionState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html',1,'aace::alexa::ExternalMediaAdapter::SessionState'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html',1,'aace::alexa::LocalMediaSource::SessionState']]], - ['speechrecognizer',['SpeechRecognizer',['../classaace_1_1alexa_1_1_speech_recognizer.html',1,'aace::alexa']]], - ['speechrecognizerengineinterface',['SpeechRecognizerEngineInterface',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html',1,'aace::alexa']]], - ['speechsynthesizer',['SpeechSynthesizer',['../classaace_1_1alexa_1_1_speech_synthesizer.html',1,'aace::alexa']]], - ['storageconfiguration',['StorageConfiguration',['../classaace_1_1storage_1_1config_1_1_storage_configuration.html',1,'aace::storage::config']]], - ['streamconfiguration',['StreamConfiguration',['../classaace_1_1core_1_1config_1_1_stream_configuration.html',1,'aace::core::config']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_d.html b/docs/docs/doxygen-docs/cpp/search/classes_d.html deleted file mode 100644 index d4a7ed7ad..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_d.js b/docs/docs/doxygen-docs/cpp/search/classes_d.js deleted file mode 100644 index 87567aa1a..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_d.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['templateruntime',['TemplateRuntime',['../classaace_1_1alexa_1_1_template_runtime.html',1,'aace::alexa']]], - ['templateruntimeengineinterface',['TemplateRuntimeEngineInterface',['../classaace_1_1alexa_1_1_template_runtime_engine_interface.html',1,'aace::alexa']]], - ['texttospeech',['TextToSpeech',['../classaace_1_1text_to_speech_1_1_text_to_speech.html',1,'aace::textToSpeech']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/classes_e.html b/docs/docs/doxygen-docs/cpp/search/classes_e.html deleted file mode 100644 index 9a9f48c36..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/classes_e.js b/docs/docs/doxygen-docs/cpp/search/classes_e.js deleted file mode 100644 index d246539ba..000000000 --- a/docs/docs/doxygen-docs/cpp/search/classes_e.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['vehicleconfiguration',['VehicleConfiguration',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html',1,'aace::vehicle::config']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/close.png b/docs/docs/doxygen-docs/cpp/search/close.png deleted file mode 100644 index 9342d3dfe..000000000 Binary files a/docs/docs/doxygen-docs/cpp/search/close.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/search/enums_0.html b/docs/docs/doxygen-docs/cpp/search/enums_0.html deleted file mode 100644 index ee343ac0b..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_0.js b/docs/docs/doxygen-docs/cpp/search/enums_0.js deleted file mode 100644 index 7873e3d76..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_0.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['alertstate',['AlertState',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22',1,'aace::alexa::Alerts']]], - ['alexapresentationtimeouttype',['AlexaPresentationTimeoutType',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html#a812a021a78a91ecaa55208dc13f9c161',1,'aace::apl::config::APLConfiguration']]], - ['autherror',['AuthError',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37',1,'aace::alexa::AuthProviderEngineInterface']]], - ['authorizationstate',['AuthorizationState',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a41738dc27f412d602c2fe572ec5eeac3',1,'aace::authorization::AuthorizationEngineInterface']]], - ['authstate',['AuthState',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792ec',1,'aace::alexa::AuthProviderEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_1.html b/docs/docs/doxygen-docs/cpp/search/enums_1.html deleted file mode 100644 index 3fd210a06..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_1.js b/docs/docs/doxygen-docs/cpp/search/enums_1.js deleted file mode 100644 index b86ffb0c6..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_1.js +++ /dev/null @@ -1,14 +0,0 @@ -var searchData= -[ - ['callerror',['CallError',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fef',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['callingdeviceconfigurationproperty',['CallingDeviceConfigurationProperty',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a84647b3bad59bc01079e1addb1d3a2b6',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['callstate',['CallState',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['cblstate',['CBLState',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2bab',1,'aace::cbl::CBL']]], - ['cblstatechangedreason',['CBLStateChangedReason',['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0a',1,'aace::cbl::CBL']]], - ['connectionchangedreason',['ConnectionChangedReason',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05',1,'aace::alexa::AlexaClient']]], - ['connectionstate',['ConnectionState',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a811798c0331570b684648f0cd71a82a8',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['connectionstatus',['ConnectionStatus',['../classaace_1_1alexa_1_1_alexa_client.html#a375451d4d9cb626701ac8cbaa02ffbe2',1,'aace::alexa::AlexaClient']]], - ['connectiontype',['ConnectionType',['../classaace_1_1alexa_1_1_alexa_client.html#ad71ae13d124da8a6a3003cb0a516e2cd',1,'aace::alexa::AlexaClient']]], - ['contentselector',['ContentSelector',['../classaace_1_1alexa_1_1_local_media_source.html#ae2468e3779807990305dfd341ca3d19d',1,'aace::alexa::LocalMediaSource']]], - ['controldisplay',['ControlDisplay',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3',1,'aace::navigation::Navigation']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_2.html b/docs/docs/doxygen-docs/cpp/search/enums_2.html deleted file mode 100644 index a042e520e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_2.js b/docs/docs/doxygen-docs/cpp/search/enums_2.js deleted file mode 100644 index a85ecab4e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_2.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['datapointtype',['DatapointType',['../classaace_1_1metrics_1_1_metrics_uploader.html#a67e6fa51b9ef4b8a9b293870363eb4b5',1,'aace::metrics::MetricsUploader']]], - ['dialogstate',['DialogState',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586e',1,'aace::alexa::AlexaClient']]], - ['dtmferror',['DTMFError',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a6a73274c0233185e56bf632c6b069893',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_3.html b/docs/docs/doxygen-docs/cpp/search/enums_3.html deleted file mode 100644 index 265e0cb93..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_3.js b/docs/docs/doxygen-docs/cpp/search/enums_3.js deleted file mode 100644 index 682b8a9e3..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_3.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['equalizerband',['EqualizerBand',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a733a5c62b16ef4f62b5c94d16f314cb3',1,'aace::alexa::EqualizerControllerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_4.html b/docs/docs/doxygen-docs/cpp/search/enums_4.html deleted file mode 100644 index 97ee07fb6..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_4.js b/docs/docs/doxygen-docs/cpp/search/enums_4.js deleted file mode 100644 index 7867af864..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_4.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['favorites',['Favorites',['../classaace_1_1alexa_1_1_external_media_adapter.html#a36a5f525a243568ee2bbdbdc2228d742',1,'aace::alexa::ExternalMediaAdapter']]], - ['focusstate',['FocusState',['../namespaceaace_1_1alexa.html#a8742c5f44018cc6c71ab05f1ee8afa9b',1,'aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_5.html b/docs/docs/doxygen-docs/cpp/search/enums_5.html deleted file mode 100644 index f837d25f2..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_5.js b/docs/docs/doxygen-docs/cpp/search/enums_5.js deleted file mode 100644 index 4b73f5c1d..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_5.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['indicatorstate',['IndicatorState',['../classaace_1_1alexa_1_1_notifications.html#a745c257147c726a31f30ccf52c4f83d1',1,'aace::alexa::Notifications']]], - ['initiator',['Initiator',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html#a32b21eebeb377059d5548e7297c0846b',1,'aace::alexa::SpeechRecognizerEngineInterface']]], - ['invocationreason',['InvocationReason',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#a94fe59eef9dd34edd6b29cec376cd85b',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_6.html b/docs/docs/doxygen-docs/cpp/search/enums_6.html deleted file mode 100644 index 56491ab5a..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_6.js b/docs/docs/doxygen-docs/cpp/search/enums_6.js deleted file mode 100644 index 238f0d6cf..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_6.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['level',['Level',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786',1,'aace::logger::LoggerEngineInterface']]], - ['locationserviceaccess',['LocationServiceAccess',['../classaace_1_1location_1_1_location_provider_engine_interface.html#af50b4c69d527d2c4eb15ca5b9169799c',1,'aace::location::LocationProviderEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_7.html b/docs/docs/doxygen-docs/cpp/search/enums_7.html deleted file mode 100644 index 585177314..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_7.js b/docs/docs/doxygen-docs/cpp/search/enums_7.js deleted file mode 100644 index 0096c391f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_7.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['mediaplaybackrequeststatus',['MediaPlaybackRequestStatus',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['mediatype',['MediaType',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836',1,'aace::alexa::ExternalMediaAdapter']]], - ['mutedstate',['MutedState',['../classaace_1_1audio_1_1_audio_output.html#ad03cbdbbf172fd64a16c16b64d8a4b05',1,'aace::audio::AudioOutput']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_8.html b/docs/docs/doxygen-docs/cpp/search/enums_8.html deleted file mode 100644 index 74b2e2184..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_8.js b/docs/docs/doxygen-docs/cpp/search/enums_8.js deleted file mode 100644 index 6da23977a..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_8.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['navigation',['Navigation',['../classaace_1_1alexa_1_1_external_media_adapter.html#a4b57948f71acaa90e57d40dffb873eee',1,'aace::alexa::ExternalMediaAdapter']]], - ['networkstatus',['NetworkStatus',['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1',1,'aace::network::NetworkInfoProviderEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_9.html b/docs/docs/doxygen-docs/cpp/search/enums_9.html deleted file mode 100644 index c08dec7c9..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_9.js b/docs/docs/doxygen-docs/cpp/search/enums_9.js deleted file mode 100644 index fca86b914..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_9.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['playbackbutton',['PlaybackButton',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['playbacktoggle',['PlaybackToggle',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8c',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['playcontroltype',['PlayControlType',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6',1,'aace::alexa::ExternalMediaAdapter']]], - ['playeractivity',['PlayerActivity',['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0a',1,'aace::alexa']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_a.html b/docs/docs/doxygen-docs/cpp/search/enums_a.html deleted file mode 100644 index dd85c0d00..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_a.js b/docs/docs/doxygen-docs/cpp/search/enums_a.js deleted file mode 100644 index 99101a24d..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_a.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['source',['Source',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3',1,'aace::alexa::LocalMediaSource']]], - ['speakertype',['SpeakerType',['../classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html#a201c4dce279b98ad5e622ceabfbd8d37',1,'aace::alexa::AlexaSpeakerEngineInterface']]], - ['statuscode',['StatusCode',['../classaace_1_1alexa_1_1_device_setup.html#a9b27d4306350236719aed083ff389f00',1,'aace::alexa::DeviceSetup']]], - ['supportedplaybackoperation',['SupportedPlaybackOperation',['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6e',1,'aace::alexa::ExternalMediaAdapter']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_b.html b/docs/docs/doxygen-docs/cpp/search/enums_b.html deleted file mode 100644 index df0e28784..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_b.js b/docs/docs/doxygen-docs/cpp/search/enums_b.js deleted file mode 100644 index dee83ad0c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_b.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['templateruntimetimeouttype',['TemplateRuntimeTimeoutType',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abf68ff89209ddbd51fbd9fa7abe21b41',1,'aace::alexa::config::AlexaConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enums_c.html b/docs/docs/doxygen-docs/cpp/search/enums_c.html deleted file mode 100644 index 326f9f887..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enums_c.js b/docs/docs/doxygen-docs/cpp/search/enums_c.js deleted file mode 100644 index e613de364..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enums_c.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['vehiclepropertytype',['VehiclePropertyType',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cf',1,'aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_0.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_0.html deleted file mode 100644 index 9387b6a37..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_0.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_0.js deleted file mode 100644 index c612bce1b..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_0.js +++ /dev/null @@ -1,18 +0,0 @@ -var searchData= -[ - ['acl_5fclient_5frequest',['ACL_CLIENT_REQUEST',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a5cd351b726751149c0464e3d9c23dcf1',1,'aace::alexa::AlexaClient']]], - ['acl_5fdisabled',['ACL_DISABLED',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aa81589ff9e0102b95f3eafce18463d1a',1,'aace::alexa::AlexaClient']]], - ['active',['ACTIVE',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432a18ff74f43da410c5529f7d6fca84f115',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['ad',['AD',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836ae182ebbc166d73366e7986813a7fc5f1',1,'aace::alexa::ExternalMediaAdapter']]], - ['adjust_5fseek',['ADJUST_SEEK',['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea1b6236451a19ee2e11ae9fb2f1185059',1,'aace::alexa::ExternalMediaAdapter']]], - ['alerts_5fvolume',['ALERTS_VOLUME',['../classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html#a201c4dce279b98ad5e622ceabfbd8d37ae191df18ea126ad075083ed3967ee9c3',1,'aace::alexa::AlexaSpeakerEngineInterface']]], - ['alexa_5fvolume',['ALEXA_VOLUME',['../classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html#a201c4dce279b98ad5e622ceabfbd8d37a9eacb55a5940aacff65f2779aaf9a37a',1,'aace::alexa::AlexaSpeakerEngineInterface']]], - ['am_5fradio',['AM_RADIO',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3abcae55301ccf164120b76b74b960f217',1,'aace::alexa::LocalMediaSource']]], - ['authorization_5fexpired',['AUTHORIZATION_EXPIRED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ab5070f2cd4c592acd39c78b2023a56d3',1,'aace::alexa::AuthProviderEngineInterface::AUTHORIZATION_EXPIRED()'],['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aab5070f2cd4c592acd39c78b2023a56d3',1,'aace::cbl::CBL::AUTHORIZATION_EXPIRED()']]], - ['authorization_5ffailed',['AUTHORIZATION_FAILED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37adce1442cd971edf5002db43b36fffa35',1,'aace::alexa::AuthProviderEngineInterface']]], - ['authorization_5fpending',['AUTHORIZATION_PENDING',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a6b627cb5218d413b73e27bed70c35a3d',1,'aace::alexa::AuthProviderEngineInterface']]], - ['authorized',['AUTHORIZED',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a41738dc27f412d602c2fe572ec5eeac3ac62575d93ceab8ef551cb3fe0a3aea63',1,'aace::authorization::AuthorizationEngineInterface']]], - ['authorizing',['AUTHORIZING',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a41738dc27f412d602c2fe572ec5eeac3a4f402e87cfe645f9fe108b183ba979d4',1,'aace::authorization::AuthorizationEngineInterface']]], - ['automotive_5fstartup',['AUTOMOTIVE_STARTUP',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#a94fe59eef9dd34edd6b29cec376cd85baef51798806764343e79d65db51b79d7c',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['avs',['AVS',['../classaace_1_1alexa_1_1_alexa_client.html#ad71ae13d124da8a6a3003cb0a516e2cda4c2270e341a62ea54d593d50968aa912',1,'aace::alexa::AlexaClient']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_1.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_1.html deleted file mode 100644 index f622aba99..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_1.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_1.js deleted file mode 100644 index 429a48aae..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_1.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['background',['BACKGROUND',['../namespaceaace_1_1alexa.html#a8742c5f44018cc6c71ab05f1ee8afa9ba87ed58ce5596142e11cb65deb049bb4b',1,'aace::alexa']]], - ['bass',['BASS',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a733a5c62b16ef4f62b5c94d16f314cb3ae1618eb6a84ac61faefe0a87d5649689',1,'aace::alexa::EqualizerControllerEngineInterface']]], - ['bluetooth',['BLUETOOTH',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a8de8a62c3191fb6cf61e0ac4b2b59045',1,'aace::alexa::LocalMediaSource']]], - ['buffer_5funderrun',['BUFFER_UNDERRUN',['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa8c1a053a04b750c9a6a26ac7388a1d49',1,'aace::alexa']]], - ['busy',['BUSY',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefa802706a9238e2928077f97736854bad4',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_10.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_10.html deleted file mode 100644 index f211cc3fe..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_10.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_10.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_10.js deleted file mode 100644 index 661d3f65f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_10.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['tap_5fto_5ftalk',['TAP_TO_TALK',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html#a32b21eebeb377059d5548e7297c0846ba69d29d63897c939d1aab97d1bc7fd4a1',1,'aace::alexa::SpeechRecognizerEngineInterface']]], - ['thinking',['THINKING',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586ea18004389aa6f827c608aad2441a2bc53',1,'aace::alexa::AlexaClient']]], - ['thumbs_5fdown',['THUMBS_DOWN',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8cad0f46468c4c82a194d3addf70a4fd30c',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['thumbs_5fup',['THUMBS_UP',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8ca0681d0f86db4139eecabf879c0c63f77',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['timeout',['TIMEOUT',['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aa070a0fb40f6c308ab544b227660aadff',1,'aace::cbl::CBL']]], - ['timer',['TIMER',['../classaace_1_1metrics_1_1_metrics_uploader.html#a67e6fa51b9ef4b8a9b293870363eb4b5ab127d163c55a6603f3a37ce3a642c36d',1,'aace::metrics::MetricsUploader']]], - ['track',['TRACK',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836ab82057c0f8a7631cf533363631986a00',1,'aace::alexa::ExternalMediaAdapter']]], - ['treble',['TREBLE',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a733a5c62b16ef4f62b5c94d16f314cb3a6481bb83f7c61a109bd727e3fa30917b',1,'aace::alexa::EqualizerControllerEngineInterface']]], - ['trim',['TRIM',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfaa32049f307ffa78cf7b4586ac7d98e06',1,'aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_11.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_11.html deleted file mode 100644 index 907a63ea3..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_11.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_11.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_11.js deleted file mode 100644 index e1bb07f8f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_11.js +++ /dev/null @@ -1,15 +0,0 @@ -var searchData= -[ - ['unauthorized',['UNAUTHORIZED',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a41738dc27f412d602c2fe572ec5eeac3a0ab06e7c28266cc1ed601325013a874c',1,'aace::authorization::AuthorizationEngineInterface']]], - ['unauthorized_5fclient',['UNAUTHORIZED_CLIENT',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a0416665af33a040a02e16a0448a44c92',1,'aace::alexa::AuthProviderEngineInterface']]], - ['unfavorite',['UNFAVORITE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a5c2f8adadd8300e2e33031712bee3af9',1,'aace::alexa::ExternalMediaAdapter::UNFAVORITE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea5c2f8adadd8300e2e33031712bee3af9',1,'aace::alexa::ExternalMediaAdapter::UNFAVORITE()']]], - ['unfavorited',['UNFAVORITED',['../classaace_1_1alexa_1_1_external_media_adapter.html#a36a5f525a243568ee2bbdbdc2228d742a0b9b4237a1b7659eddb0cc00d9cdda9d',1,'aace::alexa::ExternalMediaAdapter']]], - ['uninitialized',['UNINITIALIZED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792ecadd652546039b18970b8dcf2cff824268',1,'aace::alexa::AuthProviderEngineInterface']]], - ['unknown',['UNKNOWN',['../classaace_1_1alexa_1_1_notifications.html#a745c257147c726a31f30ccf52c4f83d1a696b031073e74bf2cb98e5ef201d4aa3',1,'aace::alexa::Notifications::UNKNOWN()'],['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1a696b031073e74bf2cb98e5ef201d4aa3',1,'aace::network::NetworkInfoProviderEngineInterface::UNKNOWN()']]], - ['unknown_5ferror',['UNKNOWN_ERROR',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a9a10f345b0f755d461a8673a5e9ef6b4',1,'aace::alexa::AuthProviderEngineInterface']]], - ['unmute_5froute_5fguidance',['UNMUTE_ROUTE_GUIDANCE',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a0bcbef6583b6e672676fe25fa0b36e43',1,'aace::navigation::Navigation']]], - ['unmuted',['UNMUTED',['../classaace_1_1audio_1_1_audio_output.html#ad03cbdbbf172fd64a16c16b64d8a4b05a760f8b47116ad0f3481f06d99b17e12c',1,'aace::audio::AudioOutput']]], - ['unrecoverable_5ferror',['UNRECOVERABLE_ERROR',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aa0d7ca35e85a9f7eb269d17c780ab691',1,'aace::alexa::AlexaClient::UNRECOVERABLE_ERROR()'],['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792ecaa0d7ca35e85a9f7eb269d17c780ab691',1,'aace::alexa::AuthProviderEngineInterface::UNRECOVERABLE_ERROR()']]], - ['unsupported_5fgrant_5ftype',['UNSUPPORTED_GRANT_TYPE',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a58c1573951cde96d85d8fc7c0c850889',1,'aace::alexa::AuthProviderEngineInterface']]], - ['usb',['USB',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a7aca5ec618f7317328dcd7014cf9bdcf',1,'aace::alexa::LocalMediaSource']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_12.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_12.html deleted file mode 100644 index 1adc2201e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_12.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_12.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_12.js deleted file mode 100644 index 6cf75ec76..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_12.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['vehicle_5fidentifier',['VEHICLE_IDENTIFIER',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa85399bf95fd69bdc2f006fd5490aa748',1,'aace::vehicle::config::VehicleConfiguration']]], - ['verbose',['VERBOSE',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786aec1f06e9fb39c4ef0729b3c7c9c8e8cc',1,'aace::logger::LoggerEngineInterface']]], - ['version',['VERSION',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa021321e8c168ba3ae39ce3a2e7b3ec87',1,'aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_13.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_13.html deleted file mode 100644 index 33dab2be7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_13.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_13.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_13.js deleted file mode 100644 index 39e45c4bb..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_13.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['wakeword',['WAKEWORD',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html#a32b21eebeb377059d5548e7297c0846bacb8de769bb1ad99fe7114fa74fc11e72',1,'aace::alexa::SpeechRecognizerEngineInterface']]], - ['warn',['WARN',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786a32bd8a1db2275458673903bdb84cb277',1,'aace::logger::LoggerEngineInterface']]], - ['write_5ftimedout',['WRITE_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a97af85d432104a37a1d183a76f05ad98',1,'aace::alexa::AlexaClient']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_14.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_14.html deleted file mode 100644 index 1865defb7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_14.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_14.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_14.js deleted file mode 100644 index 20296cf53..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_14.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['year',['YEAR',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfad18101729d290479023d5eceeb29c9cf',1,'aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_15.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_15.html deleted file mode 100644 index a210ae2c6..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_15.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_15.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_15.js deleted file mode 100644 index ede04ac69..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_15.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['zoom_5fin',['ZOOM_IN',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a9fb15123c848cda02eec2316e765134a',1,'aace::navigation::Navigation']]], - ['zoom_5fout',['ZOOM_OUT',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3aa2ef1b00efd83e548ce99f6ead83bacd',1,'aace::navigation::Navigation']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_2.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_2.html deleted file mode 100644 index d4990784f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_2.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_2.js deleted file mode 100644 index ec64520bd..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_2.js +++ /dev/null @@ -1,17 +0,0 @@ -var searchData= -[ - ['call_5fnot_5fin_5fprogress',['CALL_NOT_IN_PROGRESS',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a6a73274c0233185e56bf632c6b069893ae59b96ef9585b66ce2095b383e44af62',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['call_5freceived',['CALL_RECEIVED',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432a832d7a4a7c429e4b54298bfa71b0bb73',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['center_5fmap_5fon_5fcurrent_5flocation',['CENTER_MAP_ON_CURRENT_LOCATION',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a86b3adee9cf3a962e17f0b0a5ffc4bd8',1,'aace::navigation::Navigation']]], - ['channel',['CHANNEL',['../classaace_1_1alexa_1_1_local_media_source.html#ae2468e3779807990305dfd341ca3d19daf52e9c50a060add65a035429b2a22229',1,'aace::alexa::LocalMediaSource']]], - ['code_5fpair_5fexpired',['CODE_PAIR_EXPIRED',['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aa148d26ab0a4875d4d779000bb517c11b',1,'aace::cbl::CBL']]], - ['code_5fpair_5freceived',['CODE_PAIR_RECEIVED',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2baba2d3f989f023b33dc57c7a334f05fea34',1,'aace::cbl::CBL']]], - ['compact_5fdisc',['COMPACT_DISC',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a22339bd4fde59838518b6304cb6a0caf',1,'aace::alexa::LocalMediaSource']]], - ['completed',['COMPLETED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a8f7afecbc8fbc4cd0f50a57d1172482e',1,'aace::alexa::Alerts']]], - ['connected',['CONNECTED',['../classaace_1_1alexa_1_1_alexa_client.html#a375451d4d9cb626701ac8cbaa02ffbe2aa5afd6edd5336d91316964e493936858',1,'aace::alexa::AlexaClient::CONNECTED()'],['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1aa5afd6edd5336d91316964e493936858',1,'aace::network::NetworkInfoProviderEngineInterface::CONNECTED()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a811798c0331570b684648f0cd71a82a8aa5afd6edd5336d91316964e493936858',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::CONNECTED()']]], - ['connecting',['CONNECTING',['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1a9a14f95e151eec641316e7c784ce832d',1,'aace::network::NetworkInfoProviderEngineInterface']]], - ['connection_5fthrottled',['CONNECTION_THROTTLED',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a8ca1e58168f20f0b69f8ae91fd3426f7',1,'aace::alexa::AlexaClient']]], - ['connection_5ftimedout',['CONNECTION_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a1e5d3c84593c457cee72e18634f28914',1,'aace::alexa::AlexaClient']]], - ['counter',['COUNTER',['../classaace_1_1metrics_1_1_metrics_uploader.html#a67e6fa51b9ef4b8a9b293870363eb4b5a125e831262b4dbbd68c6878c5d3759f6',1,'aace::metrics::MetricsUploader']]], - ['critical',['CRITICAL',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786a99cd1c61610c76a57cb8d10d6df6b870',1,'aace::logger::LoggerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_3.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_3.html deleted file mode 100644 index b4fc3ee84..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_3.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_3.js deleted file mode 100644 index 91e6f648d..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_3.js +++ /dev/null @@ -1,19 +0,0 @@ -var searchData= -[ - ['dab',['DAB',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3ab30917aa48bf6125b9e85daf9c6eb5fc',1,'aace::alexa::LocalMediaSource']]], - ['default',['DEFAULT',['../classaace_1_1alexa_1_1_external_media_adapter.html#a4b57948f71acaa90e57d40dffb873eeea5b39c8b553c821e7cddc6da64b5bd2ee',1,'aace::alexa::ExternalMediaAdapter::DEFAULT()'],['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a5b39c8b553c821e7cddc6da64b5bd2ee',1,'aace::alexa::LocalMediaSource::DEFAULT()']]], - ['deleted',['DELETED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a63c2867fdcae0e8e8413d7ac21b69b59',1,'aace::alexa::Alerts']]], - ['dialing',['DIALING',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432a6c9becac74f2d56eab5eeea8d8fb4b67',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['disable_5frepeat',['DISABLE_REPEAT',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6aef32cc2ba67b1ec38670dead3c18cf53',1,'aace::alexa::ExternalMediaAdapter::DISABLE_REPEAT()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eaef32cc2ba67b1ec38670dead3c18cf53',1,'aace::alexa::ExternalMediaAdapter::DISABLE_REPEAT()']]], - ['disable_5fshuffle',['DISABLE_SHUFFLE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6aaf7aaf6d6fc5ba25daee4b6636910a2f',1,'aace::alexa::ExternalMediaAdapter::DISABLE_SHUFFLE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eaaf7aaf6d6fc5ba25daee4b6636910a2f',1,'aace::alexa::ExternalMediaAdapter::DISABLE_SHUFFLE()']]], - ['disabled',['DISABLED',['../classaace_1_1location_1_1_location_provider_engine_interface.html#af50b4c69d527d2c4eb15ca5b9169799ca055c1a591abb0e8cd86dc969727bcc0b',1,'aace::location::LocationProviderEngineInterface']]], - ['disconnected',['DISCONNECTED',['../classaace_1_1alexa_1_1_alexa_client.html#a375451d4d9cb626701ac8cbaa02ffbe2a99c8ce56e7ab246445d3b134724428f3',1,'aace::alexa::AlexaClient::DISCONNECTED()'],['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1a99c8ce56e7ab246445d3b134724428f3',1,'aace::network::NetworkInfoProviderEngineInterface::DISCONNECTED()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a811798c0331570b684648f0cd71a82a8a99c8ce56e7ab246445d3b134724428f3',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::DISCONNECTED()']]], - ['disconnecting',['DISCONNECTING',['../classaace_1_1network_1_1_network_info_provider_engine_interface.html#a749ba056220c9a3bb9ed9e100fc8f0d1aad793e31fab5703fc5b990cf40f8a585',1,'aace::network::NetworkInfoProviderEngineInterface']]], - ['display_5fcard_5faudio_5fplayback_5ffinished_5ftimeout',['DISPLAY_CARD_AUDIO_PLAYBACK_FINISHED_TIMEOUT',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abf68ff89209ddbd51fbd9fa7abe21b41a75f689a91ec0aafe83528281324ecf25',1,'aace::alexa::config::AlexaConfiguration']]], - ['display_5fcard_5faudio_5fplayback_5fstopped_5fpaused_5ftimeout',['DISPLAY_CARD_AUDIO_PLAYBACK_STOPPED_PAUSED_TIMEOUT',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abf68ff89209ddbd51fbd9fa7abe21b41a519cca93dd1076dbeb68337fd2bc33e7',1,'aace::alexa::config::AlexaConfiguration']]], - ['display_5fcard_5ftts_5ffinished_5ftimeout',['DISPLAY_CARD_TTS_FINISHED_TIMEOUT',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abf68ff89209ddbd51fbd9fa7abe21b41ad084961d221fc1d7a551f5d52a5b4029',1,'aace::alexa::config::AlexaConfiguration']]], - ['display_5fdocument_5finteraction_5fidle_5ftimeout',['DISPLAY_DOCUMENT_INTERACTION_IDLE_TIMEOUT',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html#a812a021a78a91ecaa55208dc13f9c161adfea37626b2f2fba9f5e6af60c1619d7',1,'aace::apl::config::APLConfiguration']]], - ['dns_5ftimedout',['DNS_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aff2281b1a4e2df717c0cc8019eacfab6',1,'aace::alexa::AlexaClient']]], - ['dtmf_5ffailed',['DTMF_FAILED',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a6a73274c0233185e56bf632c6b069893a5c6ec9e2720310fe33e2f3f1ad2f23f5',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['dtmf_5fsupported',['DTMF_SUPPORTED',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a84647b3bad59bc01079e1addb1d3a2b6a01eb9816b3e3131b2e9584e4c0f999a4',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_4.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_4.html deleted file mode 100644 index d6f69ac95..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_4.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_4.js deleted file mode 100644 index e68b523e9..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_4.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['enable_5frepeat',['ENABLE_REPEAT',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a5599a51729f75f3d058ddc7dad49e384',1,'aace::alexa::ExternalMediaAdapter::ENABLE_REPEAT()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea5599a51729f75f3d058ddc7dad49e384',1,'aace::alexa::ExternalMediaAdapter::ENABLE_REPEAT()']]], - ['enable_5frepeat_5fone',['ENABLE_REPEAT_ONE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a262dab2d76e82f83e0c981e0372025fa',1,'aace::alexa::ExternalMediaAdapter::ENABLE_REPEAT_ONE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea262dab2d76e82f83e0c981e0372025fa',1,'aace::alexa::ExternalMediaAdapter::ENABLE_REPEAT_ONE()']]], - ['enable_5fshuffle',['ENABLE_SHUFFLE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6aae74b0b6d349c980a2329bc9c5cf1d66',1,'aace::alexa::ExternalMediaAdapter::ENABLE_SHUFFLE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eaae74b0b6d349c980a2329bc9c5cf1d66',1,'aace::alexa::ExternalMediaAdapter::ENABLE_SHUFFLE()']]], - ['enabled',['ENABLED',['../classaace_1_1location_1_1_location_provider_engine_interface.html#af50b4c69d527d2c4eb15ca5b9169799cac8cf6eea8f096ed51160b484d97c5bbd',1,'aace::location::LocationProviderEngineInterface']]], - ['engine_5ftype',['ENGINE_TYPE',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfaa9d881f4c0b245ec3c7eb6475df3808f',1,'aace::vehicle::config::VehicleConfiguration']]], - ['error',['ERROR',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22abb1ca97ec761fc37101737ba0aa2e7c5',1,'aace::alexa::Alerts::ERROR()'],['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7abb1ca97ec761fc37101737ba0aa2e7c5',1,'aace::alexa::MediaPlaybackRequestorEngineInterface::ERROR()'],['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aabb1ca97ec761fc37101737ba0aa2e7c5',1,'aace::cbl::CBL::ERROR()'],['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786abb1ca97ec761fc37101737ba0aa2e7c5',1,'aace::logger::LoggerEngineInterface::ERROR()']]], - ['expecting',['EXPECTING',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586eabd416d769c9ba62060c04ae8455e98d2',1,'aace::alexa::AlexaClient']]], - ['expired',['EXPIRED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792eca38afd7ae34bd5e3e6fc170d8b09178a3',1,'aace::alexa::AuthProviderEngineInterface']]], - ['explicit_5fuser_5faction',['EXPLICIT_USER_ACTION',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#a94fe59eef9dd34edd6b29cec376cd85ba402464ae0b3d55b0bcdcb593baae4b06',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_5.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_5.html deleted file mode 100644 index 43a28d17e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_5.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_5.js deleted file mode 100644 index 8fcbe6292..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_5.js +++ /dev/null @@ -1,16 +0,0 @@ -var searchData= -[ - ['fail',['FAIL',['../classaace_1_1alexa_1_1_device_setup.html#a9b27d4306350236719aed083ff389f00ac2759effffc94bb9acc71d69fe3e8a1f',1,'aace::alexa::DeviceSetup']]], - ['failed_5fcan_5fretry',['FAILED_CAN_RETRY',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7a27c710e758f9f6541ee73aecffcd20b6',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['failed_5ftimeout',['FAILED_TIMEOUT',['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7a8e5b60d59e8c72d3cd7524cee60eefaa',1,'aace::alexa::MediaPlaybackRequestorEngineInterface']]], - ['failure_5fprotocol_5ferror',['FAILURE_PROTOCOL_ERROR',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aafb0ae7bf77c6f70390d3658d3e12033',1,'aace::alexa::AlexaClient']]], - ['fast_5fforward',['FAST_FORWARD',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6afe48dc1aa055edc05bb3f1db44bf9e3f',1,'aace::alexa::ExternalMediaAdapter::FAST_FORWARD()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eafe48dc1aa055edc05bb3f1db44bf9e3f',1,'aace::alexa::ExternalMediaAdapter::FAST_FORWARD()']]], - ['favorite',['FAVORITE',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a39946cd74c5a09296f76740ad067c460',1,'aace::alexa::ExternalMediaAdapter::FAVORITE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea39946cd74c5a09296f76740ad067c460',1,'aace::alexa::ExternalMediaAdapter::FAVORITE()']]], - ['favorited',['FAVORITED',['../classaace_1_1alexa_1_1_external_media_adapter.html#a36a5f525a243568ee2bbdbdc2228d742af7c29c75803e8bd4039ea07a2307e791',1,'aace::alexa::ExternalMediaAdapter']]], - ['finished',['FINISHED',['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa2c616b2713e2e0aed04b4c4752c88133',1,'aace::alexa']]], - ['fm_5fradio',['FM_RADIO',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3aedcb4026e4075f9367b903d5b2c97e65',1,'aace::alexa::LocalMediaSource']]], - ['focus_5fentered_5fbackground',['FOCUS_ENTERED_BACKGROUND',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a8f2c39a6e3871da5c682a37a792a6b05',1,'aace::alexa::Alerts']]], - ['focus_5fentered_5fforeground',['FOCUS_ENTERED_FOREGROUND',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22aa72d9c6d4fab6a8bb2fcc8fe3f7dff13',1,'aace::alexa::Alerts']]], - ['foreground',['FOREGROUND',['../classaace_1_1alexa_1_1_external_media_adapter.html#a4b57948f71acaa90e57d40dffb873eeeae41f4c3e11dd067fd5691da0124b8fd2',1,'aace::alexa::ExternalMediaAdapter::FOREGROUND()'],['../namespaceaace_1_1alexa.html#a8742c5f44018cc6c71ab05f1ee8afa9bae41f4c3e11dd067fd5691da0124b8fd2',1,'aace::alexa::FOREGROUND()']]], - ['frequency',['FREQUENCY',['../classaace_1_1alexa_1_1_local_media_source.html#ae2468e3779807990305dfd341ca3d19da1e3e433edd76f91457ea26d0ae88ec2f',1,'aace::alexa::LocalMediaSource']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_6.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_6.html deleted file mode 100644 index 7439ee17b..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_6.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_6.js deleted file mode 100644 index badfac365..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_6.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['geography',['GEOGRAPHY',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfaf86cc9cf8e9ec55a6a9bb2e8380f08ae',1,'aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_7.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_7.html deleted file mode 100644 index ab72ef1f4..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_7.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_7.js deleted file mode 100644 index 0df6cf83e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_7.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['hardware_5farch',['HARDWARE_ARCH',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa369dd85de22dfb81108b4fbd1d84203e',1,'aace::vehicle::config::VehicleConfiguration']]], - ['hold_5fto_5ftalk',['HOLD_TO_TALK',['../classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html#a32b21eebeb377059d5548e7297c0846bab8c3869bf1fc2cdd2f2234030bbd364c',1,'aace::alexa::SpeechRecognizerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_8.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_8.html deleted file mode 100644 index a0e8f1c80..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_8.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_8.js deleted file mode 100644 index 70a44552e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_8.js +++ /dev/null @@ -1,12 +0,0 @@ -var searchData= -[ - ['idle',['IDLE',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586eaa5daf7f2ebbba4975d61dab1c40188c7',1,'aace::alexa::AlexaClient::IDLE()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432aa5daf7f2ebbba4975d61dab1c40188c7',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::IDLE()'],['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aaa5daf7f2ebbba4975d61dab1c40188c7',1,'aace::alexa::IDLE()']]], - ['inbound_5fringing',['INBOUND_RINGING',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432aecd9ce56920e4a6362a315ae02d3b938',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['info',['INFO',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786a551b723eafd6a31d444fcb2f5920fbd3',1,'aace::logger::LoggerEngineInterface']]], - ['internal_5ferror',['INTERNAL_ERROR',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05ae8c0c70879b5895c615677261d64a1ee',1,'aace::alexa::AlexaClient::INTERNAL_ERROR()'],['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ae8c0c70879b5895c615677261d64a1ee',1,'aace::alexa::AuthProviderEngineInterface::INTERNAL_ERROR()']]], - ['invalid_5fauth',['INVALID_AUTH',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05aabd298f8599f681c645d152c354f24de',1,'aace::alexa::AlexaClient']]], - ['invalid_5fcbl_5fclient_5fid',['INVALID_CBL_CLIENT_ID',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a4ef167bea8f7fa2a2cfd2934ea952ce3',1,'aace::alexa::AuthProviderEngineInterface']]], - ['invalid_5fcode_5fpair',['INVALID_CODE_PAIR',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a12c3d12888b38141abcbee72ee836587',1,'aace::alexa::AuthProviderEngineInterface']]], - ['invalid_5frequest',['INVALID_REQUEST',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ab8c9d7ce4c399c56136475f36309020f',1,'aace::alexa::AuthProviderEngineInterface']]], - ['invalid_5fvalue',['INVALID_VALUE',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ad8f24f388e990b9ccf8905b7993b99ae',1,'aace::alexa::AuthProviderEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_9.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_9.html deleted file mode 100644 index 9051459bf..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_9.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_9.js deleted file mode 100644 index 0eef86047..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_9.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['language',['LANGUAGE',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa5b64a5253f843da2950972747ac9a3b0',1,'aace::vehicle::config::VehicleConfiguration']]], - ['line_5fin',['LINE_IN',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3a8ed9247709b828e86d4db1e0a207e2c5',1,'aace::alexa::LocalMediaSource']]], - ['listening',['LISTENING',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586eac0ff938e396e72c225bd66562b80a77e',1,'aace::alexa::AlexaClient']]], - ['local',['LOCAL',['../classaace_1_1alexa_1_1_alexa_client.html#ad71ae13d124da8a6a3003cb0a516e2cda54b4c4075463b2e02cd69f5cd139b5b2',1,'aace::alexa::AlexaClient']]], - ['loop',['LOOP',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8ca9159b3578e4e1eb31ffdf90acd6f6e40',1,'aace::alexa::PlaybackControllerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_a.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_a.html deleted file mode 100644 index f10160a65..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_a.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_a.js deleted file mode 100644 index 9369966fa..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_a.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['make',['MAKE',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfab1e5b15ab34e89de8faf65a0d88d1c64',1,'aace::vehicle::config::VehicleConfiguration']]], - ['metric',['METRIC',['../classaace_1_1logger_1_1_logger_engine_interface.html#aa97c461bbc4f77638b45f7eb9271b786ad83e9b0c6b9339aaeb08d2a04ae9e34d',1,'aace::logger::LoggerEngineInterface']]], - ['microphone',['MICROPHONE',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa74a1ebda7fe4e2d30e665420bedde3bf',1,'aace::vehicle::config::VehicleConfiguration']]], - ['midrange',['MIDRANGE',['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a733a5c62b16ef4f62b5c94d16f314cb3a9029b1c3eca5f9c1cf7d9939e815b750',1,'aace::alexa::EqualizerControllerEngineInterface']]], - ['model',['MODEL',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa7a03bac2692f8d17e2cda1b0721ffd0e',1,'aace::vehicle::config::VehicleConfiguration']]], - ['mute_5froute_5fguidance',['MUTE_ROUTE_GUIDANCE',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a118f7d6e8b43bc513574bb19f64a6383',1,'aace::navigation::Navigation']]], - ['muted',['MUTED',['../classaace_1_1audio_1_1_audio_output.html#ad03cbdbbf172fd64a16c16b64d8a4b05acd1ae4f9f957c14ebf6f0e57671dc020',1,'aace::audio::AudioOutput']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_b.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_b.html deleted file mode 100644 index 0e2cb48c1..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_b.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_b.js deleted file mode 100644 index 59a23fac7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_b.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['next',['NEXT',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a47559fb833ff58321570e5e877b467f6',1,'aace::alexa::PlaybackControllerEngineInterface::NEXT()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a47559fb833ff58321570e5e877b467f6',1,'aace::alexa::ExternalMediaAdapter::NEXT()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea47559fb833ff58321570e5e877b467f6',1,'aace::alexa::ExternalMediaAdapter::NEXT()']]], - ['no_5fanswer',['NO_ANSWER',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefada54db18fbf008822603662a98f6e650',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['no_5fcarrier',['NO_CARRIER',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefad7a9ed13ed586dc55e871540a2605abf',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['no_5ferror',['NO_ERROR',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37ad306b6fdee05fe87455110ddf6501e6c',1,'aace::alexa::AuthProviderEngineInterface']]], - ['no_5fnumber_5ffor_5fredial',['NO_NUMBER_FOR_REDIAL',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefabfc8b6f0d7bba958f573f344c580d514',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]], - ['none',['NONE',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05ab50339a10e1de285ac99d4c3990b8693',1,'aace::alexa::AlexaClient::NONE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#a4b57948f71acaa90e57d40dffb873eeeab50339a10e1de285ac99d4c3990b8693',1,'aace::alexa::ExternalMediaAdapter::NONE()'],['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aab50339a10e1de285ac99d4c3990b8693',1,'aace::cbl::CBL::NONE()'],['../namespaceaace_1_1alexa.html#a8742c5f44018cc6c71ab05f1ee8afa9bab50339a10e1de285ac99d4c3990b8693',1,'aace::alexa::NONE()']]], - ['not_5frated',['NOT_RATED',['../classaace_1_1alexa_1_1_external_media_adapter.html#a36a5f525a243568ee2bbdbdc2228d742a2c25db4cbf8eeac801ec4b9be6b59e08',1,'aace::alexa::ExternalMediaAdapter']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_c.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_c.html deleted file mode 100644 index 82ba68a4c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_c.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_c.js deleted file mode 100644 index 991249a43..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_c.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['off',['OFF',['../classaace_1_1alexa_1_1_notifications.html#a745c257147c726a31f30ccf52c4f83d1a88559a0cfd8250c9d65970cc145c92d4',1,'aace::alexa::Notifications']]], - ['on',['ON',['../classaace_1_1alexa_1_1_notifications.html#a745c257147c726a31f30ccf52c4f83d1a90651ebea9a35ec4e018c8157492e17c',1,'aace::alexa::Notifications']]], - ['operating_5fsystem',['OPERATING_SYSTEM',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa079a931f8bc9b374ff498c7343959d32',1,'aace::vehicle::config::VehicleConfiguration']]], - ['orient_5fnorth',['ORIENT_NORTH',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3ad64c38b4864ee9a090f20d240b3a300d',1,'aace::navigation::Navigation']]], - ['other',['OTHER',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836a03570470bad94692ce93e32700d2e1cb',1,'aace::alexa::ExternalMediaAdapter::OTHER()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#a663119d5cef8ef6fb1264e09e1c37fefa03570470bad94692ce93e32700d2e1cb',1,'aace::phoneCallController::PhoneCallControllerEngineInterface::OTHER()']]], - ['outbound_5fringing',['OUTBOUND_RINGING',['../classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html#aca981e480f3b8704f5c50c6f859b8432ad912b0d80fa8ac23f9ba79e278f61966',1,'aace::phoneCallController::PhoneCallControllerEngineInterface']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_d.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_d.html deleted file mode 100644 index 8516692dc..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_d.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_d.js deleted file mode 100644 index bd81efcfb..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_d.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['past_5fdue',['PAST_DUE',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a560bb2d9ea9002aa8c70a4462ca6c304',1,'aace::alexa::Alerts']]], - ['pause',['PAUSE',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a291554596c183e837f0a6bec3767c891',1,'aace::alexa::PlaybackControllerEngineInterface::PAUSE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a291554596c183e837f0a6bec3767c891',1,'aace::alexa::ExternalMediaAdapter::PAUSE()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea291554596c183e837f0a6bec3767c891',1,'aace::alexa::ExternalMediaAdapter::PAUSE()']]], - ['paused',['PAUSED',['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa99b2439e63f73ad515f7ab2447a80673',1,'aace::alexa']]], - ['pending',['PENDING',['../classaace_1_1alexa_1_1_alexa_client.html#a375451d4d9cb626701ac8cbaa02ffbe2ac69f06e1a9b016d133907b4e5f5864d2',1,'aace::alexa::AlexaClient']]], - ['ping_5ftimedout',['PING_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a2e03079aa2f230632487842f6cce997a',1,'aace::alexa::AlexaClient']]], - ['play',['PLAY',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a6a216efc529825c60a4a4c0bc99ad77f',1,'aace::alexa::PlaybackControllerEngineInterface::PLAY()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea6a216efc529825c60a4a4c0bc99ad77f',1,'aace::alexa::ExternalMediaAdapter::PLAY()']]], - ['playing',['PLAYING',['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa50366a49630a416ab3ccaa004196027e',1,'aace::alexa']]], - ['podcast',['PODCAST',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836a78e22457c7b45ec21614b44e54620ef3',1,'aace::alexa::ExternalMediaAdapter']]], - ['preset',['PRESET',['../classaace_1_1alexa_1_1_local_media_source.html#ae2468e3779807990305dfd341ca3d19dae02d6531f660a4cb37e2e978136891f6',1,'aace::alexa::LocalMediaSource']]], - ['previous',['PREVIOUS',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a315ba7a868d45a9cb131c8dca3166b51',1,'aace::alexa::PlaybackControllerEngineInterface::PREVIOUS()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a315ba7a868d45a9cb131c8dca3166b51',1,'aace::alexa::ExternalMediaAdapter::PREVIOUS()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea315ba7a868d45a9cb131c8dca3166b51',1,'aace::alexa::ExternalMediaAdapter::PREVIOUS()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_e.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_e.html deleted file mode 100644 index d95adb6f0..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_e.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_e.js deleted file mode 100644 index b1e27760d..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_e.js +++ /dev/null @@ -1,13 +0,0 @@ -var searchData= -[ - ['read_5ftimedout',['READ_TIMEDOUT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05acc3d4fecdd44cc6a7090ead5bcdc89a0',1,'aace::alexa::AlexaClient']]], - ['ready',['READY',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a2baa69eafc7204f3bd8648eba580c489',1,'aace::alexa::Alerts']]], - ['refreshed',['REFRESHED',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#abe4ab37548dfaf7744afe9078e1792eca87d0a2ea7d2aee5153eaa716da4c8f60',1,'aace::alexa::AuthProviderEngineInterface']]], - ['refreshing_5ftoken',['REFRESHING_TOKEN',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2babab0c63d28df32e59e41939aee63757077',1,'aace::cbl::CBL']]], - ['repeat',['REPEAT',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8ca5be68175be14dfaa080165456c2e9555',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['requesting_5fcode_5fpair',['REQUESTING_CODE_PAIR',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2baba699a1731760b4edc72e1528fde0e839f',1,'aace::cbl::CBL']]], - ['requesting_5ftoken',['REQUESTING_TOKEN',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2babaefb6f44f1ec98c410a023954cf0270b9',1,'aace::cbl::CBL']]], - ['resume',['RESUME',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6abac2aec3ee8d7d495123dbe5ca2fdac9',1,'aace::alexa::ExternalMediaAdapter']]], - ['rewind',['REWIND',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6af302817a1a3baa8f5aef592bda7c0adc',1,'aace::alexa::ExternalMediaAdapter::REWIND()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6eaf302817a1a3baa8f5aef592bda7c0adc',1,'aace::alexa::ExternalMediaAdapter::REWIND()']]], - ['rse_5fembedded_5ffiretvs',['RSE_EMBEDDED_FIRETVS',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a6aa7ee80198586f3a51d0c0f8fb542cfa00596599fbcfdf162c7c2bb17eb73d98',1,'aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_f.html b/docs/docs/doxygen-docs/cpp/search/enumvalues_f.html deleted file mode 100644 index 1cced59ff..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/enumvalues_f.js b/docs/docs/doxygen-docs/cpp/search/enumvalues_f.js deleted file mode 100644 index 885f3e82e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/enumvalues_f.js +++ /dev/null @@ -1,37 +0,0 @@ -var searchData= -[ - ['sample',['SAMPLE',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836af5a2496cf66cb8cffe66cb1b27d7dede',1,'aace::alexa::ExternalMediaAdapter']]], - ['satellite_5fradio',['SATELLITE_RADIO',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3ac88fb9fa48ad5e1cf455de65f0a769a8',1,'aace::alexa::LocalMediaSource']]], - ['scheduled_5ffor_5flater',['SCHEDULED_FOR_LATER',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22af46151a3d4da2bd79c4000ab5a199d94',1,'aace::alexa::Alerts']]], - ['scroll_5fdown',['SCROLL_DOWN',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a26b36a2a5f3ef7983f88fb7601ccd228',1,'aace::navigation::Navigation']]], - ['scroll_5feast',['SCROLL_EAST',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3ac29902d41c0a97f6be6b9ca7337c9faf',1,'aace::navigation::Navigation']]], - ['scroll_5fleft',['SCROLL_LEFT',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a2fac8e25a4ca281bbb3c4597aa868a75',1,'aace::navigation::Navigation']]], - ['scroll_5fnorth',['SCROLL_NORTH',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a390f0237e5fdefaec0700615a737959d',1,'aace::navigation::Navigation']]], - ['scroll_5fright',['SCROLL_RIGHT',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3ae365369ee6653f1cc7e5b0702a375723',1,'aace::navigation::Navigation']]], - ['scroll_5fsouth',['SCROLL_SOUTH',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a005cf110c6daf59bd3f97f341d2037ea',1,'aace::navigation::Navigation']]], - ['scroll_5fup',['SCROLL_UP',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a6ae640c96760bbabf3c8abafd1abc20f',1,'aace::navigation::Navigation']]], - ['scroll_5fwest',['SCROLL_WEST',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a841785456955b3715ed16ddecbacbc40',1,'aace::navigation::Navigation']]], - ['seek',['SEEK',['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea71fa98cecf9e896e77d11325dbe19dc6',1,'aace::alexa::ExternalMediaAdapter']]], - ['server_5fendpoint_5fchanged',['SERVER_ENDPOINT_CHANGED',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05acb2bd81ff7f58b2c6782fe390a723bbe',1,'aace::alexa::AlexaClient']]], - ['server_5ferror',['SERVER_ERROR',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a3fd4acc4cfaa41114f84707b95f05f31',1,'aace::alexa::AuthProviderEngineInterface']]], - ['server_5finternal_5ferror',['SERVER_INTERNAL_ERROR',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05a6a701b3f16c45b9d96fec4ac97805d9c',1,'aace::alexa::AlexaClient']]], - ['server_5fside_5fdisconnect',['SERVER_SIDE_DISCONNECT',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05ac15c6f3c089148a1bfa565ab4efea186',1,'aace::alexa::AlexaClient']]], - ['show_5fdirections_5flist',['SHOW_DIRECTIONS_LIST',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a7658bb134731065ab512fd00a7833bf7',1,'aace::navigation::Navigation']]], - ['show_5froute_5foverview',['SHOW_ROUTE_OVERVIEW',['../classaace_1_1navigation_1_1_navigation.html#af03f492453f5b485bdf875b623b083d3a3ee69731d295fff34a3a777b7d29cee7',1,'aace::navigation::Navigation']]], - ['shuffle',['SHUFFLE',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a990f517d423450b712fcfd0488403e8ca790b1468c0b9fb28fa9317ce7dd5fe6a',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['sirius_5fxm',['SIRIUS_XM',['../classaace_1_1alexa_1_1_local_media_source.html#a193e995a51acffd671f2e9b93fe176b3acfe28902332d7da3436d56bd02e24d67',1,'aace::alexa::LocalMediaSource']]], - ['skip_5fbackward',['SKIP_BACKWARD',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a5ed6a35f9ed44a55531439293700797d',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['skip_5fforward',['SKIP_FORWARD',['../classaace_1_1alexa_1_1_playback_controller_engine_interface.html#a3b32eb7e1dbfad9ca06089fd174634f4a71a897441648c4e958274ec25b2286cc',1,'aace::alexa::PlaybackControllerEngineInterface']]], - ['slow_5fdown',['SLOW_DOWN',['../classaace_1_1alexa_1_1_auth_provider_engine_interface.html#a006d3fd3bee07feafa325968054abc37a4a0a2ddc7446f94d38bcdd71e9bd4ee6',1,'aace::alexa::AuthProviderEngineInterface']]], - ['snoozed',['SNOOZED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22adbd414f9aaabb67e8430e9520f604a79',1,'aace::alexa::Alerts']]], - ['speaking',['SPEAKING',['../classaace_1_1alexa_1_1_alexa_client.html#a5f3b9fc09843bc68b5bb9f0ed6b8586eaddee564b336f5de690b746eb04e62114',1,'aace::alexa::AlexaClient']]], - ['start_5fover',['START_OVER',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a023418747f62596e661828ad289f9fd1',1,'aace::alexa::ExternalMediaAdapter::START_OVER()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea023418747f62596e661828ad289f9fd1',1,'aace::alexa::ExternalMediaAdapter::START_OVER()']]], - ['started',['STARTED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a17130e6c806885e23770df1519b18eb7',1,'aace::alexa::Alerts']]], - ['starting',['STARTING',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2baba034312d8adc8099c1c6f53aaff745e26',1,'aace::cbl::CBL']]], - ['station',['STATION',['../classaace_1_1alexa_1_1_external_media_adapter.html#a743163f79b264acddbcbac96a3d06836aa0b67bb0a7cfbb35a3b71363059d5d80',1,'aace::alexa::ExternalMediaAdapter']]], - ['stop',['STOP',['../classaace_1_1alexa_1_1_external_media_adapter.html#ace89cdcfd6513894b1d434814721b1e6a615a46af313786fc4e349f34118be111',1,'aace::alexa::ExternalMediaAdapter::STOP()'],['../classaace_1_1alexa_1_1_external_media_adapter.html#ad404e42d4033d44e53c1e09734312a6ea615a46af313786fc4e349f34118be111',1,'aace::alexa::ExternalMediaAdapter::STOP()']]], - ['stopped',['STOPPED',['../classaace_1_1alexa_1_1_alerts.html#a81cccb7e632cf26b7903d9c9c168fb22a09d4d696b4e935115b9313e3c412509a',1,'aace::alexa::Alerts::STOPPED()'],['../namespaceaace_1_1alexa.html#a37ae7d120b16c200f504fbb646c98a0aa09d4d696b4e935115b9313e3c412509a',1,'aace::alexa::STOPPED()']]], - ['stopping',['STOPPING',['../classaace_1_1cbl_1_1_c_b_l.html#a9d56e447b5e1fa27a79e9c0932af2babaf6cdb3c6710b50ec65ee07f740847e10',1,'aace::cbl::CBL']]], - ['string',['STRING',['../classaace_1_1metrics_1_1_metrics_uploader.html#a67e6fa51b9ef4b8a9b293870363eb4b5a63b588d5559f64f89a416e656880b949',1,'aace::metrics::MetricsUploader']]], - ['success',['SUCCESS',['../classaace_1_1alexa_1_1_alexa_client.html#a05af151f4b7fdd47b9ea56e504074e05ad0749aaba8b833466dfcbb0428e4f89c',1,'aace::alexa::AlexaClient::SUCCESS()'],['../classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html#ab98588a010a2fec9616a20773ac7daa7ad0749aaba8b833466dfcbb0428e4f89c',1,'aace::alexa::MediaPlaybackRequestorEngineInterface::SUCCESS()'],['../classaace_1_1alexa_1_1_device_setup.html#a9b27d4306350236719aed083ff389f00ad0749aaba8b833466dfcbb0428e4f89c',1,'aace::alexa::DeviceSetup::SUCCESS()'],['../classaace_1_1cbl_1_1_c_b_l.html#a4a095678f1d75f972b59f09b7c3aae0aad0749aaba8b833466dfcbb0428e4f89c',1,'aace::cbl::CBL::SUCCESS()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_0.html b/docs/docs/doxygen-docs/cpp/search/functions_0.html deleted file mode 100644 index 4e6d87d15..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_0.js b/docs/docs/doxygen-docs/cpp/search/functions_0.js deleted file mode 100644 index 8906cd9c4..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_0.js +++ /dev/null @@ -1,40 +0,0 @@ -var searchData= -[ - ['addactionadjustmode',['addActionAdjustMode',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ac3701e937a6c98a63a0a490e9a3ac36b',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionadjustrange',['addActionAdjustRange',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a54feaf77d254abc68dccc7eecf310ca2',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionsetmode',['addActionSetMode',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ae43f7497fa5bc94f1894c98da92f28d8',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionsetrange',['addActionSetRange',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a4ec117010b292fd7943827d0d7eafd8e',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionturnoff',['addActionTurnOff',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a2db0169e27a32bfddf2e7d54971ed121',1,'aace::carControl::config::CarControlConfiguration']]], - ['addactionturnon',['addActionTurnOn',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#aa590e83d2ea0c72701d97efe6419ed5e',1,'aace::carControl::config::CarControlConfiguration']]], - ['addaddressbook',['addAddressBook',['../classaace_1_1address_book_1_1_address_book.html#ae90d732ee31fed7fe40627d59ef766fb',1,'aace::addressBook::AddressBook']]], - ['addassetid',['addAssetId',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ae1038896bbf114e0ee90c50082e3dad4',1,'aace::carControl::config::CarControlConfiguration']]], - ['addcustomassetspath',['addCustomAssetsPath',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ae9bc03e46eaf50a6d6afbd90ee13064a',1,'aace::carControl::config::CarControlConfiguration']]], - ['adddefaultassetspath',['addDefaultAssetsPath',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a67b0af557aa409231020239fa7960255',1,'aace::carControl::config::CarControlConfiguration']]], - ['addentry',['addEntry',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#a5a399b367d1ea02327d05a2d1aaff742',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory']]], - ['addmembers',['addMembers',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a1aa86c1e0502e89b386bc6eabf2d8b61',1,'aace::carControl::config::CarControlConfiguration']]], - ['addmodecontroller',['addModeController',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a18a6ea9fc3eddc04da5c33fb73f468ef',1,'aace::carControl::config::CarControlConfiguration']]], - ['addname',['addName',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#a3708a57a7a2a997bc0c1087a092218e8',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName(const std::string &entryId, const std::string &name)=0'],['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#af68c92557d60f0c0c3940d29481bd1bf',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName(const std::string &entryId, const std::string &firstName, const std::string &lastName)=0'],['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#aa3bf0080f290fc5be55ed8237585efd1',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory::addName(const std::string &entryId, const std::string &firstName, const std::string &lastName, const std::string &nickname, const std::string &phoneticFirstName="", const std::string &phoneticLastName="")=0']]], - ['addphone',['addPhone',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#ab6743a8145c3ada4d79aa88f120def97',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory']]], - ['addpostaladdress',['addPostalAddress',['../classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html#ae4006a027356a446f5bde1f6c783dcd4',1,'aace::addressBook::AddressBook::IAddressBookEntriesFactory']]], - ['addpowercontroller',['addPowerController',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ad33d73690c37cdb458e8bea1e8f81fb6',1,'aace::carControl::config::CarControlConfiguration']]], - ['addpreset',['addPreset',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a7f0af3338687ffe5ea0e11c06c6bc63b',1,'aace::carControl::config::CarControlConfiguration']]], - ['addrangecontroller',['addRangeController',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a012ef269ebec9731e5dfdcff40600a32',1,'aace::carControl::config::CarControlConfiguration']]], - ['addtogglecontroller',['addToggleController',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a4be2edb0eec0751002dacd23cda0f3ea',1,'aace::carControl::config::CarControlConfiguration']]], - ['addvalue',['addValue',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a739b7a15004a3ea94382820e6d033152',1,'aace::carControl::config::CarControlConfiguration']]], - ['adjustmodecontrollervalue',['adjustModeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#aa19e4a06851823ba3b1ff60c73016ee4',1,'aace::carControl::CarControl']]], - ['adjustrangecontrollervalue',['adjustRangeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#a640312cd115ee0bc8cf86886f6d7ea90',1,'aace::carControl::CarControl']]], - ['adjustseek',['adjustSeek',['../classaace_1_1alexa_1_1_external_media_adapter.html#a84eae84e842d1c846cc5b325fc48d184',1,'aace::alexa::ExternalMediaAdapter::adjustSeek()'],['../classaace_1_1alexa_1_1_local_media_source.html#ae5514b48fe84f065ef8b115de0b6b8c3',1,'aace::alexa::LocalMediaSource::adjustSeek()']]], - ['alertcreated',['alertCreated',['../classaace_1_1alexa_1_1_alerts.html#a25d28c1bff1fd629cee335f27160b3c7',1,'aace::alexa::Alerts']]], - ['alertdeleted',['alertDeleted',['../classaace_1_1alexa_1_1_alerts.html#aba0bb75596452b4853c545899fc11fc1',1,'aace::alexa::Alerts']]], - ['alertstatechanged',['alertStateChanged',['../classaace_1_1alexa_1_1_alerts.html#afc6cb0b2755cf2d90d50b070dec0162e',1,'aace::alexa::Alerts']]], - ['announcemaneuver',['announceManeuver',['../classaace_1_1navigation_1_1_navigation.html#af9e3309727e67403e92f31356b8998b7',1,'aace::navigation::Navigation']]], - ['announceroadregulation',['announceRoadRegulation',['../classaace_1_1navigation_1_1_navigation.html#af3321466338b4447077361f8918dc814',1,'aace::navigation::Navigation']]], - ['answer',['answer',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a749bb2ec8ad7bdb0efacd3c333aa4b00',1,'aace::phoneCallController::PhoneCallController']]], - ['audiofocusevent',['audioFocusEvent',['../classaace_1_1audio_1_1_audio_output.html#a8c7eb63ef509c2e39888c0b841f1be5d',1,'aace::audio::AudioOutput']]], - ['audiostreamproperty',['AudioStreamProperty',['../classaace_1_1audio_1_1_audio_stream_property.html#a3ae61e4591b926ae67ab2985e6f1cd72',1,'aace::audio::AudioStreamProperty::AudioStreamProperty(const std::string &key, const std::string &value)'],['../classaace_1_1audio_1_1_audio_stream_property.html#a19a7611c34e77b001d97cc4b911362fb',1,'aace::audio::AudioStreamProperty::AudioStreamProperty(const AudioStreamProperty &other)']]], - ['authfailure',['authFailure',['../classaace_1_1alexa_1_1_auth_provider.html#a5a2736293fd2ae80d5fdb85b372bbd50',1,'aace::alexa::AuthProvider']]], - ['authorizationerror',['authorizationError',['../classaace_1_1authorization_1_1_authorization.html#a960cf0000db8889a9720af6a09e0a5a6',1,'aace::authorization::Authorization']]], - ['authorizationstatechanged',['authorizationStateChanged',['../classaace_1_1authorization_1_1_authorization.html#a32778e7fae5a205a5e9fe48e086fd188',1,'aace::authorization::Authorization']]], - ['authorize',['authorize',['../classaace_1_1alexa_1_1_external_media_adapter.html#a5f13967ffe8b9e89cb4a4ae665944e17',1,'aace::alexa::ExternalMediaAdapter']]], - ['authstatechanged',['authStateChanged',['../classaace_1_1alexa_1_1_alexa_client.html#a6b469f0511ffdea1083044f0fe9f421e',1,'aace::alexa::AlexaClient::authStateChanged()'],['../classaace_1_1alexa_1_1_auth_provider.html#a38e948a90a4e5ef46e2bdc34eb0b19cf',1,'aace::alexa::AuthProvider::authStateChanged()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_1.html b/docs/docs/doxygen-docs/cpp/search/functions_1.html deleted file mode 100644 index b343e2db5..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_1.js b/docs/docs/doxygen-docs/cpp/search/functions_1.js deleted file mode 100644 index 32e2e3e77..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['buttonpressed',['buttonPressed',['../classaace_1_1alexa_1_1_playback_controller.html#a425fe815370ff0ed45518eea30e5540d',1,'aace::alexa::PlaybackController']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_10.html b/docs/docs/doxygen-docs/cpp/search/functions_10.html deleted file mode 100644 index 72bc1ea1f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_10.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_10.js b/docs/docs/doxygen-docs/cpp/search/functions_10.js deleted file mode 100644 index 6f1312563..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_10.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['updateaplruntimeproperties',['updateAPLRuntimeProperties',['../classaace_1_1apl_1_1_a_p_l.html#a27fad281daef252e05b857e107a74677',1,'aace::apl::APL']]], - ['updatemessagesstatus',['updateMessagesStatus',['../classaace_1_1messaging_1_1_messaging.html#aaf53ed5e18038e934141b122d02743d4',1,'aace::messaging::Messaging']]], - ['updatemessagesstatusfailed',['updateMessagesStatusFailed',['../classaace_1_1messaging_1_1_messaging.html#aeac6a0a8cc3ee421b406077ff184ad60',1,'aace::messaging::Messaging']]], - ['updatemessagesstatussucceeded',['updateMessagesStatusSucceeded',['../classaace_1_1messaging_1_1_messaging.html#ac000677cb85763161fc18d852eb3d663',1,'aace::messaging::Messaging']]], - ['updatemessagingendpointstate',['updateMessagingEndpointState',['../classaace_1_1messaging_1_1_messaging.html#a82badff7bcfd0175ecaadf2ddb6fd9b5',1,'aace::messaging::Messaging']]], - ['uploadconversations',['uploadConversations',['../classaace_1_1messaging_1_1_messaging.html#adae9c5df0e8a1b5723fecefd2f677f0c',1,'aace::messaging::Messaging']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_11.html b/docs/docs/doxygen-docs/cpp/search/functions_11.html deleted file mode 100644 index 6948a6155..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_11.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_11.js b/docs/docs/doxygen-docs/cpp/search/functions_11.js deleted file mode 100644 index 464b747b3..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_11.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['volumechanged',['volumeChanged',['../classaace_1_1alexa_1_1_external_media_adapter.html#ac73f6dd4d24881723c7237da431dea0d',1,'aace::alexa::ExternalMediaAdapter::volumeChanged()'],['../classaace_1_1alexa_1_1_local_media_source.html#aa4a2d08e30728bcfb35bcba0f4921aa1',1,'aace::alexa::LocalMediaSource::volumeChanged()'],['../classaace_1_1audio_1_1_audio_output.html#a1a6e4c80146a448b4532f80f613dba11',1,'aace::audio::AudioOutput::volumeChanged()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_12.html b/docs/docs/doxygen-docs/cpp/search/functions_12.html deleted file mode 100644 index 3df848924..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_12.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_12.js b/docs/docs/doxygen-docs/cpp/search/functions_12.js deleted file mode 100644 index 5f51f09ff..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_12.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['wakeworddetected',['wakewordDetected',['../classaace_1_1alexa_1_1_speech_recognizer.html#adb2ff621353bb47de5e4d1d41662b278',1,'aace::alexa::SpeechRecognizer']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_13.html b/docs/docs/doxygen-docs/cpp/search/functions_13.html deleted file mode 100644 index febf8e03d..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_13.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_13.js b/docs/docs/doxygen-docs/cpp/search/functions_13.js deleted file mode 100644 index 2a913455b..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_13.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['_7eauthorization',['~Authorization',['../classaace_1_1authorization_1_1_authorization.html#a31e6849b0c9fc20dd58b70fb68db89d2',1,'aace::authorization::Authorization']]], - ['_7ecarcontrol',['~CarControl',['../classaace_1_1car_control_1_1_car_control.html#a2a6f08b35b122c21fef79c0304a77d0a',1,'aace::carControl::CarControl']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_2.html b/docs/docs/doxygen-docs/cpp/search/functions_2.html deleted file mode 100644 index ecce2f318..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_2.js b/docs/docs/doxygen-docs/cpp/search/functions_2.js deleted file mode 100644 index d4c1f126d..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_2.js +++ /dev/null @@ -1,58 +0,0 @@ -var searchData= -[ - ['calleridreceived',['callerIdReceived',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a9f43a4313a18f23dda607f839bbd0081',1,'aace::phoneCallController::PhoneCallController']]], - ['callfailed',['callFailed',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a350aed0aa2c701a4423dfd008ce61aca',1,'aace::phoneCallController::PhoneCallController']]], - ['callstatechanged',['callStateChanged',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a884b898f29116af5cb74c3f02d73cc1d',1,'aace::phoneCallController::PhoneCallController']]], - ['cancel',['cancel',['../classaace_1_1cbl_1_1_c_b_l.html#a08eafdc469f9d7d282878c5caa016237',1,'aace::cbl::CBL']]], - ['cancelauthorization',['cancelAuthorization',['../classaace_1_1authorization_1_1_authorization.html#a6a7a83d21ddf58261ef0df5b87ae911d',1,'aace::authorization::Authorization']]], - ['cancelnavigation',['cancelNavigation',['../classaace_1_1navigation_1_1_navigation.html#afbda005d6f22d549b01b3700144f1d2a',1,'aace::navigation::Navigation']]], - ['capabilitiesreceived',['capabilitiesReceived',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#a3d358ef1b99c6d7d781ae32cc0c66845',1,'aace::textToSpeech::TextToSpeech']]], - ['carcontrol',['CarControl',['../classaace_1_1car_control_1_1_car_control.html#a84ce7f162332e09c9e7ff35f240ca1d4',1,'aace::carControl::CarControl']]], - ['cblstatechanged',['cblStateChanged',['../classaace_1_1cbl_1_1_c_b_l.html#adf012d535ed61ac2f0df50a8dd01cac7',1,'aace::cbl::CBL']]], - ['clearallexecutecommands',['clearAllExecuteCommands',['../classaace_1_1apl_1_1_a_p_l.html#a7ea358a32c50da5fbe733bb370e640a2',1,'aace::apl::APL']]], - ['clearcard',['clearCard',['../classaace_1_1apl_1_1_a_p_l.html#a6831186c4572d71e2094271563c1a805',1,'aace::apl::APL']]], - ['cleardocument',['clearDocument',['../classaace_1_1apl_1_1_a_p_l.html#a4c115c7161d6061ae7a1d72436e5c587',1,'aace::apl::APL']]], - ['clearplayerinfo',['clearPlayerInfo',['../classaace_1_1alexa_1_1_template_runtime.html#a173cf6b23048bc7ee8436e931db3b5fc',1,'aace::alexa::TemplateRuntime']]], - ['clearrefreshtoken',['clearRefreshToken',['../classaace_1_1cbl_1_1_c_b_l.html#aabf78f56e306cc7cfe0d46ac084fbaf1',1,'aace::cbl::CBL']]], - ['cleartemplate',['clearTemplate',['../classaace_1_1alexa_1_1_template_runtime.html#ace5c19caa541744cdc358bf6f375e259',1,'aace::alexa::TemplateRuntime']]], - ['configure',['configure',['../classaace_1_1core_1_1_engine.html#a224b8c7fe1f66b210d4851ac31082364',1,'aace::core::Engine::configure(std::initializer_list< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)=0'],['../classaace_1_1core_1_1_engine.html#afe5c533283f9f79917c0a5ddfbd0e718',1,'aace::core::Engine::configure(std::vector< std::shared_ptr< aace::core::config::EngineConfiguration >> configurationList)=0'],['../classaace_1_1core_1_1_engine.html#acf93c7857ba5151ae88f8781425d4fac',1,'aace::core::Engine::configure(std::shared_ptr< aace::core::config::EngineConfiguration > configuration)=0']]], - ['connectionstatechanged',['connectionStateChanged',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#acaa5a6e69479b162c2783134f62ab43c',1,'aace::phoneCallController::PhoneCallController']]], - ['connectionstatuschanged',['connectionStatusChanged',['../classaace_1_1alexa_1_1_alexa_client.html#a70491bf5bb02e0fce4d8fcf2bc206261',1,'aace::alexa::AlexaClient::connectionStatusChanged(ConnectionStatus status, ConnectionChangedReason reason)'],['../classaace_1_1alexa_1_1_alexa_client.html#a11c3ae215d9b4102fbd53a72ccee7b25',1,'aace::alexa::AlexaClient::connectionStatusChanged(ConnectionStatus status, ConnectionChangedReason reason, std::vector< ConnectionStatusInfo > detailed)']]], - ['connectivityeventresponse',['connectivityEventResponse',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#acaabd74d3f84b3e21c97a6e85e97b07c',1,'aace::connectivity::AlexaConnectivity']]], - ['connectivitystatechange',['connectivityStateChange',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#ac59837802c8aa3d7abdb526019e4cc34',1,'aace::connectivity::AlexaConnectivity']]], - ['conversationsreport',['conversationsReport',['../classaace_1_1messaging_1_1_messaging.html#afa197b45ff57fd137480b18ff8f0d9cd',1,'aace::messaging::Messaging']]], - ['create',['create',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#a09e0dfb274d946c2b2a7d1726c0586c3',1,'aace::carControl::config::CarControlConfiguration::create()'],['../classaace_1_1core_1_1config_1_1_stream_configuration.html#a7168bd10c4756eb4087609edb9a4d587',1,'aace::core::config::StreamConfiguration::create()'],['../classaace_1_1core_1_1config_1_1_configuration_file.html#ad96c069ff3ba56714d05a1df4110c817',1,'aace::core::config::ConfigurationFile::create()']]], - ['createaddressbookconfig',['createAddressBookConfig',['../classaace_1_1address_book_1_1config_1_1_address_book_configuration.html#a4363e6e7ef7334f5ac9264725040e595',1,'aace::addressBook::config::AddressBookConfiguration']]], - ['createalertsconfig',['createAlertsConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#af7a3007198c8d8e47ce33edbf5c902a7',1,'aace::alexa::config::AlexaConfiguration']]], - ['createalexapresentationtimeoutconfig',['createAlexaPresentationTimeoutConfig',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html#a56ef719eddebda92b88505f908a8d85b',1,'aace::apl::config::APLConfiguration']]], - ['createauthproviderconfig',['createAuthProviderConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aac1f2b1ed508bf0b0d481195660c6cca',1,'aace::alexa::config::AlexaConfiguration']]], - ['createcallid',['createCallId',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a24de2d5e0fc97b239d8b9881341e6790',1,'aace::phoneCallController::PhoneCallController']]], - ['createcapabilitiesdelegateconfig',['createCapabilitiesDelegateConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a85784965a44345df2874caa93af74cfb',1,'aace::alexa::config::AlexaConfiguration']]], - ['createcblconfig',['createCBLConfig',['../classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#aeaacf62926a948b1d9e59cd75f69c6e1',1,'aace::cbl::config::CBLConfiguration']]], - ['createcbluserprofileconfig',['createCBLUserProfileConfig',['../classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html#a5a70191fa2181583b169248fa94dcecb',1,'aace::cbl::config::CBLConfiguration']]], - ['createcertifiedsenderconfig',['createCertifiedSenderConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a5d38a056525d20aad2114677d8d461ae',1,'aace::alexa::config::AlexaConfiguration']]], - ['createconsolesinkconfig',['createConsoleSinkConfig',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#ae6aa1d5ddd52e173073d501861e6835a',1,'aace::logger::config::LoggerConfiguration']]], - ['createcurlconfig',['createCurlConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a221fd921e3b5f297a99520a6e09c283d',1,'aace::alexa::config::AlexaConfiguration']]], - ['createdeviceinfoconfig',['createDeviceInfoConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aceaa112768e13cd30722766cc9d1a2c6',1,'aace::alexa::config::AlexaConfiguration']]], - ['createdevicesettingsconfig',['createDeviceSettingsConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a8e556b5044008752d356c6e72b095df5',1,'aace::alexa::config::AlexaConfiguration']]], - ['createduckingconfig',['createDuckingConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abe49171331c4e53d147979638cea07a3',1,'aace::alexa::config::AlexaConfiguration']]], - ['createendpoint',['createEndpoint',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ad5854625364fa4390d96712dc4eff550',1,'aace::carControl::config::CarControlConfiguration']]], - ['createequalizercontrollerconfig',['createEqualizerControllerConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#abe7962c53c63c808d2c4ebaf2056c855',1,'aace::alexa::config::AlexaConfiguration']]], - ['createexternalmediaplayerconfig',['createExternalMediaPlayerConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a4753ff7cfd440ba505e0508c2c77c07a',1,'aace::alexa::config::AlexaConfiguration']]], - ['createfilesinkconfig',['createFileSinkConfig',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#ab58d322f01f350cf87c89c41e8257037',1,'aace::logger::config::LoggerConfiguration']]], - ['creategattserver',['createGATTServer',['../classaace_1_1bluetooth_1_1_bluetooth_provider.html#abbc81947a9a92155c8d86b596b963b15',1,'aace::bluetooth::BluetoothProvider']]], - ['createlocalstorageconfig',['createLocalStorageConfig',['../classaace_1_1storage_1_1config_1_1_storage_configuration.html#a1619cb1c7be8fcb913454e16ceb49a1d',1,'aace::storage::config::StorageConfiguration']]], - ['createloggerruleconfig',['createLoggerRuleConfig',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#a9875f58897e59ce67932f1c4f9edf085',1,'aace::logger::config::LoggerConfiguration']]], - ['createmiscstorageconfig',['createMiscStorageConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a500f37306f03ef987e8d014cb7b64470',1,'aace::alexa::config::AlexaConfiguration']]], - ['createnavigationconfig',['createNavigationConfig',['../classaace_1_1navigation_1_1config_1_1_navigation_configuration.html#ab984104f14947c042b67c8ed17b55364',1,'aace::navigation::config::NavigationConfiguration']]], - ['createnotificationsconfig',['createNotificationsConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a5205a15e4b9f8596a6aff6e4c26595fa',1,'aace::alexa::config::AlexaConfiguration']]], - ['createoperatingcountryconfig',['createOperatingCountryConfig',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a469681a9d4866c0e898f512fe98eb8ab',1,'aace::vehicle::config::VehicleConfiguration']]], - ['createsettingsconfig',['createSettingsConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a08aee7c879ef040c17d32bd9a781a940',1,'aace::alexa::config::AlexaConfiguration']]], - ['createspeakermanagerconfig',['createSpeakerManagerConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a53c25e237c84550bd09d8d46b79a99f3',1,'aace::alexa::config::AlexaConfiguration']]], - ['createspeechrecognizerconfig',['createSpeechRecognizerConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aacb872514a75a1fdc3d54d17b64a2ec6',1,'aace::alexa::config::AlexaConfiguration']]], - ['createsyslogsinkconfig',['createSyslogSinkConfig',['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#a60f4bbc3559e3d9900cfed5bef4fa86a',1,'aace::logger::config::LoggerConfiguration']]], - ['createsystemconfig',['createSystemConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a1a918b6c9d057360a64ace0ba68df93a',1,'aace::alexa::config::AlexaConfiguration']]], - ['createtemplateruntimetimeoutconfig',['createTemplateRuntimeTimeoutConfig',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a89e139921c42c3078c70cd40cdeb0881',1,'aace::alexa::config::AlexaConfiguration']]], - ['createvehicleinfoconfig',['createVehicleInfoConfig',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#ad67c9d173ea737eb9d737db84b2d0ec1',1,'aace::vehicle::config::VehicleConfiguration']]], - ['createzone',['createZone',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ab7480ff4128eda5b72dbfbed9da5dcbe',1,'aace::carControl::config::CarControlConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_3.html b/docs/docs/doxygen-docs/cpp/search/functions_3.html deleted file mode 100644 index 15f06abdc..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_3.js b/docs/docs/doxygen-docs/cpp/search/functions_3.js deleted file mode 100644 index b274ac650..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_3.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['datasourceupdate',['dataSourceUpdate',['../classaace_1_1apl_1_1_a_p_l.html#a2c8c2bc29a5c9b8f684069743b586bc5',1,'aace::apl::APL']]], - ['deviceconfigurationupdated',['deviceConfigurationUpdated',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a3d36c76efd0e96bd84196a8dcd5071de',1,'aace::phoneCallController::PhoneCallController']]], - ['devicesetupstatuscodetostring',['deviceSetupStatusCodeToString',['../namespaceaace_1_1alexa.html#aa8e789fa621df6a2f846918564cdb3f2',1,'aace::alexa']]], - ['dial',['dial',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a398192e0728d2e352483c6967419aba4',1,'aace::phoneCallController::PhoneCallController']]], - ['dialogstatechanged',['dialogStateChanged',['../classaace_1_1alexa_1_1_alexa_client.html#a0c91642e76d6501af40ef878f12d7bf4',1,'aace::alexa::AlexaClient']]], - ['displaycardcleared',['displayCardCleared',['../classaace_1_1alexa_1_1_template_runtime.html#a056c771904624b16bafdd97d97619b80',1,'aace::alexa::TemplateRuntime']]], - ['donotdisturbchanged',['doNotDisturbChanged',['../classaace_1_1alexa_1_1_do_not_disturb.html#a5ea5c9f9142db27b3a1c704012294f7b',1,'aace::alexa::DoNotDisturb']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_4.html b/docs/docs/doxygen-docs/cpp/search/functions_4.html deleted file mode 100644 index 8985ff278..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_4.js b/docs/docs/doxygen-docs/cpp/search/functions_4.js deleted file mode 100644 index cee3a1abd..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_4.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['endofspeechdetected',['endOfSpeechDetected',['../classaace_1_1alexa_1_1_speech_recognizer.html#a7e4d179fd39031d3a898466841905748',1,'aace::alexa::SpeechRecognizer']]], - ['equalizerbandtostring',['equalizerBandToString',['../namespaceaace_1_1alexa.html#aaa09d97f0a502bb056f6eb8b610b39cd',1,'aace::alexa']]], - ['eventreceived',['eventReceived',['../classaace_1_1authorization_1_1_authorization.html#a1398bf1a4bde9c3f240b8f0819374096',1,'aace::authorization::Authorization']]], - ['executecommands',['executeCommands',['../classaace_1_1apl_1_1_a_p_l.html#a14091f7b0a6e8898098d04ec67abac8c',1,'aace::apl::APL']]], - ['executecommandsresult',['executeCommandsResult',['../classaace_1_1apl_1_1_a_p_l.html#a3599f0eec806b4e0d1315ca1f1e8d1b1',1,'aace::apl::APL']]], - ['externalmediaadapterstate',['ExternalMediaAdapterState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html#a5d3afec4f892bcf48396fb725d137017',1,'aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_5.html b/docs/docs/doxygen-docs/cpp/search/functions_5.html deleted file mode 100644 index 03149184b..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_5.js b/docs/docs/doxygen-docs/cpp/search/functions_5.js deleted file mode 100644 index 4ecb92c0f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_5.js +++ /dev/null @@ -1,38 +0,0 @@ -var searchData= -[ - ['getaccuracy',['getAccuracy',['../classaace_1_1location_1_1_location.html#a1741ce546e33172d68825650d5499ce9',1,'aace::location::Location']]], - ['getaltitude',['getAltitude',['../classaace_1_1location_1_1_location.html#a6651d8181e4361df5777f1992cb063c0',1,'aace::location::Location']]], - ['getauthorizationdata',['getAuthorizationData',['../classaace_1_1authorization_1_1_authorization.html#aaeb9fc700765a86d973a0e03ed865c29',1,'aace::authorization::Authorization']]], - ['getauthstate',['getAuthState',['../classaace_1_1alexa_1_1_auth_provider.html#a6d00a8dac76187fd4d7eebc3f13160fd',1,'aace::alexa::AuthProvider']]], - ['getauthtoken',['getAuthToken',['../classaace_1_1alexa_1_1_auth_provider.html#ac2600cbd59d19ce4f9e5d5134913376f',1,'aace::alexa::AuthProvider']]], - ['getbandlevels',['getBandLevels',['../classaace_1_1alexa_1_1_equalizer_controller.html#ac9c19ed0f79cfef1675a950560320b1e',1,'aace::alexa::EqualizerController']]], - ['getcapabilities',['getCapabilities',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#a9ed1695ff201d42c2921fd61782b09e1',1,'aace::textToSpeech::TextToSpeech']]], - ['getconnectivitystate',['getConnectivityState',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#ab4078c652c810778ac8155fe5d6e02c7',1,'aace::connectivity::AlexaConnectivity']]], - ['getcountry',['getCountry',['../classaace_1_1location_1_1_location_provider.html#aea9910732c32ee028b109ff24bd61ef8',1,'aace::location::LocationProvider']]], - ['getduration',['getDuration',['../classaace_1_1audio_1_1_audio_output.html#af0ee84c73cd22161c02497508556ee90',1,'aace::audio::AudioOutput']]], - ['getentries',['getEntries',['../classaace_1_1address_book_1_1_address_book.html#a9546fee7482f3ba302e3765727f5ac28',1,'aace::addressBook::AddressBook']]], - ['getidentifier',['getIdentifier',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#abdd1825371562bd56f6d2462f833dcd0',1,'aace::connectivity::AlexaConnectivity']]], - ['getkey',['getKey',['../classaace_1_1audio_1_1_audio_stream_property.html#a84c0802fe136f0b6487e216b3b6fafe0',1,'aace::audio::AudioStreamProperty']]], - ['getlatitude',['getLatitude',['../classaace_1_1location_1_1_location.html#a2ff0516c0cb41fa318b75edd5e81f5e0',1,'aace::location::Location']]], - ['getlocation',['getLocation',['../classaace_1_1location_1_1_location_provider.html#a97f95a88be0b6cf84f3295a11eed5ba5',1,'aace::location::LocationProvider']]], - ['getlongitude',['getLongitude',['../classaace_1_1location_1_1_location.html#a64a93e6dd590bf066aa0790f32436c9d',1,'aace::location::Location']]], - ['getmessagebroker',['getMessageBroker',['../classaace_1_1core_1_1_engine.html#ad0ff52b7868f34f4876c925efbfa52fe',1,'aace::core::Engine']]], - ['getmodecontrollervalue',['getModeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#ab4aa2eb8be815b26dc69badac72d0eca',1,'aace::carControl::CarControl']]], - ['getnavigationstate',['getNavigationState',['../classaace_1_1navigation_1_1_navigation.html#a173894876f146db7b0e34ffaeab915d7',1,'aace::navigation::Navigation']]], - ['getnetworkstatus',['getNetworkStatus',['../classaace_1_1network_1_1_network_info_provider.html#ad7cf08c5dbaad707cc176e422258ee1d',1,'aace::network::NetworkInfoProvider']]], - ['getnumbytesbuffered',['getNumBytesBuffered',['../classaace_1_1audio_1_1_audio_output.html#a9fc6bddf91b8365fbd134ce024e25dfa',1,'aace::audio::AudioOutput']]], - ['getoffset',['getOffset',['../classaace_1_1alexa_1_1_external_media_adapter.html#a7fe9f27ced7438f1badf8bf0122af326',1,'aace::alexa::ExternalMediaAdapter']]], - ['getplayerduration',['getPlayerDuration',['../classaace_1_1alexa_1_1_audio_player.html#a79508257fa720e5fe633c5b76c0ff911',1,'aace::alexa::AudioPlayer']]], - ['getplayerposition',['getPlayerPosition',['../classaace_1_1alexa_1_1_audio_player.html#aa2b61c4887d9bca905914559b23fcf38',1,'aace::alexa::AudioPlayer']]], - ['getposition',['getPosition',['../classaace_1_1audio_1_1_audio_output.html#a04ff4005d0f36300bc54421906b89299',1,'aace::audio::AudioOutput']]], - ['getproperty',['getProperty',['../classaace_1_1property_manager_1_1_property_manager.html#a1892fedbf2193e03f040758207a4dea6',1,'aace::propertyManager::PropertyManager']]], - ['getrangecontrollervalue',['getRangeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#a37f2556dd5b73fe6a098679b9cce60d5',1,'aace::carControl::CarControl']]], - ['getrefreshtoken',['getRefreshToken',['../classaace_1_1cbl_1_1_c_b_l.html#ae957213803bd5ca4a6a19d4133160963',1,'aace::cbl::CBL']]], - ['getsource',['getSource',['../classaace_1_1alexa_1_1_local_media_source.html#a7876023493487be41be9044c198dfba2',1,'aace::alexa::LocalMediaSource']]], - ['getstate',['getState',['../classaace_1_1alexa_1_1_external_media_adapter.html#a550bb60e8d5bb8fb885c94dc4debed94',1,'aace::alexa::ExternalMediaAdapter::getState()'],['../classaace_1_1alexa_1_1_local_media_source.html#ab548e09fd634975590e4fd3bf2843682',1,'aace::alexa::LocalMediaSource::getState()']]], - ['getstream',['getStream',['../classaace_1_1core_1_1config_1_1_engine_configuration.html#ace6b90a16f1c8366e0beb15898c93e4e',1,'aace::core::config::EngineConfiguration::getStream()'],['../classaace_1_1core_1_1config_1_1_stream_configuration.html#a2a0af105fa9142f2190b749c91585d58',1,'aace::core::config::StreamConfiguration::getStream()'],['../classaace_1_1core_1_1config_1_1_configuration_file.html#a8ee151fa389256ca8e2df8626e76407e',1,'aace::core::config::ConfigurationFile::getStream()']]], - ['gettime',['getTime',['../classaace_1_1location_1_1_location.html#a20ba8e872b6b255d46dd5ea231cffb1a',1,'aace::location::Location']]], - ['gettimeasstring',['getTimeAsString',['../classaace_1_1location_1_1_location.html#aea77abc6aa7edc610312fde96cb77d7a',1,'aace::location::Location']]], - ['getvalue',['getValue',['../classaace_1_1audio_1_1_audio_stream_property.html#a9d8ef88c1f40c83b75d0f1928f09605f',1,'aace::audio::AudioStreamProperty']]], - ['getwifisignalstrength',['getWifiSignalStrength',['../classaace_1_1network_1_1_network_info_provider.html#a605775f8cfa22e10ca7a9144dc636a62',1,'aace::network::NetworkInfoProvider']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_6.html b/docs/docs/doxygen-docs/cpp/search/functions_6.html deleted file mode 100644 index c50612362..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_6.js b/docs/docs/doxygen-docs/cpp/search/functions_6.js deleted file mode 100644 index 288e53e0e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_6.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['holdtotalk',['holdToTalk',['../classaace_1_1alexa_1_1_speech_recognizer.html#aa2859cbc2a49609ba8027f912d373692',1,'aace::alexa::SpeechRecognizer']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_7.html b/docs/docs/doxygen-docs/cpp/search/functions_7.html deleted file mode 100644 index 83a7b84b7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_7.js b/docs/docs/doxygen-docs/cpp/search/functions_7.js deleted file mode 100644 index 0bbc94d5c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_7.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['interruptcommandsequence',['interruptCommandSequence',['../classaace_1_1apl_1_1_a_p_l.html#a9441e36376baf10f844837b80e769c28',1,'aace::apl::APL']]], - ['invocationreasontostring',['invocationReasonToString',['../namespaceaace_1_1alexa.html#ab8cada5e3278b14c30035f7a4faf5325',1,'aace::alexa']]], - ['ispowercontrolleron',['isPowerControllerOn',['../classaace_1_1car_control_1_1_car_control.html#a9a094718c3c42f12adae6adfb8a4cee2',1,'aace::carControl::CarControl']]], - ['istogglecontrolleron',['isToggleControllerOn',['../classaace_1_1car_control_1_1_car_control.html#a122710f35e288fb86c40564b782ebc7d',1,'aace::carControl::CarControl']]], - ['isvalid',['isValid',['../classaace_1_1location_1_1_location.html#a2dd9abb6c2c005ca822c29d14fefada4',1,'aace::location::Location']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_8.html b/docs/docs/doxygen-docs/cpp/search/functions_8.html deleted file mode 100644 index b55f0e65f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_8.js b/docs/docs/doxygen-docs/cpp/search/functions_8.js deleted file mode 100644 index df56abfdb..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_8.js +++ /dev/null @@ -1,21 +0,0 @@ -var searchData= -[ - ['listenusingiap2',['listenUsingiAP2',['../classaace_1_1bluetooth_1_1_bluetooth_provider.html#a29e75260cc9989492497e7b276d65145',1,'aace::bluetooth::BluetoothProvider']]], - ['listenusingrfcomm',['listenUsingRfcomm',['../classaace_1_1bluetooth_1_1_bluetooth_provider.html#a8efc72e2e9aee87e114186ff93233f9c',1,'aace::bluetooth::BluetoothProvider']]], - ['localadjustbandlevels',['localAdjustBandLevels',['../classaace_1_1alexa_1_1_equalizer_controller.html#a3b65b2452d162ab9e074a6d4cc2a0168',1,'aace::alexa::EqualizerController']]], - ['localadjustvolume',['localAdjustVolume',['../classaace_1_1alexa_1_1_alexa_speaker.html#ae09e49988bc163c950883e2d3afc5173',1,'aace::alexa::AlexaSpeaker']]], - ['localmediasourcestate',['LocalMediaSourceState',['../classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html#a723b558daff74779e029b96f48ec0f22',1,'aace::alexa::LocalMediaSource::LocalMediaSourceState']]], - ['localresetbands',['localResetBands',['../classaace_1_1alexa_1_1_equalizer_controller.html#a37364dafdb7c7302247c20ed2e4f73c3',1,'aace::alexa::EqualizerController']]], - ['localsetbandlevels',['localSetBandLevels',['../classaace_1_1alexa_1_1_equalizer_controller.html#ab09a3198bf598b88714b59b505198e0d',1,'aace::alexa::EqualizerController']]], - ['localsetmute',['localSetMute',['../classaace_1_1alexa_1_1_alexa_speaker.html#a8ff679b4fc9e2f74c196083ef9b528a8',1,'aace::alexa::AlexaSpeaker']]], - ['localsetvolume',['localSetVolume',['../classaace_1_1alexa_1_1_alexa_speaker.html#a3bd38cc6bcdda25f00af7b57e8e1c324',1,'aace::alexa::AlexaSpeaker']]], - ['localstop',['localStop',['../classaace_1_1alexa_1_1_alerts.html#a0ad3204360a08a578af1af59013f64a8',1,'aace::alexa::Alerts']]], - ['location',['Location',['../classaace_1_1location_1_1_location.html#af72835578a771a956936116f9597a10e',1,'aace::location::Location::Location()'],['../classaace_1_1location_1_1_location.html#a2fee1df1854e9ae0f8a279ef0fe4bae9',1,'aace::location::Location::Location(double latitude, double longitude, double altitude=UNDEFINED, double accuracy=UNDEFINED, std::chrono::system_clock::time_point time=std::chrono::system_clock::now())'],['../classaace_1_1location_1_1_location.html#a579c0255247a086d5715044b9f783beb',1,'aace::location::Location::Location(const Location &location)']]], - ['locationserviceaccesschanged',['locationServiceAccessChanged',['../classaace_1_1location_1_1_location_provider.html#ada8a11d25bde2e2d760cbb38c445f9cf',1,'aace::location::LocationProvider']]], - ['log',['log',['../classaace_1_1logger_1_1_logger.html#a3cb300839a1de085377517669522ad78',1,'aace::logger::Logger']]], - ['logevent',['logEvent',['../classaace_1_1logger_1_1_logger.html#a5114127c48c451e846ca3d1b120a3f44',1,'aace::logger::Logger']]], - ['login',['login',['../classaace_1_1alexa_1_1_external_media_adapter.html#a96bb8efcb2543da52c01bcb50e1ecc7a',1,'aace::alexa::ExternalMediaAdapter']]], - ['logincomplete',['loginComplete',['../classaace_1_1alexa_1_1_external_media_adapter.html#a88309779a5b42dc313942aab6e1feb38',1,'aace::alexa::ExternalMediaAdapter']]], - ['logout',['logout',['../classaace_1_1alexa_1_1_external_media_adapter.html#a3663ab45e41484de6c96140e5c161a8f',1,'aace::alexa::ExternalMediaAdapter::logout()'],['../classaace_1_1authorization_1_1_authorization.html#a66f95375e98f4b8012f5f2531100550c',1,'aace::authorization::Authorization::logout()']]], - ['logoutcomplete',['logoutComplete',['../classaace_1_1alexa_1_1_external_media_adapter.html#ab86f7e5ee076c56fe7d9bf249dc65d2d',1,'aace::alexa::ExternalMediaAdapter']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_9.html b/docs/docs/doxygen-docs/cpp/search/functions_9.html deleted file mode 100644 index c73f07bb5..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_9.js b/docs/docs/doxygen-docs/cpp/search/functions_9.js deleted file mode 100644 index 1feeee9ca..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_9.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['mayduck',['mayDuck',['../classaace_1_1audio_1_1_audio_output.html#a662b7237e069d491c278b3175b3246a8',1,'aace::audio::AudioOutput']]], - ['mediaerror',['mediaError',['../classaace_1_1audio_1_1_audio_output.html#a5e4b3034d90818de56f925b227f2c2b7',1,'aace::audio::AudioOutput']]], - ['mediaplaybackrequestormediaplaybackrequeststatustostring',['mediaPlaybackRequestorMediaPlaybackRequestStatusToString',['../namespaceaace_1_1alexa.html#a2381538962d81a4fa1e7d485750f8852',1,'aace::alexa']]], - ['mediaplaybackresponse',['mediaPlaybackResponse',['../classaace_1_1alexa_1_1_media_playback_requestor.html#a7a017fdc9a452aac558b8cf827e3da16',1,'aace::alexa::MediaPlaybackRequestor']]], - ['mediastatechanged',['mediaStateChanged',['../classaace_1_1audio_1_1_audio_output.html#a0159c40c50906ee017f1de903fc23590',1,'aace::audio::AudioOutput']]], - ['mutedstatechanged',['mutedStateChanged',['../classaace_1_1alexa_1_1_external_media_adapter.html#a0872bd033d641414641e8a8539df7878',1,'aace::alexa::ExternalMediaAdapter::mutedStateChanged()'],['../classaace_1_1alexa_1_1_local_media_source.html#afe2c689e38a4e5f8bd6ebd630412cef7',1,'aace::alexa::LocalMediaSource::mutedStateChanged()'],['../classaace_1_1audio_1_1_audio_output.html#a51ae5c98c56a0ed6328b1444d0aaf041',1,'aace::audio::AudioOutput::mutedStateChanged()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_a.html b/docs/docs/doxygen-docs/cpp/search/functions_a.html deleted file mode 100644 index f10ad638c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_a.js b/docs/docs/doxygen-docs/cpp/search/functions_a.js deleted file mode 100644 index 97e05fd92..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_a.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['navigationerror',['navigationError',['../classaace_1_1navigation_1_1_navigation.html#a391d9b1c3de2790bdf1e5d7845c22d05',1,'aace::navigation::Navigation']]], - ['navigationevent',['navigationEvent',['../classaace_1_1navigation_1_1_navigation.html#a0593c914f53afaa11c2ccaca8216f17f',1,'aace::navigation::Navigation']]], - ['networkstatuschanged',['networkStatusChanged',['../classaace_1_1network_1_1_network_info_provider.html#a51201e3d5dc9f1ea8e6ef973373ed971',1,'aace::network::NetworkInfoProvider']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_b.html b/docs/docs/doxygen-docs/cpp/search/functions_b.html deleted file mode 100644 index 172ea1b31..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_b.js b/docs/docs/doxygen-docs/cpp/search/functions_b.js deleted file mode 100644 index f56cc597e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_b.js +++ /dev/null @@ -1,14 +0,0 @@ -var searchData= -[ - ['oncancelauthorization',['onCancelAuthorization',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#aac2bb834613c656019d6637dc360aac1',1,'aace::authorization::AuthorizationEngineInterface']]], - ['ondisplaycardcleared',['onDisplayCardCleared',['../classaace_1_1alexa_1_1_template_runtime_engine_interface.html#ae996902577687707f57ef00b240752f5',1,'aace::alexa::TemplateRuntimeEngineInterface']]], - ['ongetplayerduration',['onGetPlayerDuration',['../classaace_1_1alexa_1_1_audio_player_engine_interface.html#a380a99414e5f66c1ab1ed771e92a64cd',1,'aace::alexa::AudioPlayerEngineInterface']]], - ['ongetplayerposition',['onGetPlayerPosition',['../classaace_1_1alexa_1_1_audio_player_engine_interface.html#a8b16159c547ae8f0703d3a8385fa6ff8',1,'aace::alexa::AudioPlayerEngineInterface']]], - ['onlogout',['onLogout',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a1ab5b57b2b705d2d30a4d533cc1146af',1,'aace::authorization::AuthorizationEngineInterface']]], - ['onnotificationreceived',['onNotificationReceived',['../classaace_1_1alexa_1_1_notifications.html#a72f76e86a5e8a022db2aee933751c7dc',1,'aace::alexa::Notifications']]], - ['onsendevent',['onSendEvent',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a227a1f3016ebf443b568b9dd96a232a5',1,'aace::authorization::AuthorizationEngineInterface']]], - ['onstartauthorization',['onStartAuthorization',['../classaace_1_1authorization_1_1_authorization_engine_interface.html#a47cdafa4c4b2869eddee1e664221bc6a',1,'aace::authorization::AuthorizationEngineInterface']]], - ['openstream',['openStream',['../classaace_1_1core_1_1_message_broker.html#ae2028114234d3ad4ab0bcbadb4a86eaf',1,'aace::core::MessageBroker']]], - ['operator_3c_3c',['operator<<',['../namespaceaace_1_1alexa.html#a34edec6ce32fa2cc7fa9dddc3da15ce9',1,'aace::alexa::operator<<(std::ostream &stream, const EqualizerControllerEngineInterface::EqualizerBand &band)'],['../namespaceaace_1_1alexa.html#a7b69fced6fc0a7435f1d79924e4619b8',1,'aace::alexa::operator<<(std::ostream &stream, const MediaPlaybackRequestorEngineInterface::InvocationReason &invocationReason)']]], - ['operator_3d',['operator=',['../classaace_1_1audio_1_1_audio_stream_property.html#a924207ad94f9a5d8409e6048e229da37',1,'aace::audio::AudioStreamProperty']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_c.html b/docs/docs/doxygen-docs/cpp/search/functions_c.html deleted file mode 100644 index 99492ba8e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_c.js b/docs/docs/doxygen-docs/cpp/search/functions_c.js deleted file mode 100644 index 056fe9aba..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_c.js +++ /dev/null @@ -1,18 +0,0 @@ -var searchData= -[ - ['pause',['pause',['../classaace_1_1audio_1_1_audio_output.html#ab0a3cb1163e4a2b4fa6ed0fbb54bdc4e',1,'aace::audio::AudioOutput']]], - ['play',['play',['../classaace_1_1alexa_1_1_external_media_adapter.html#a744856c875bd6e2187584af95ccdf62f',1,'aace::alexa::ExternalMediaAdapter::play(const std::string &localPlayerId, const std::string &playContextToken, int64_t index, std::chrono::milliseconds offset, bool preload, Navigation navigation)=0'],['../classaace_1_1alexa_1_1_external_media_adapter.html#a159219dfe69cbb6b937edb97c52619db',1,'aace::alexa::ExternalMediaAdapter::play(const std::string &localPlayerId, const std::string &playContextToken, int64_t index, std::chrono::milliseconds offset, bool preload, Navigation navigation, const std::string &playbackSessionId, const std::string &skillToken)'],['../classaace_1_1alexa_1_1_local_media_source.html#a1a1f194d9ecc288b70fa09a04d937e8e',1,'aace::alexa::LocalMediaSource::play(ContentSelector contentSelectorType, const std::string &payload)'],['../classaace_1_1alexa_1_1_local_media_source.html#acfa5a4b31e25aad959be05d56a495fb8',1,'aace::alexa::LocalMediaSource::play(ContentSelector contentSelectorType, const std::string &payload, const std::string &sessionId)'],['../classaace_1_1audio_1_1_audio_output.html#a5318ee52ef7ec7216ede5d09b7099c80',1,'aace::audio::AudioOutput::play()']]], - ['playbackstate',['PlaybackState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#aeac23f8b8544eff187f8cc29c43a254e',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::PlaybackState()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a45f06189dbaaf23939994d0d921a6cb3',1,'aace::alexa::LocalMediaSource::PlaybackState::PlaybackState()']]], - ['playcontrol',['playControl',['../classaace_1_1alexa_1_1_external_media_adapter.html#ab1741d92c3a2530f58d8f5b2bbc06953',1,'aace::alexa::ExternalMediaAdapter::playControl()'],['../classaace_1_1alexa_1_1_local_media_source.html#ad541a6f60242ad371b453570e1e8da4d',1,'aace::alexa::LocalMediaSource::playControl()']]], - ['playeractivitychanged',['playerActivityChanged',['../classaace_1_1alexa_1_1_audio_player.html#a13c5a430737a7d55a39525da2a90a7a1',1,'aace::alexa::AudioPlayer']]], - ['playererror',['playerError',['../classaace_1_1alexa_1_1_external_media_adapter.html#a2f8520de5bd484936c32f496adcd9295',1,'aace::alexa::ExternalMediaAdapter::playerError()'],['../classaace_1_1alexa_1_1_local_media_source.html#a32a7ab6c37b036e83ab4b5f21448088c',1,'aace::alexa::LocalMediaSource::playerError()']]], - ['playerevent',['playerEvent',['../classaace_1_1alexa_1_1_external_media_adapter.html#a762baea1e5caf06ca343dfba22c67902',1,'aace::alexa::ExternalMediaAdapter::playerEvent()'],['../classaace_1_1alexa_1_1_local_media_source.html#a7227c31de96b605df8e22b83eb161a32',1,'aace::alexa::LocalMediaSource::playerEvent()']]], - ['prepare',['prepare',['../classaace_1_1audio_1_1_audio_output.html#a2e67f2223e68d842685da2f32f14d49d',1,'aace::audio::AudioOutput::prepare(std::shared_ptr< AudioStream > stream, bool repeating)=0'],['../classaace_1_1audio_1_1_audio_output.html#ac65040330bf053723e6ded2df6c2da88',1,'aace::audio::AudioOutput::prepare(const std::string &url, bool repeating)=0']]], - ['preparespeech',['prepareSpeech',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#a53d87c2ee1397aa40cab33ed9662e2f8',1,'aace::textToSpeech::TextToSpeech']]], - ['preparespeechcompleted',['prepareSpeechCompleted',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#af482fce1219eba826408b538e89aeb13',1,'aace::textToSpeech::TextToSpeech']]], - ['preparespeechfailed',['prepareSpeechFailed',['../classaace_1_1text_to_speech_1_1_text_to_speech.html#a7a57fd6f8ac823b94d3afdb0d84774c5',1,'aace::textToSpeech::TextToSpeech']]], - ['processactivityevent',['processActivityEvent',['../classaace_1_1apl_1_1_a_p_l.html#a1e382051d18bc09a39e1f3cd9b9ddb9a',1,'aace::apl::APL']]], - ['propertychanged',['propertyChanged',['../classaace_1_1property_manager_1_1_property_manager.html#a71d433e4f3149f96ce2b3df3a51d1aa5',1,'aace::propertyManager::PropertyManager']]], - ['propertystatechanged',['propertyStateChanged',['../classaace_1_1property_manager_1_1_property_manager.html#acfe5b9136c08b87e35c55045129e5aa3',1,'aace::propertyManager::PropertyManager']]], - ['publish',['publish',['../classaace_1_1core_1_1_message_broker.html#a1d13752c762535554c5b195d77f7593f',1,'aace::core::MessageBroker']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_d.html b/docs/docs/doxygen-docs/cpp/search/functions_d.html deleted file mode 100644 index 5be9eccb7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_d.js b/docs/docs/doxygen-docs/cpp/search/functions_d.js deleted file mode 100644 index 9c96531e9..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_d.js +++ /dev/null @@ -1,18 +0,0 @@ -var searchData= -[ - ['record',['record',['../classaace_1_1metrics_1_1_metrics_uploader.html#aed82a63aeae759182dd2f9d744b729f9',1,'aace::metrics::MetricsUploader']]], - ['redial',['redial',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#aa4487723257e8e3ac2b7ba8c335b461d',1,'aace::phoneCallController::PhoneCallController']]], - ['registerplatforminterface',['registerPlatformInterface',['../classaace_1_1core_1_1_engine.html#abab09ff31a4c13f8841bc124d87c24eb',1,'aace::core::Engine::registerPlatformInterface(std::shared_ptr< aace::core::PlatformInterface > platformInterface)=0'],['../classaace_1_1core_1_1_engine.html#a5b1e5999b008bee74249d162c95be7c7',1,'aace::core::Engine::registerPlatformInterface(std::initializer_list< std::shared_ptr< aace::core::PlatformInterface >> platformInterfaceList)=0']]], - ['removeaddressbook',['removeAddressBook',['../classaace_1_1address_book_1_1_address_book.html#aa7114710ac2761899fd033a06fd39cf3',1,'aace::addressBook::AddressBook']]], - ['removeallalerts',['removeAllAlerts',['../classaace_1_1alexa_1_1_alerts.html#a48eea8459c5a5c42819fb4fcd155ff89',1,'aace::alexa::Alerts']]], - ['renderdocument',['renderDocument',['../classaace_1_1apl_1_1_a_p_l.html#a605da3ae66ca91baa83f71442e0c4273',1,'aace::apl::APL']]], - ['renderdocumentresult',['renderDocumentResult',['../classaace_1_1apl_1_1_a_p_l.html#a42ad9effa8cb1ae3ca95fa65c3378993',1,'aace::apl::APL']]], - ['renderplayerinfo',['renderPlayerInfo',['../classaace_1_1alexa_1_1_template_runtime.html#a216ae3f6aa681cd2b5abead91eb17e49',1,'aace::alexa::TemplateRuntime']]], - ['rendertemplate',['renderTemplate',['../classaace_1_1alexa_1_1_template_runtime.html#aa3d04935b3c41e98610a0e427bf4f3f1',1,'aace::alexa::TemplateRuntime']]], - ['reportdiscoveredplayers',['reportDiscoveredPlayers',['../classaace_1_1alexa_1_1_external_media_adapter.html#ac21345c1356b5a346302f4f94a4c9cd9',1,'aace::alexa::ExternalMediaAdapter']]], - ['reportnetworkdatausage',['reportNetworkDataUsage',['../classaace_1_1device_usage_1_1_device_usage.html#aa9003acec174eae323c0ed3e7acbdaef',1,'aace::deviceUsage::DeviceUsage']]], - ['requestmediaplayback',['requestMediaPlayback',['../classaace_1_1alexa_1_1_media_playback_requestor.html#af93926d89c6ebfd55baa2d5dbf62a7d1',1,'aace::alexa::MediaPlaybackRequestor']]], - ['requesttoken',['requestToken',['../classaace_1_1alexa_1_1_external_media_adapter.html#a852b1789a85467ede731ba005de78320',1,'aace::alexa::ExternalMediaAdapter']]], - ['reset',['reset',['../classaace_1_1cbl_1_1_c_b_l.html#a6b9bf59fb1f4a358273851049b2a74b6',1,'aace::cbl::CBL']]], - ['resume',['resume',['../classaace_1_1audio_1_1_audio_output.html#a16da42e4ec758e6635ab01c01bd435e5',1,'aace::audio::AudioOutput']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_e.html b/docs/docs/doxygen-docs/cpp/search/functions_e.html deleted file mode 100644 index e256cb630..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_e.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_e.js b/docs/docs/doxygen-docs/cpp/search/functions_e.js deleted file mode 100644 index 0d7bdc052..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_e.js +++ /dev/null @@ -1,49 +0,0 @@ -var searchData= -[ - ['seek',['seek',['../classaace_1_1alexa_1_1_external_media_adapter.html#a95da75990f502cac72ed8b15cb4e2bc6',1,'aace::alexa::ExternalMediaAdapter::seek()'],['../classaace_1_1alexa_1_1_local_media_source.html#af1bdc078c4702c3f8b7a864dd0095a47',1,'aace::alexa::LocalMediaSource::seek()']]], - ['sendconnectivityevent',['sendConnectivityEvent',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#a07992367aa0b66f931ca374da0feb86d',1,'aace::connectivity::AlexaConnectivity']]], - ['senddatasourcefetchrequestevent',['sendDataSourceFetchRequestEvent',['../classaace_1_1apl_1_1_a_p_l.html#a306d1701b8132eb2306b22880e4401e8',1,'aace::apl::APL']]], - ['senddevicewindowstate',['sendDeviceWindowState',['../classaace_1_1apl_1_1_a_p_l.html#ac3b76e6d3ad96161c5e37f2d3728ae1d',1,'aace::apl::APL']]], - ['senddocumentstate',['sendDocumentState',['../classaace_1_1apl_1_1_a_p_l.html#a87d590c8a9a8f32c36bf15b41ce6d1a0',1,'aace::apl::APL']]], - ['senddtmf',['sendDTMF',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#af236ece858fd897886f7d62fc175665c',1,'aace::phoneCallController::PhoneCallController']]], - ['senddtmffailed',['sendDTMFFailed',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a7711ff33033a10bb6ec080269ac30ba6',1,'aace::phoneCallController::PhoneCallController']]], - ['senddtmfsucceeded',['sendDTMFSucceeded',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a4d89b0bc7309cd32a096641a45f559e5',1,'aace::phoneCallController::PhoneCallController']]], - ['sendevent',['sendEvent',['../classaace_1_1authorization_1_1_authorization.html#a7c5073cd65feff21a46022ab6e6d2274',1,'aace::authorization::Authorization']]], - ['sendmessage',['sendMessage',['../classaace_1_1messaging_1_1_messaging.html#a99ba888d9a757817fb0edcf4de845cfe',1,'aace::messaging::Messaging']]], - ['sendmessagefailed',['sendMessageFailed',['../classaace_1_1messaging_1_1_messaging.html#a67d5c75859171895cf5781086f567919',1,'aace::messaging::Messaging']]], - ['sendmessagesucceeded',['sendMessageSucceeded',['../classaace_1_1messaging_1_1_messaging.html#ac0e38e8653ffbfb1bb5bc8cca55274ca',1,'aace::messaging::Messaging']]], - ['sendruntimeerrorevent',['sendRuntimeErrorEvent',['../classaace_1_1apl_1_1_a_p_l.html#a3a3bba659088b4e3d4fed3f14ebf7f69',1,'aace::apl::APL']]], - ['senduserevent',['sendUserEvent',['../classaace_1_1apl_1_1_a_p_l.html#a650185d2e461fa04a54ca6389cea9b7e',1,'aace::apl::APL']]], - ['sessionstate',['SessionState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a4d0362ceeb3aeb4a5523e3a9c1b355b2',1,'aace::alexa::ExternalMediaAdapter::SessionState']]], - ['setaplmaxversion',['setAPLMaxVersion',['../classaace_1_1apl_1_1_a_p_l.html#ae78b5ed9cf53ac882d12bdff99d69638',1,'aace::apl::APL']]], - ['setauthorizationdata',['setAuthorizationData',['../classaace_1_1authorization_1_1_authorization.html#a147681c6d9a1677d289aa715e910bb3d',1,'aace::authorization::Authorization']]], - ['setbandlevels',['setBandLevels',['../classaace_1_1alexa_1_1_equalizer_controller.html#a9f0774201117c45bc87f68e571f2478e',1,'aace::alexa::EqualizerController']]], - ['setdefaultzone',['setDefaultZone',['../classaace_1_1car_control_1_1config_1_1_car_control_configuration.html#ac1c48da7ee8a6244c27414b97a40f3a0',1,'aace::carControl::config::CarControlConfiguration']]], - ['setdocumentidletimeout',['setDocumentIdleTimeout',['../classaace_1_1apl_1_1_a_p_l.html#ad6270378b772440b1d4679b844d4d928',1,'aace::apl::APL']]], - ['setdonotdisturb',['setDoNotDisturb',['../classaace_1_1alexa_1_1_do_not_disturb.html#adf4a853a8f3366e416127d1f1767ccab',1,'aace::alexa::DoNotDisturb']]], - ['setfocus',['setFocus',['../classaace_1_1alexa_1_1_external_media_adapter.html#a62328f4019ee4f59192e92606c5b4a57',1,'aace::alexa::ExternalMediaAdapter::setFocus()'],['../classaace_1_1alexa_1_1_local_media_source.html#ad1217e4c192da618ae846ba57c8611ac',1,'aace::alexa::LocalMediaSource::setFocus()']]], - ['setglobalpreset',['setGlobalPreset',['../classaace_1_1alexa_1_1_global_preset.html#a9cecca4284cee3de1215a53bb3b763ea',1,'aace::alexa::GlobalPreset']]], - ['setindicator',['setIndicator',['../classaace_1_1alexa_1_1_notifications.html#ac88ce22736f266b4ef6d703b7e2fbc58',1,'aace::alexa::Notifications']]], - ['setmodecontrollervalue',['setModeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#a68e0a7b00fa0024f83240e273817390a',1,'aace::carControl::CarControl']]], - ['setplatformproperty',['setPlatformProperty',['../classaace_1_1apl_1_1_a_p_l.html#a09d51de009a384fd4bb59a8da39b8231',1,'aace::apl::APL']]], - ['setposition',['setPosition',['../classaace_1_1audio_1_1_audio_output.html#a2d621811ac53c6128ad435546ba964e7',1,'aace::audio::AudioOutput']]], - ['setproperty',['setProperty',['../classaace_1_1property_manager_1_1_property_manager.html#a07bd961c86047b1b1e5de7366bf83820',1,'aace::propertyManager::PropertyManager']]], - ['setrangecontrollervalue',['setRangeControllerValue',['../classaace_1_1car_control_1_1_car_control.html#a6eb554713a311dcf2dbe6aca00e1739e',1,'aace::carControl::CarControl']]], - ['setrefreshtoken',['setRefreshToken',['../classaace_1_1cbl_1_1_c_b_l.html#aeb62feeb8cdaad65b1d8dea41f243d7b',1,'aace::cbl::CBL']]], - ['setupcompleted',['setupCompleted',['../classaace_1_1alexa_1_1_device_setup.html#a7c2c215c0f18b326aaf7cf57569a2814',1,'aace::alexa::DeviceSetup']]], - ['setupcompletedresponse',['setupCompletedResponse',['../classaace_1_1alexa_1_1_device_setup.html#a24abfcf7ec0b5f52d976f14bcb913909',1,'aace::alexa::DeviceSetup']]], - ['setuserprofile',['setUserProfile',['../classaace_1_1cbl_1_1_c_b_l.html#a5ce90c8c986bdb7afa6ce7fcfb6a4be5',1,'aace::cbl::CBL']]], - ['showalternativeroutessucceeded',['showAlternativeRoutesSucceeded',['../classaace_1_1navigation_1_1_navigation.html#a0ddacd8f63a00cdcf322b11007345c9a',1,'aace::navigation::Navigation']]], - ['shutdown',['shutdown',['../classaace_1_1core_1_1_engine.html#a8d127cbe960a7e4e86fb404289011901',1,'aace::core::Engine']]], - ['speakersettingschanged',['speakerSettingsChanged',['../classaace_1_1alexa_1_1_alexa_speaker.html#a240488c50d82f556621a521635304dfa',1,'aace::alexa::AlexaSpeaker']]], - ['start',['start',['../classaace_1_1cbl_1_1_c_b_l.html#a98ab22f22a9e395718c09730b35c9bdf',1,'aace::cbl::CBL::start()'],['../classaace_1_1core_1_1_engine.html#ace84ee80b94b7da5c7f38390d5a160d7',1,'aace::core::Engine::start()']]], - ['startauthorization',['startAuthorization',['../classaace_1_1authorization_1_1_authorization.html#af93d589976a27961166a454ca50239eb',1,'aace::authorization::Authorization']]], - ['startcapture',['startCapture',['../classaace_1_1alexa_1_1_speech_recognizer.html#ab2d1df9942a32ff6eb829211a1ebffba',1,'aace::alexa::SpeechRecognizer']]], - ['startducking',['startDucking',['../classaace_1_1audio_1_1_audio_output.html#a127f6c48e927c2ad6d908dc7ba724da5',1,'aace::audio::AudioOutput']]], - ['startnavigation',['startNavigation',['../classaace_1_1navigation_1_1_navigation.html#abb26aed1a2b2fb215fd9c69cb9b6511c',1,'aace::navigation::Navigation']]], - ['stop',['stop',['../classaace_1_1audio_1_1_audio_output.html#a80a92aeb055e394e6661c43f9217c670',1,'aace::audio::AudioOutput::stop()'],['../classaace_1_1core_1_1_engine.html#a456599306224a018b0c7b708594671f2',1,'aace::core::Engine::stop()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#adbeb8a3a5c7f6e7bfd290ebe81770cae',1,'aace::phoneCallController::PhoneCallController::stop()']]], - ['stopcapture',['stopCapture',['../classaace_1_1alexa_1_1_speech_recognizer.html#afbbd237e855308ed0d440c7f3d469a69',1,'aace::alexa::SpeechRecognizer']]], - ['stopducking',['stopDucking',['../classaace_1_1audio_1_1_audio_output.html#a616f8d7ed77d3afcbb684977bf98368b',1,'aace::audio::AudioOutput']]], - ['stopforegroundactivity',['stopForegroundActivity',['../classaace_1_1alexa_1_1_alexa_client.html#a5ac8bb84af2126339c7bf685d3540bac',1,'aace::alexa::AlexaClient']]], - ['subscribe',['subscribe',['../classaace_1_1core_1_1_message_broker.html#a772d071dfd5916d8502defb703932a56',1,'aace::core::MessageBroker']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/functions_f.html b/docs/docs/doxygen-docs/cpp/search/functions_f.html deleted file mode 100644 index 424126cd7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_f.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/functions_f.js b/docs/docs/doxygen-docs/cpp/search/functions_f.js deleted file mode 100644 index afe1bef89..000000000 --- a/docs/docs/doxygen-docs/cpp/search/functions_f.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['taptotalk',['tapToTalk',['../classaace_1_1alexa_1_1_speech_recognizer.html#a43cf5fc0d4a1386949d5a5d4e00d804c',1,'aace::alexa::SpeechRecognizer']]], - ['togglepressed',['togglePressed',['../classaace_1_1alexa_1_1_playback_controller.html#a4ea5e27e8b76ce7066a9878af02ae9f6',1,'aace::alexa::PlaybackController']]], - ['turnpowercontrolleroff',['turnPowerControllerOff',['../classaace_1_1car_control_1_1_car_control.html#a213c71cb12f115e5c826fca82ef62905',1,'aace::carControl::CarControl']]], - ['turnpowercontrolleron',['turnPowerControllerOn',['../classaace_1_1car_control_1_1_car_control.html#ae9386e89c038f9d215611f34eaeb7de4',1,'aace::carControl::CarControl']]], - ['turntogglecontrolleroff',['turnToggleControllerOff',['../classaace_1_1car_control_1_1_car_control.html#a817fe2332c70813506adae57188cc63a',1,'aace::carControl::CarControl']]], - ['turntogglecontrolleron',['turnToggleControllerOn',['../classaace_1_1car_control_1_1_car_control.html#a2fe461687d626b4530e2d25022851723',1,'aace::carControl::CarControl']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/mag_sel.png b/docs/docs/doxygen-docs/cpp/search/mag_sel.png deleted file mode 100644 index 81f6040a2..000000000 Binary files a/docs/docs/doxygen-docs/cpp/search/mag_sel.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/search/namespaces_0.html b/docs/docs/doxygen-docs/cpp/search/namespaces_0.html deleted file mode 100644 index 605ac452c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/namespaces_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/namespaces_0.js b/docs/docs/doxygen-docs/cpp/search/namespaces_0.js deleted file mode 100644 index 1051a96e4..000000000 --- a/docs/docs/doxygen-docs/cpp/search/namespaces_0.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['aace',['aace',['../namespaceaace.html',1,'']]], - ['action',['action',['../namespaceaace_1_1car_control_1_1config_1_1action.html',1,'aace::carControl::config']]], - ['alexa',['alexa',['../namespaceaace_1_1alexa.html',1,'aace']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/nomatches.html b/docs/docs/doxygen-docs/cpp/search/nomatches.html deleted file mode 100644 index b1ded27e9..000000000 --- a/docs/docs/doxygen-docs/cpp/search/nomatches.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - -
        -
        No Matches
        -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/pages_0.html b/docs/docs/doxygen-docs/cpp/search/pages_0.html deleted file mode 100644 index 4955b9e4f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/pages_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/pages_0.js b/docs/docs/doxygen-docs/cpp/search/pages_0.js deleted file mode 100644 index 50696303f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/pages_0.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['alexa_20auto_20sdk_20for_20c_2b_2b',['Alexa Auto SDK for C++',['../index.html',1,'']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/pages_1.html b/docs/docs/doxygen-docs/cpp/search/pages_1.html deleted file mode 100644 index aedb14ee2..000000000 --- a/docs/docs/doxygen-docs/cpp/search/pages_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/pages_1.js b/docs/docs/doxygen-docs/cpp/search/pages_1.js deleted file mode 100644 index 038da5410..000000000 --- a/docs/docs/doxygen-docs/cpp/search/pages_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['deprecated_20list',['Deprecated List',['../deprecated.html',1,'']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/search.css b/docs/docs/doxygen-docs/cpp/search/search.css deleted file mode 100644 index 3cf9df94a..000000000 --- a/docs/docs/doxygen-docs/cpp/search/search.css +++ /dev/null @@ -1,271 +0,0 @@ -/*---------------- Search Box */ - -#FSearchBox { - float: left; -} - -#MSearchBox { - white-space : nowrap; - float: none; - margin-top: 8px; - right: 0px; - width: 170px; - height: 24px; - z-index: 102; -} - -#MSearchBox .left -{ - display:block; - position:absolute; - left:10px; - width:20px; - height:19px; - background:url('search_l.png') no-repeat; - background-position:right; -} - -#MSearchSelect { - display:block; - position:absolute; - width:20px; - height:19px; -} - -.left #MSearchSelect { - left:4px; -} - -.right #MSearchSelect { - right:5px; -} - -#MSearchField { - display:block; - position:absolute; - height:19px; - background:url('search_m.png') repeat-x; - border:none; - width:115px; - margin-left:20px; - padding-left:4px; - color: #909090; - outline: none; - font: 9pt Arial, Verdana, sans-serif; - -webkit-border-radius: 0px; -} - -#FSearchBox #MSearchField { - margin-left:15px; -} - -#MSearchBox .right { - display:block; - position:absolute; - right:10px; - top:8px; - width:20px; - height:19px; - background:url('search_r.png') no-repeat; - background-position:left; -} - -#MSearchClose { - display: none; - position: absolute; - top: 4px; - background : none; - border: none; - margin: 0px 4px 0px 0px; - padding: 0px 0px; - outline: none; -} - -.left #MSearchClose { - left: 6px; -} - -.right #MSearchClose { - right: 2px; -} - -.MSearchBoxActive #MSearchField { - color: #000000; -} - -/*---------------- Search filter selection */ - -#MSearchSelectWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #90A5CE; - background-color: #F9FAFC; - z-index: 10001; - padding-top: 4px; - padding-bottom: 4px; - -moz-border-radius: 4px; - -webkit-border-top-left-radius: 4px; - -webkit-border-top-right-radius: 4px; - -webkit-border-bottom-left-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -} - -.SelectItem { - font: 8pt Arial, Verdana, sans-serif; - padding-left: 2px; - padding-right: 12px; - border: 0px; -} - -span.SelectionMark { - margin-right: 4px; - font-family: monospace; - outline-style: none; - text-decoration: none; -} - -a.SelectItem { - display: block; - outline-style: none; - color: #000000; - text-decoration: none; - padding-left: 6px; - padding-right: 12px; -} - -a.SelectItem:focus, -a.SelectItem:active { - color: #000000; - outline-style: none; - text-decoration: none; -} - -a.SelectItem:hover { - color: #FFFFFF; - background-color: #3D578C; - outline-style: none; - text-decoration: none; - cursor: pointer; - display: block; -} - -/*---------------- Search results window */ - -iframe#MSearchResults { - width: 60ex; - height: 15em; -} - -#MSearchResultsWindow { - display: none; - position: absolute; - left: 0; top: 0; - border: 1px solid #000; - background-color: #EEF1F7; - z-index:10000; -} - -/* ----------------------------------- */ - - -#SRIndex { - clear:both; - padding-bottom: 15px; -} - -.SREntry { - font-size: 10pt; - padding-left: 1ex; -} - -.SRPage .SREntry { - font-size: 8pt; - padding: 1px 5px; -} - -body.SRPage { - margin: 5px 2px; -} - -.SRChildren { - padding-left: 3ex; padding-bottom: .5em -} - -.SRPage .SRChildren { - display: none; -} - -.SRSymbol { - font-weight: bold; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRScope { - display: block; - color: #425E97; - font-family: Arial, Verdana, sans-serif; - text-decoration: none; - outline: none; -} - -a.SRSymbol:focus, a.SRSymbol:active, -a.SRScope:focus, a.SRScope:active { - text-decoration: underline; -} - -span.SRScope { - padding-left: 4px; -} - -.SRPage .SRStatus { - padding: 2px 5px; - font-size: 8pt; - font-style: italic; -} - -.SRResult { - display: none; -} - -DIV.searchresults { - margin-left: 10px; - margin-right: 10px; -} - -/*---------------- External search page results */ - -.searchresult { - background-color: #F0F3F8; -} - -.pages b { - color: white; - padding: 5px 5px 3px 5px; - background-image: url("../tab_a.png"); - background-repeat: repeat-x; - text-shadow: 0 1px 1px #000000; -} - -.pages { - line-height: 17px; - margin-left: 4px; - text-decoration: none; -} - -.hl { - font-weight: bold; -} - -#searchresults { - margin-bottom: 20px; -} - -.searchpages { - margin-top: 10px; -} - diff --git a/docs/docs/doxygen-docs/cpp/search/search.js b/docs/docs/doxygen-docs/cpp/search/search.js deleted file mode 100644 index dedce3bf0..000000000 --- a/docs/docs/doxygen-docs/cpp/search/search.js +++ /dev/null @@ -1,791 +0,0 @@ -function convertToId(search) -{ - var result = ''; - for (i=0;i do a search - { - this.Search(); - } - } - - this.OnSearchSelectKey = function(evt) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==40 && this.searchIndex0) // Up - { - this.searchIndex--; - this.OnSelectItem(this.searchIndex); - } - else if (e.keyCode==13 || e.keyCode==27) - { - this.OnSelectItem(this.searchIndex); - this.CloseSelectionWindow(); - this.DOMSearchField().focus(); - } - return false; - } - - // --------- Actions - - // Closes the results window. - this.CloseResultsWindow = function() - { - this.DOMPopupSearchResultsWindow().style.display = 'none'; - this.DOMSearchClose().style.display = 'none'; - this.Activate(false); - } - - this.CloseSelectionWindow = function() - { - this.DOMSearchSelectWindow().style.display = 'none'; - } - - // Performs a search. - this.Search = function() - { - this.keyTimeout = 0; - - // strip leading whitespace - var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); - - var code = searchValue.toLowerCase().charCodeAt(0); - var idxChar = searchValue.substr(0, 1).toLowerCase(); - if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair - { - idxChar = searchValue.substr(0, 2); - } - - var resultsPage; - var resultsPageWithSearch; - var hasResultsPage; - - var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); - if (idx!=-1) - { - var hexCode=idx.toString(16); - resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; - resultsPageWithSearch = resultsPage+'?'+escape(searchValue); - hasResultsPage = true; - } - else // nothing available for this search term - { - resultsPage = this.resultsPath + '/nomatches.html'; - resultsPageWithSearch = resultsPage; - hasResultsPage = false; - } - - window.frames.MSearchResults.location = resultsPageWithSearch; - var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); - - if (domPopupSearchResultsWindow.style.display!='block') - { - var domSearchBox = this.DOMSearchBox(); - this.DOMSearchClose().style.display = 'inline'; - if (this.insideFrame) - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - domPopupSearchResultsWindow.style.position = 'relative'; - domPopupSearchResultsWindow.style.display = 'block'; - var width = document.body.clientWidth - 8; // the -8 is for IE :-( - domPopupSearchResultsWindow.style.width = width + 'px'; - domPopupSearchResults.style.width = width + 'px'; - } - else - { - var domPopupSearchResults = this.DOMPopupSearchResults(); - var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; - var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; - domPopupSearchResultsWindow.style.display = 'block'; - left -= domPopupSearchResults.offsetWidth; - domPopupSearchResultsWindow.style.top = top + 'px'; - domPopupSearchResultsWindow.style.left = left + 'px'; - } - } - - this.lastSearchValue = searchValue; - this.lastResultsPage = resultsPage; - } - - // -------- Activation Functions - - // Activates or deactivates the search panel, resetting things to - // their default values if necessary. - this.Activate = function(isActive) - { - if (isActive || // open it - this.DOMPopupSearchResultsWindow().style.display == 'block' - ) - { - this.DOMSearchBox().className = 'MSearchBoxActive'; - - var searchField = this.DOMSearchField(); - - if (searchField.value == this.searchLabel) // clear "Search" term upon entry - { - searchField.value = ''; - this.searchActive = true; - } - } - else if (!isActive) // directly remove the panel - { - this.DOMSearchBox().className = 'MSearchBoxInactive'; - this.DOMSearchField().value = this.searchLabel; - this.searchActive = false; - this.lastSearchValue = '' - this.lastResultsPage = ''; - } - } -} - -// ----------------------------------------------------------------------- - -// The class that handles everything on the search results page. -function SearchResults(name) -{ - // The number of matches from the last run of . - this.lastMatchCount = 0; - this.lastKey = 0; - this.repeatOn = false; - - // Toggles the visibility of the passed element ID. - this.FindChildElement = function(id) - { - var parentElement = document.getElementById(id); - var element = parentElement.firstChild; - - while (element && element!=parentElement) - { - if (element.nodeName == 'DIV' && element.className == 'SRChildren') - { - return element; - } - - if (element.nodeName == 'DIV' && element.hasChildNodes()) - { - element = element.firstChild; - } - else if (element.nextSibling) - { - element = element.nextSibling; - } - else - { - do - { - element = element.parentNode; - } - while (element && element!=parentElement && !element.nextSibling); - - if (element && element!=parentElement) - { - element = element.nextSibling; - } - } - } - } - - this.Toggle = function(id) - { - var element = this.FindChildElement(id); - if (element) - { - if (element.style.display == 'block') - { - element.style.display = 'none'; - } - else - { - element.style.display = 'block'; - } - } - } - - // Searches for the passed string. If there is no parameter, - // it takes it from the URL query. - // - // Always returns true, since other documents may try to call it - // and that may or may not be possible. - this.Search = function(search) - { - if (!search) // get search word from URL - { - search = window.location.search; - search = search.substring(1); // Remove the leading '?' - search = unescape(search); - } - - search = search.replace(/^ +/, ""); // strip leading spaces - search = search.replace(/ +$/, ""); // strip trailing spaces - search = search.toLowerCase(); - search = convertToId(search); - - var resultRows = document.getElementsByTagName("div"); - var matches = 0; - - var i = 0; - while (i < resultRows.length) - { - var row = resultRows.item(i); - if (row.className == "SRResult") - { - var rowMatchName = row.id.toLowerCase(); - rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' - - if (search.length<=rowMatchName.length && - rowMatchName.substr(0, search.length)==search) - { - row.style.display = 'block'; - matches++; - } - else - { - row.style.display = 'none'; - } - } - i++; - } - document.getElementById("Searching").style.display='none'; - if (matches == 0) // no results - { - document.getElementById("NoMatches").style.display='block'; - } - else // at least one result - { - document.getElementById("NoMatches").style.display='none'; - } - this.lastMatchCount = matches; - return true; - } - - // return the first item with index index or higher that is visible - this.NavNext = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index++; - } - return focusItem; - } - - this.NavPrev = function(index) - { - var focusItem; - while (1) - { - var focusName = 'Item'+index; - focusItem = document.getElementById(focusName); - if (focusItem && focusItem.parentNode.parentNode.style.display=='block') - { - break; - } - else if (!focusItem) // last element - { - break; - } - focusItem=null; - index--; - } - return focusItem; - } - - this.ProcessKeys = function(e) - { - if (e.type == "keydown") - { - this.repeatOn = false; - this.lastKey = e.keyCode; - } - else if (e.type == "keypress") - { - if (!this.repeatOn) - { - if (this.lastKey) this.repeatOn = true; - return false; // ignore first keypress after keydown - } - } - else if (e.type == "keyup") - { - this.lastKey = 0; - this.repeatOn = false; - } - return this.lastKey!=0; - } - - this.Nav = function(evt,itemIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - var newIndex = itemIndex-1; - var focusItem = this.NavPrev(newIndex); - if (focusItem) - { - var child = this.FindChildElement(focusItem.parentNode.parentNode.id); - if (child && child.style.display == 'block') // children visible - { - var n=0; - var tmpElem; - while (1) // search for last child - { - tmpElem = document.getElementById('Item'+newIndex+'_c'+n); - if (tmpElem) - { - focusItem = tmpElem; - } - else // found it! - { - break; - } - n++; - } - } - } - if (focusItem) - { - focusItem.focus(); - } - else // return focus to search field - { - parent.document.getElementById("MSearchField").focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = itemIndex+1; - var focusItem; - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem && elem.style.display == 'block') // children visible - { - focusItem = document.getElementById('Item'+itemIndex+'_c0'); - } - if (!focusItem) focusItem = this.NavNext(newIndex); - if (focusItem) focusItem.focus(); - } - else if (this.lastKey==39) // Right - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'block'; - } - else if (this.lastKey==37) // Left - { - var item = document.getElementById('Item'+itemIndex); - var elem = this.FindChildElement(item.parentNode.parentNode.id); - if (elem) elem.style.display = 'none'; - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } - - this.NavChild = function(evt,itemIndex,childIndex) - { - var e = (evt) ? evt : window.event; // for IE - if (e.keyCode==13) return true; - if (!this.ProcessKeys(e)) return false; - - if (this.lastKey==38) // Up - { - if (childIndex>0) - { - var newIndex = childIndex-1; - document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); - } - else // already at first child, jump to parent - { - document.getElementById('Item'+itemIndex).focus(); - } - } - else if (this.lastKey==40) // Down - { - var newIndex = childIndex+1; - var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); - if (!elem) // last child, jump to parent next parent - { - elem = this.NavNext(itemIndex+1); - } - if (elem) - { - elem.focus(); - } - } - else if (this.lastKey==27) // Escape - { - parent.searchBox.CloseResultsWindow(); - parent.document.getElementById("MSearchField").focus(); - } - else if (this.lastKey==13) // Enter - { - return true; - } - return false; - } -} - -function setKeyActions(elem,action) -{ - elem.setAttribute('onkeydown',action); - elem.setAttribute('onkeypress',action); - elem.setAttribute('onkeyup',action); -} - -function setClassAttr(elem,attr) -{ - elem.setAttribute('class',attr); - elem.setAttribute('className',attr); -} - -function createResults() -{ - var results = document.getElementById("SRResults"); - for (var e=0; e - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_0.js b/docs/docs/doxygen-docs/cpp/search/typedefs_0.js deleted file mode 100644 index eb1bc3894..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_0.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['alexapresentationtimeout',['AlexaPresentationTimeout',['../classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html#acce82f90959c8f4f5dd2437094ffbe4e',1,'aace::apl::config::APLConfiguration']]], - ['autherror',['AuthError',['../classaace_1_1alexa_1_1_auth_provider.html#a6f44b8c435407a4ff782fd931afc05ab',1,'aace::alexa::AuthProvider']]], - ['authorizationstate',['AuthorizationState',['../classaace_1_1authorization_1_1_authorization.html#ae0290e2252f9cd0b623c203800350598',1,'aace::authorization::Authorization']]], - ['authstate',['AuthState',['../classaace_1_1alexa_1_1_auth_provider.html#a703c765e6cb7c747a9fc6a12d81b7ef4',1,'aace::alexa::AuthProvider']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_1.html b/docs/docs/doxygen-docs/cpp/search/typedefs_1.html deleted file mode 100644 index b77c53383..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_1.js b/docs/docs/doxygen-docs/cpp/search/typedefs_1.js deleted file mode 100644 index 85cc55791..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_1.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['callerror',['CallError',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#ae7491c5cce0b1868dfb1fefd0a2e52d3',1,'aace::phoneCallController::PhoneCallController']]], - ['callingdeviceconfigurationproperty',['CallingDeviceConfigurationProperty',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#ae8320021335ca082bdcf800786d5c825',1,'aace::phoneCallController::PhoneCallController']]], - ['callstate',['CallState',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a000a8a46c8b591fed67d17d531028efa',1,'aace::phoneCallController::PhoneCallController']]], - ['connectionstate',['ConnectionState',['../classaace_1_1messaging_1_1_messaging.html#aa70529b477113d86c1cf2f2d9bb9b0b6',1,'aace::messaging::Messaging::ConnectionState()'],['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#a05037f25d4285444a0ae111af231fe36',1,'aace::phoneCallController::PhoneCallController::ConnectionState()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_2.html b/docs/docs/doxygen-docs/cpp/search/typedefs_2.html deleted file mode 100644 index 076311dc5..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_2.js b/docs/docs/doxygen-docs/cpp/search/typedefs_2.js deleted file mode 100644 index 05cda2d87..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_2.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['dtmferror',['DTMFError',['../classaace_1_1phone_call_controller_1_1_phone_call_controller.html#adb76ccaed091ba27062e1835e5727399',1,'aace::phoneCallController::PhoneCallController']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_3.html b/docs/docs/doxygen-docs/cpp/search/typedefs_3.html deleted file mode 100644 index a4a727ff1..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_3.js b/docs/docs/doxygen-docs/cpp/search/typedefs_3.js deleted file mode 100644 index 65708733d..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_3.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['equalizerband',['EqualizerBand',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aabb71d98c3dd763d0522a5e688a0eab1',1,'aace::alexa::config::AlexaConfiguration::EqualizerBand()'],['../classaace_1_1alexa_1_1_equalizer_controller.html#ac79148250b90df9f0ce22b223d3db2c4',1,'aace::alexa::EqualizerController::EqualizerBand()']]], - ['equalizerbandlevel',['EqualizerBandLevel',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#aba7e45428c26995d0827c5eccd61f9ab',1,'aace::alexa::config::AlexaConfiguration::EqualizerBandLevel()'],['../classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html#a383ac0bd70d914002dd5906e1dd1f74d',1,'aace::alexa::EqualizerControllerEngineInterface::EqualizerBandLevel()'],['../classaace_1_1alexa_1_1_equalizer_controller.html#a5785072a612afeff083b230978275347',1,'aace::alexa::EqualizerController::EqualizerBandLevel()']]], - ['errorcode',['ErrorCode',['../classaace_1_1messaging_1_1_messaging.html#a8b0aec4199d79f3a1ceb9cf640a17fb6',1,'aace::messaging::Messaging']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_4.html b/docs/docs/doxygen-docs/cpp/search/typedefs_4.html deleted file mode 100644 index be033cd19..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_4.js b/docs/docs/doxygen-docs/cpp/search/typedefs_4.js deleted file mode 100644 index 5cb8baf67..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_4.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['focusaction',['FocusAction',['../classaace_1_1audio_1_1_audio_output.html#a4c1ae35009e69410b2b4e7be3f36c187',1,'aace::audio::AudioOutput']]], - ['focusstate',['FocusState',['../classaace_1_1alexa_1_1_template_runtime.html#a5d54a3bd39730d828d4514b550c8d211',1,'aace::alexa::TemplateRuntime']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_5.html b/docs/docs/doxygen-docs/cpp/search/typedefs_5.html deleted file mode 100644 index e10c325b5..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_5.js b/docs/docs/doxygen-docs/cpp/search/typedefs_5.js deleted file mode 100644 index 33aebe0c6..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_5.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['initiator',['Initiator',['../classaace_1_1alexa_1_1_speech_recognizer.html#a0cb2f19f83b36509b8db7aa5ac5b1233',1,'aace::alexa::SpeechRecognizer']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_6.html b/docs/docs/doxygen-docs/cpp/search/typedefs_6.html deleted file mode 100644 index 4e206e874..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_6.js b/docs/docs/doxygen-docs/cpp/search/typedefs_6.js deleted file mode 100644 index 281a56d33..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_6.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['level',['Level',['../classaace_1_1logger_1_1_logger.html#acde0b19d1be1c61274536b6a955d2d7a',1,'aace::logger::Logger::Level()'],['../classaace_1_1logger_1_1config_1_1_logger_configuration.html#a11d693782db686f4ac4667fb814d0b29',1,'aace::logger::config::LoggerConfiguration::Level()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_7.html b/docs/docs/doxygen-docs/cpp/search/typedefs_7.html deleted file mode 100644 index cc182ee6c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_7.js b/docs/docs/doxygen-docs/cpp/search/typedefs_7.js deleted file mode 100644 index 692077fec..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_7.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['mediaerror',['MediaError',['../classaace_1_1audio_1_1_audio_output.html#a3259653b849b84a183de95091860dd21',1,'aace::audio::AudioOutput']]], - ['mediastate',['MediaState',['../classaace_1_1audio_1_1_audio_output.html#ab1be1bc2a34898eba12b799787d908c5',1,'aace::audio::AudioOutput']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_8.html b/docs/docs/doxygen-docs/cpp/search/typedefs_8.html deleted file mode 100644 index 9379676b7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_8.js b/docs/docs/doxygen-docs/cpp/search/typedefs_8.js deleted file mode 100644 index 4d6f81f29..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_8.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['networkstatus',['NetworkStatus',['../classaace_1_1network_1_1_network_info_provider.html#a7559331245cff527a1acb4423ca4dfd3',1,'aace::network::NetworkInfoProvider']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_9.html b/docs/docs/doxygen-docs/cpp/search/typedefs_9.html deleted file mode 100644 index 6f2b9ea41..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_9.js b/docs/docs/doxygen-docs/cpp/search/typedefs_9.js deleted file mode 100644 index 3b0127fc7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_9.js +++ /dev/null @@ -1,8 +0,0 @@ -var searchData= -[ - ['permissionstate',['PermissionState',['../classaace_1_1messaging_1_1_messaging.html#abc8737f2c9a630793c570482266c0c55',1,'aace::messaging::Messaging']]], - ['playbackbutton',['PlaybackButton',['../classaace_1_1alexa_1_1_playback_controller.html#a18c59eb4f33742d091a065d02c764762',1,'aace::alexa::PlaybackController']]], - ['playbacktoggle',['PlaybackToggle',['../classaace_1_1alexa_1_1_playback_controller.html#a15781abf2231c9b5de41444a27844a7d',1,'aace::alexa::PlaybackController']]], - ['playcontroltype',['PlayControlType',['../classaace_1_1alexa_1_1_local_media_source.html#aea96a47b1442b4c5fa2906b2e0d9a4a9',1,'aace::alexa::LocalMediaSource']]], - ['playeractivity',['PlayerActivity',['../classaace_1_1alexa_1_1_audio_player.html#afb9cdf00184a4e792b2207583145ef34',1,'aace::alexa::AudioPlayer']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_a.html b/docs/docs/doxygen-docs/cpp/search/typedefs_a.html deleted file mode 100644 index b897e1cf7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_a.js b/docs/docs/doxygen-docs/cpp/search/typedefs_a.js deleted file mode 100644 index 6dd42724f..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_a.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['statuscode',['StatusCode',['../classaace_1_1connectivity_1_1_alexa_connectivity.html#ae0c713d0bd876d87af35632d8b199927',1,'aace::connectivity::AlexaConnectivity']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_b.html b/docs/docs/doxygen-docs/cpp/search/typedefs_b.html deleted file mode 100644 index 23bfdac3e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_b.js b/docs/docs/doxygen-docs/cpp/search/typedefs_b.js deleted file mode 100644 index 52f32c29c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_b.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['templateruntimetimeout',['TemplateRuntimeTimeout',['../classaace_1_1alexa_1_1config_1_1_alexa_configuration.html#a27fcf72e4bbe6b90e7d86f14c09c577c',1,'aace::alexa::config::AlexaConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_c.html b/docs/docs/doxygen-docs/cpp/search/typedefs_c.html deleted file mode 100644 index 28f5aad20..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/typedefs_c.js b/docs/docs/doxygen-docs/cpp/search/typedefs_c.js deleted file mode 100644 index e63031fcc..000000000 --- a/docs/docs/doxygen-docs/cpp/search/typedefs_c.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['vehicleproperty',['VehicleProperty',['../classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html#a8c75abd04aaf80ed9057f1b940e83bd7',1,'aace::vehicle::config::VehicleConfiguration']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_0.html b/docs/docs/doxygen-docs/cpp/search/variables_0.html deleted file mode 100644 index 74ce80724..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_0.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_0.js b/docs/docs/doxygen-docs/cpp/search/variables_0.js deleted file mode 100644 index e71596a14..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_0.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['accesstoken',['accessToken',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a0f12d9c3aa3f7eedec761ed03d23342c',1,'aace::alexa::ExternalMediaAdapter::SessionState::accessToken()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#aa5e39976d05399f8ded96efd82760d9a',1,'aace::alexa::LocalMediaSource::SessionState::accessToken()']]], - ['active',['active',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a47f42fb452b204956f732a8c3633d713',1,'aace::alexa::ExternalMediaAdapter::SessionState::active()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a68cbf53fad92de84fd8c6c857bbd7332',1,'aace::alexa::LocalMediaSource::SessionState::active()']]], - ['albumid',['albumId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a671b6f011cd5f54fa23fb6b869ef9efb',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::albumId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a31bc8ee91146a94d157d6d91f8a3f366',1,'aace::alexa::LocalMediaSource::PlaybackState::albumId()']]], - ['albumname',['albumName',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#aaac4877bf0cbfcb4538b3bcceb4e85f2',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::albumName()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a0489c6562129c6520da07ff829805270',1,'aace::alexa::LocalMediaSource::PlaybackState::albumName()']]], - ['artistid',['artistId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ae8e46c9953136f5180b5d7a9d324b502',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::artistId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a9af882dbc200b638b54081e0248ff013',1,'aace::alexa::LocalMediaSource::PlaybackState::artistId()']]], - ['artistname',['artistName',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ac4a8c7f055df29c5df58a0f1f93aa774',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::artistName()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ac4e528288c407184054986b7c5f4401c',1,'aace::alexa::LocalMediaSource::PlaybackState::artistName()']]], - ['authorized',['authorized',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html#ab490eef2715a6dc3a5ccd8447e701f88',1,'aace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_1.html b/docs/docs/doxygen-docs/cpp/search/variables_1.html deleted file mode 100644 index 84237b6e7..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_1.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_1.js b/docs/docs/doxygen-docs/cpp/search/variables_1.js deleted file mode 100644 index 7da4d9132..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['coverid',['coverId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ad0ddda86a145a2d25e053c41c75fa6d9',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::coverId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a0a697b06e34e1687628a00d7a9e06f55',1,'aace::alexa::LocalMediaSource::PlaybackState::coverId()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_2.html b/docs/docs/doxygen-docs/cpp/search/variables_2.html deleted file mode 100644 index 5c9de1aab..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_2.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_2.js b/docs/docs/doxygen-docs/cpp/search/variables_2.js deleted file mode 100644 index 6619e28b4..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_2.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['defaultskilltoken',['defaultSkillToken',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html#a819a92a8ef3efd20ddf855b2d681146d',1,'aace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo']]], - ['duration',['duration',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a031db9827daaf6d93e6a1624c2a97d0c',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::duration()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a1899127344b0f4e5bab4ed6fe434d62e',1,'aace::alexa::LocalMediaSource::PlaybackState::duration()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_3.html b/docs/docs/doxygen-docs/cpp/search/variables_3.html deleted file mode 100644 index f95e34c60..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_3.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_3.js b/docs/docs/doxygen-docs/cpp/search/variables_3.js deleted file mode 100644 index 8d2b275fb..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_3.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['endpointid',['endpointId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#ada43dff94ace3219b86960616e22558f',1,'aace::alexa::ExternalMediaAdapter::SessionState::endpointId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a8e331ee5d60fd3d034acddccfd73f87c',1,'aace::alexa::LocalMediaSource::SessionState::endpointId()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_4.html b/docs/docs/doxygen-docs/cpp/search/variables_4.html deleted file mode 100644 index d7db285ee..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_4.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_4.js b/docs/docs/doxygen-docs/cpp/search/variables_4.js deleted file mode 100644 index 994f0905a..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_4.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['favorites',['favorites',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a4a8a97314926068ffe56d36544c964e0',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::favorites()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a21f1fe29e355b3df6efe8961cfb2b424',1,'aace::alexa::LocalMediaSource::PlaybackState::favorites()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_5.html b/docs/docs/doxygen-docs/cpp/search/variables_5.html deleted file mode 100644 index 7bbceeb0d..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_5.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_5.js b/docs/docs/doxygen-docs/cpp/search/variables_5.js deleted file mode 100644 index 2adb284fd..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_5.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['isguest',['isGuest',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a1ca861f8fc670ade16dbcfc3209d504e',1,'aace::alexa::ExternalMediaAdapter::SessionState::isGuest()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#acf3bb6f9c5201741392a1387fbe774bb',1,'aace::alexa::LocalMediaSource::SessionState::isGuest()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_6.html b/docs/docs/doxygen-docs/cpp/search/variables_6.html deleted file mode 100644 index 4eb162d67..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_6.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_6.js b/docs/docs/doxygen-docs/cpp/search/variables_6.js deleted file mode 100644 index a4a3c43df..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_6.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['largeurl',['largeURL',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ae3eb99c0fa114617ef22978c6b12596f',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::largeURL()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a96937de06c1065ed35cde06bf609605a',1,'aace::alexa::LocalMediaSource::PlaybackState::largeURL()']]], - ['launched',['launched',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#ae33ecdd2506d0988e16caf6e79c7311b',1,'aace::alexa::ExternalMediaAdapter::SessionState::launched()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a76eedef6ff685965e14f901863d44e7f',1,'aace::alexa::LocalMediaSource::SessionState::launched()']]], - ['localplayerid',['localPlayerId',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html#a7d901a7d851472d8f49bdb5b3a800a55',1,'aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo::localPlayerId()'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html#ae81d224b974f097d1bc768f3dfa2d3de',1,'aace::alexa::ExternalMediaAdapter::AuthorizedPlayerInfo::localPlayerId()']]], - ['loggedin',['loggedIn',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#ada22c60c9c13b72b9d2b16ada309d3e9',1,'aace::alexa::ExternalMediaAdapter::SessionState::loggedIn()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#aa34672570b2e78efa57b913ba5de086d',1,'aace::alexa::LocalMediaSource::SessionState::loggedIn()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_7.html b/docs/docs/doxygen-docs/cpp/search/variables_7.html deleted file mode 100644 index 040882958..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_7.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_7.js b/docs/docs/doxygen-docs/cpp/search/variables_7.js deleted file mode 100644 index d6625d0f0..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_7.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['mediaprovider',['mediaProvider',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#afed847fb6d1a433912d25efbd3a5deeb',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::mediaProvider()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#af5047b85c14787ac9604c2e1cd69ec7b',1,'aace::alexa::LocalMediaSource::PlaybackState::mediaProvider()']]], - ['mediatype',['mediaType',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a02949fd4dbc76d1a777252817aff6709',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::mediaType()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a815882ddd4509bc466cb4e9fd7aab90b',1,'aace::alexa::LocalMediaSource::PlaybackState::mediaType()']]], - ['mediumurl',['mediumURL',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ad3a1789ab11e758aa2c16498b6e724b3',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::mediumURL()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ac09dd6568db8fefda4001e9d02bc0a5e',1,'aace::alexa::LocalMediaSource::PlaybackState::mediumURL()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_8.html b/docs/docs/doxygen-docs/cpp/search/variables_8.html deleted file mode 100644 index d54d09666..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_8.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_8.js b/docs/docs/doxygen-docs/cpp/search/variables_8.js deleted file mode 100644 index 8f84efc8d..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_8.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['playbacksource',['playbackSource',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ab65edcec57ea9126b9936b68f3694509',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::playbackSource()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ae5c486e6d4c79537597a8430d099b2dd',1,'aace::alexa::LocalMediaSource::PlaybackState::playbackSource()']]], - ['playbacksourceid',['playbackSourceId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a1b0f4fbadc859257a4c2300f41494b16',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::playbackSourceId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a42ff0f9ba02eff868248aa688db77221',1,'aace::alexa::LocalMediaSource::PlaybackState::playbackSourceId()']]], - ['playbackstate',['playbackState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html#aadbf68e90a1b84c5714dc432cf2c7dbf',1,'aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState::playbackState()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html#a22cb98bddfdd580cc71069d3167a58a5',1,'aace::alexa::LocalMediaSource::LocalMediaSourceState::playbackState()']]], - ['playercookie',['playerCookie',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a6aa00c891594ccfe90626c3a15e139a0',1,'aace::alexa::ExternalMediaAdapter::SessionState']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_9.html b/docs/docs/doxygen-docs/cpp/search/variables_9.html deleted file mode 100644 index 234dc60a4..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_9.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_9.js b/docs/docs/doxygen-docs/cpp/search/variables_9.js deleted file mode 100644 index b9d67c4ff..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_9.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['repeatenabled',['repeatEnabled',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ad18c03b18fc5fd59d4502cb5902841c9',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::repeatEnabled()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ac7d32d117f01f4e07020b68eb3d7a329',1,'aace::alexa::LocalMediaSource::PlaybackState::repeatEnabled()']]], - ['repeatoneenabled',['repeatOneEnabled',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a0bb23d6c12a7b4527c71849079c6f4d7',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::repeatOneEnabled()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a0c9af887be4652b9006229d650abf733',1,'aace::alexa::LocalMediaSource::PlaybackState::repeatOneEnabled()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_a.html b/docs/docs/doxygen-docs/cpp/search/variables_a.html deleted file mode 100644 index 089248815..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_a.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_a.js b/docs/docs/doxygen-docs/cpp/search/variables_a.js deleted file mode 100644 index 335d90d66..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_a.js +++ /dev/null @@ -1,9 +0,0 @@ -var searchData= -[ - ['sessionstate',['sessionState',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html#aa5e42c3124172f96c11377bed58963aa',1,'aace::alexa::ExternalMediaAdapter::ExternalMediaAdapterState::sessionState()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html#a1a0533445205c67cca585e45ba1e9486',1,'aace::alexa::LocalMediaSource::LocalMediaSourceState::sessionState()']]], - ['shuffleenabled',['shuffleEnabled',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a80455c20bb3b0800f323a0ccf51b25e9',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::shuffleEnabled()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ad9dbda90ac6bebf653a00d373cc3f296',1,'aace::alexa::LocalMediaSource::PlaybackState::shuffleEnabled()']]], - ['smallurl',['smallURL',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a40bc2ec8931aae4f77d2655613246cc8',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::smallURL()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#ac2f9ba4ca5782c9ad8d6aa3dffe34d04',1,'aace::alexa::LocalMediaSource::PlaybackState::smallURL()']]], - ['spiversion',['spiVersion',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html#a835f44aee5987c33adae9eb581129cfb',1,'aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo::spiVersion()'],['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a5ff9845559c445945ce46743577f02f0',1,'aace::alexa::ExternalMediaAdapter::SessionState::spiVersion()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a2b5d75eb773a180280a9e86311fb216a',1,'aace::alexa::LocalMediaSource::SessionState::spiVersion()']]], - ['supportedcontentselectors',['supportedContentSelectors',['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a8cff541377f47ba71c31fda6f53b46bf',1,'aace::alexa::LocalMediaSource::SessionState']]], - ['supportedoperations',['supportedOperations',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a7f87f3ccce182708d81da10642971c6c',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::supportedOperations()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a9663c11c93549bac86bc0794e7a6193b',1,'aace::alexa::LocalMediaSource::PlaybackState::supportedOperations()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_b.html b/docs/docs/doxygen-docs/cpp/search/variables_b.html deleted file mode 100644 index ea46965c3..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_b.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_b.js b/docs/docs/doxygen-docs/cpp/search/variables_b.js deleted file mode 100644 index 3162e2ba8..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_b.js +++ /dev/null @@ -1,11 +0,0 @@ -var searchData= -[ - ['time_5funknown',['TIME_UNKNOWN',['../classaace_1_1alexa_1_1_audio_player.html#a1dfdec2432e3caf9dc5f92d95aa231f1',1,'aace::alexa::AudioPlayer::TIME_UNKNOWN()'],['../classaace_1_1audio_1_1_audio_output.html#a6e6edf1cd19f4da033cfe3607d8872f3',1,'aace::audio::AudioOutput::TIME_UNKNOWN()']]], - ['tinyurl',['tinyURL',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#aa5ddbdfee98be70abd85a447201c63fc',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::tinyURL()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a0b32a57129734f844645fe78264195e9',1,'aace::alexa::LocalMediaSource::PlaybackState::tinyURL()']]], - ['tokenrefreshinterval',['tokenRefreshInterval',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#ac1255f0d7e2c0e6a042b26e066bb9653',1,'aace::alexa::ExternalMediaAdapter::SessionState::tokenRefreshInterval()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a10073922619c9deba7c285325c7360a5',1,'aace::alexa::LocalMediaSource::SessionState::tokenRefreshInterval()']]], - ['trackid',['trackId',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#af73ca90a34010c26670249b726af82f3',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::trackId()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a421de2ac72c7b632ececfa0472988c83',1,'aace::alexa::LocalMediaSource::PlaybackState::trackId()']]], - ['trackname',['trackName',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a4bf58240989f3cadeb677e07e7cdb59d',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::trackName()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#aecb7cc6074bd7e23c166ace53b5436c1',1,'aace::alexa::LocalMediaSource::PlaybackState::trackName()']]], - ['tracknumber',['trackNumber',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#ac72282047646042715d88a4fa67287c3',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::trackNumber()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a5a9c2c7c21e3c64901f49d73e1f33197',1,'aace::alexa::LocalMediaSource::PlaybackState::trackNumber()']]], - ['trackoffset',['trackOffset',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a20733d0a377adf547315367bf6efeecf',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::trackOffset()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a03ddbda405c7381c38382f7f21e04635',1,'aace::alexa::LocalMediaSource::PlaybackState::trackOffset()']]], - ['type',['type',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html#a8efae92e933eb314931ca275833cf5c7',1,'aace::alexa::ExternalMediaAdapter::PlaybackState::type()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html#a934dcf2adab877ac18d865ce00b5b9c9',1,'aace::alexa::LocalMediaSource::PlaybackState::type()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_c.html b/docs/docs/doxygen-docs/cpp/search/variables_c.html deleted file mode 100644 index 94bf1a67c..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_c.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_c.js b/docs/docs/doxygen-docs/cpp/search/variables_c.js deleted file mode 100644 index 5e226d85a..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_c.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['username',['userName',['../classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html#a3cdb22dff7dd902f4ce60eb945fc15b8',1,'aace::alexa::ExternalMediaAdapter::SessionState::userName()'],['../classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html#a94c0ace7076a16849d18bf34fb157a2c',1,'aace::alexa::LocalMediaSource::SessionState::userName()']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/search/variables_d.html b/docs/docs/doxygen-docs/cpp/search/variables_d.html deleted file mode 100644 index b9381e99e..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_d.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - -
        -
        Loading...
        -
        - -
        Searching...
        -
        No Matches
        - -
        - - diff --git a/docs/docs/doxygen-docs/cpp/search/variables_d.js b/docs/docs/doxygen-docs/cpp/search/variables_d.js deleted file mode 100644 index 0c8046267..000000000 --- a/docs/docs/doxygen-docs/cpp/search/variables_d.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['validationdata',['validationData',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html#a44eb13f37d92cad2d4d31ab0cda8b42e',1,'aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo']]], - ['validationmethod',['validationMethod',['../classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html#a564feaee70d1dda1b132669fa212b2c8',1,'aace::alexa::ExternalMediaAdapterEngineInterface::DiscoveredPlayerInfo']]] -]; diff --git a/docs/docs/doxygen-docs/cpp/splitbar.png b/docs/docs/doxygen-docs/cpp/splitbar.png deleted file mode 100644 index fe895f2c5..000000000 Binary files a/docs/docs/doxygen-docs/cpp/splitbar.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info-members.html b/docs/docs/doxygen-docs/cpp/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info-members.html deleted file mode 100644 index 4ff1870d1..000000000 --- a/docs/docs/doxygen-docs/cpp/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info-members.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Alexa Auto SDK: Member List - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        -
        -
        aace::alexa::AlexaClient::ConnectionStatusInfo Member List
        -
        -
        - -

        This is the complete list of members for aace::alexa::AlexaClient::ConnectionStatusInfo, including all inherited members.

        - -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info.html b/docs/docs/doxygen-docs/cpp/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info.html deleted file mode 100644 index 882e3ec57..000000000 --- a/docs/docs/doxygen-docs/cpp/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Alexa Auto SDK: aace::alexa::AlexaClient::ConnectionStatusInfo Struct Reference - - - - - - - - - -
        -
        - - - - - - - -
        -
        Alexa Auto SDK -  4.1.0 -
        -
        -
        - - - - - - - - -
        -
        - - -
        - -
        - - -
        -
        - -
        -
        aace::alexa::AlexaClient::ConnectionStatusInfo Struct Reference
        -
        -
        -

        Detailed Description

        -

        The struct containing connection status for a specific connection type.

        -
        - - -
        -

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 - -

        - - diff --git a/docs/docs/doxygen-docs/cpp/sync_off.png b/docs/docs/doxygen-docs/cpp/sync_off.png deleted file mode 100644 index 3b443fc62..000000000 Binary files a/docs/docs/doxygen-docs/cpp/sync_off.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/sync_on.png b/docs/docs/doxygen-docs/cpp/sync_on.png deleted file mode 100644 index e08320fb6..000000000 Binary files a/docs/docs/doxygen-docs/cpp/sync_on.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/tab_a.png b/docs/docs/doxygen-docs/cpp/tab_a.png deleted file mode 100644 index 3b725c41c..000000000 Binary files a/docs/docs/doxygen-docs/cpp/tab_a.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/tab_b.png b/docs/docs/doxygen-docs/cpp/tab_b.png deleted file mode 100644 index e2b4a8638..000000000 Binary files a/docs/docs/doxygen-docs/cpp/tab_b.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/tab_h.png b/docs/docs/doxygen-docs/cpp/tab_h.png deleted file mode 100644 index fd5cb7054..000000000 Binary files a/docs/docs/doxygen-docs/cpp/tab_h.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/tab_s.png b/docs/docs/doxygen-docs/cpp/tab_s.png deleted file mode 100644 index ab478c95b..000000000 Binary files a/docs/docs/doxygen-docs/cpp/tab_s.png and /dev/null differ diff --git a/docs/docs/doxygen-docs/cpp/tabs.css b/docs/docs/doxygen-docs/cpp/tabs.css deleted file mode 100644 index a28614b8e..000000000 --- a/docs/docs/doxygen-docs/cpp/tabs.css +++ /dev/null @@ -1 +0,0 @@ -.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#doc-content{overflow:auto;display:block;padding:0;margin:0;-webkit-overflow-scrolling:touch}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/docs/docs/explore/features/core/index.html b/docs/docs/explore/features/core/index.html index b6c7306ed..ad2120dbb 100644 --- a/docs/docs/explore/features/core/index.html +++ b/docs/docs/explore/features/core/index.html @@ -5350,7 +5350,7 @@

        OverviewUnderstand the Core Auto SDK API.

        +

        Defining core API for your application to access the features of Auto SDK— Core defines the Engine and MessageBroker components. Alongside the Alexa Auto Services Bridge (AASB) messages defined by each Auto SDK module, these components comprise the core API for your application to access the features of Auto SDK. To learn about the API, see Auto SDK Core API Overview.

      • Providing an infrastructure to other modules— Core provides the base infrastructure of the Engine, which each Auto SDK module extends to add module-specific features.

        diff --git a/docs/docs/explore/features/navigation/index.html b/docs/docs/explore/features/navigation/index.html index 47fadb29f..ade6b2a38 100644 --- a/docs/docs/explore/features/navigation/index.html +++ b/docs/docs/explore/features/navigation/index.html @@ -5460,9 +5460,9 @@

        Providing the Current Navigation shapes -Array of arrays -Yes (if state is "NAVIGATING") -The array contains an ordered list of coordinates depicting the route from the source to destination. Each coordinate is a latitude-longitude pair, specified as an array of doubles (in that order). The array can be empty. The maximum number of coordinates is 100.

        Special considerations:
        • The set of coordinates might not represent the complete route.
        • Shapes are provider specific. The shape of a route can correspond to one of these versions: a complete route, a route for a view port, or a route defined for a particular distance.
        • It is recommended to use one mile spacing between each coordinate in the shapes array.
        • The coordinates in the array are ordered in the same direction as the user is driving.
        +Array of double arrays +Yes +The array contains an ordered list of coordinates depicting the route from the source to the destination. The coordinate is a latitude-longitude pair (in that order) specified as an array of doubles. The array can be empty. The maximum number of coordinates is 100.

        Special considerations:
        • The set of coordinates might not represent the complete route.
        • Shapes are provider specific. The shape of a route can correspond to one of these versions: a complete route, a route for a viewport, or a route defined for a certain distance.
        • One mile spacing between each coordinate in the shapes array is recommended.
        • The coordinates in the array are ordered in the same direction as the user is driving.
        waypoints @@ -5494,7 +5494,7 @@

        Providing the Current Navigation estimatedTimeOfArrival Object -No (Applicable only if type is "DESTINATION" or "INTERIM".) +Yes (Applicable only if type is "DESTINATION" or "INTERIM".) Time of arrival at the waypoint, specified in the ISO-8601 time format. @@ -5679,12 +5679,12 @@

        Examples of Navigation State Paylo ], "shapes": [ [ - "37.380946", - "-121.9794846" + 37.380946, + -121.9794846 ], [ - "37.380545", - "-122.073252" + 37.380545, + -122.073252 ], ... ] @@ -6285,7 +6285,7 @@

        C++ MessageBroker IntegrationAndroid Integration

        -

        The Alexa Auto Client Service (AACS) provides the Navigation App Component to integrate the Auto SDK Navigation module on Android. See the AACS Navigation App Component documentation for more information.

        +

        The Alexa Auto Client Service (AACS) provides the Navigation App Component to integrate the Auto SDK Navigation module on Android. See the AACS Navigation App Component documentation for more information.

        diff --git a/docs/docs/native/api/classes/_a_p_l_8h_source.html b/docs/docs/native/api/classes/_a_p_l_8h_source.html index b5f54db7e..eca9649ad 100644 --- a/docs/docs/native/api/classes/_a_p_l_8h_source.html +++ b/docs/docs/native/api/classes/_a_p_l_8h_source.html @@ -23,7 +23,7 @@ Logo
        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -95,7 +95,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_a_p_l_configuration_8h_source.html b/docs/docs/native/api/classes/_a_p_l_configuration_8h_source.html index ad99bfa8d..3ca34c011 100644 --- a/docs/docs/native/api/classes/_a_p_l_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_a_p_l_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_a_p_l_engine_interface_8h_source.html b/docs/docs/native/api/classes/_a_p_l_engine_interface_8h_source.html index c708dfa1b..f99647a02 100644 --- a/docs/docs/native/api/classes/_a_p_l_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_a_p_l_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_address_book_8h_source.html b/docs/docs/native/api/classes/_address_book_8h_source.html index 0cca7522c..a3dd06b88 100644 --- a/docs/docs/native/api/classes/_address_book_8h_source.html +++ b/docs/docs/native/api/classes/_address_book_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_address_book_configuration_8h_source.html b/docs/docs/native/api/classes/_address_book_configuration_8h_source.html index 2b27d81b5..98f83a655 100644 --- a/docs/docs/native/api/classes/_address_book_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_address_book_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_address_book_engine_interface_8h_source.html b/docs/docs/native/api/classes/_address_book_engine_interface_8h_source.html index 77d090e0d..9b2cb8f00 100644 --- a/docs/docs/native/api/classes/_address_book_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_address_book_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_alerts_8h_source.html b/docs/docs/native/api/classes/_alerts_8h_source.html index 63a67377c..21f9b6def 100644 --- a/docs/docs/native/api/classes/_alerts_8h_source.html +++ b/docs/docs/native/api/classes/_alerts_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -93,7 +93,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_alexa_client_8h_source.html b/docs/docs/native/api/classes/_alexa_client_8h_source.html index e3520bdf3..6a0101bce 100644 --- a/docs/docs/native/api/classes/_alexa_client_8h_source.html +++ b/docs/docs/native/api/classes/_alexa_client_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -114,7 +114,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_alexa_configuration_8h_source.html b/docs/docs/native/api/classes/_alexa_configuration_8h_source.html index e638636d6..6f9cef26c 100644 --- a/docs/docs/native/api/classes/_alexa_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_alexa_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -100,7 +100,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_alexa_connectivity_8h_source.html b/docs/docs/native/api/classes/_alexa_connectivity_8h_source.html index 069a1ac6f..d60cf9edb 100644 --- a/docs/docs/native/api/classes/_alexa_connectivity_8h_source.html +++ b/docs/docs/native/api/classes/_alexa_connectivity_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_alexa_connectivity_engine_interface_8h_source.html b/docs/docs/native/api/classes/_alexa_connectivity_engine_interface_8h_source.html index 4fc534f4e..719a0d6ee 100644 --- a/docs/docs/native/api/classes/_alexa_connectivity_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_alexa_connectivity_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_alexa_engine_interfaces_8h_source.html b/docs/docs/native/api/classes/_alexa_engine_interfaces_8h_source.html index f87ba70fd..bf5380eb3 100644 --- a/docs/docs/native/api/classes/_alexa_engine_interfaces_8h_source.html +++ b/docs/docs/native/api/classes/_alexa_engine_interfaces_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -145,7 +145,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_alexa_properties_8h_source.html b/docs/docs/native/api/classes/_alexa_properties_8h_source.html index a33fb5d64..cc1f2bf72 100644 --- a/docs/docs/native/api/classes/_alexa_properties_8h_source.html +++ b/docs/docs/native/api/classes/_alexa_properties_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_alexa_speaker_8h_source.html b/docs/docs/native/api/classes/_alexa_speaker_8h_source.html index 46b929850..3b3d0fb42 100644 --- a/docs/docs/native/api/classes/_alexa_speaker_8h_source.html +++ b/docs/docs/native/api/classes/_alexa_speaker_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_audio_engine_interfaces_8h_source.html b/docs/docs/native/api/classes/_audio_engine_interfaces_8h_source.html index 39eecf296..2ac25d57f 100644 --- a/docs/docs/native/api/classes/_audio_engine_interfaces_8h_source.html +++ b/docs/docs/native/api/classes/_audio_engine_interfaces_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_audio_format_8h_source.html b/docs/docs/native/api/classes/_audio_format_8h_source.html index cc1033355..0becc5e24 100644 --- a/docs/docs/native/api/classes/_audio_format_8h_source.html +++ b/docs/docs/native/api/classes/_audio_format_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_audio_input_8h_source.html b/docs/docs/native/api/classes/_audio_input_8h_source.html index 052cbfc29..dae0dd9b8 100644 --- a/docs/docs/native/api/classes/_audio_input_8h_source.html +++ b/docs/docs/native/api/classes/_audio_input_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_audio_input_provider_8h_source.html b/docs/docs/native/api/classes/_audio_input_provider_8h_source.html index daa9f1990..ac948e247 100644 --- a/docs/docs/native/api/classes/_audio_input_provider_8h_source.html +++ b/docs/docs/native/api/classes/_audio_input_provider_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_audio_output_8h_source.html b/docs/docs/native/api/classes/_audio_output_8h_source.html index a1ca75fe2..d9492002d 100644 --- a/docs/docs/native/api/classes/_audio_output_8h_source.html +++ b/docs/docs/native/api/classes/_audio_output_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -96,7 +96,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_audio_output_provider_8h_source.html b/docs/docs/native/api/classes/_audio_output_provider_8h_source.html index 64efebea4..00dbbf48f 100644 --- a/docs/docs/native/api/classes/_audio_output_provider_8h_source.html +++ b/docs/docs/native/api/classes/_audio_output_provider_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_audio_player_8h_source.html b/docs/docs/native/api/classes/_audio_player_8h_source.html index ddb0ed891..341a8382e 100644 --- a/docs/docs/native/api/classes/_audio_player_8h_source.html +++ b/docs/docs/native/api/classes/_audio_player_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_audio_stream_8h_source.html b/docs/docs/native/api/classes/_audio_stream_8h_source.html index 5fa157b4f..18658f87f 100644 --- a/docs/docs/native/api/classes/_audio_stream_8h_source.html +++ b/docs/docs/native/api/classes/_audio_stream_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_auth_provider_8h_source.html b/docs/docs/native/api/classes/_auth_provider_8h_source.html index 58ef01b79..959d9c775 100644 --- a/docs/docs/native/api/classes/_auth_provider_8h_source.html +++ b/docs/docs/native/api/classes/_auth_provider_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_authorization_8h_source.html b/docs/docs/native/api/classes/_authorization_8h_source.html index 240feb5e4..b0e4e21a6 100644 --- a/docs/docs/native/api/classes/_authorization_8h_source.html +++ b/docs/docs/native/api/classes/_authorization_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -87,7 +87,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_authorization_engine_interface_8h_source.html b/docs/docs/native/api/classes/_authorization_engine_interface_8h_source.html index a9cbcf770..49ac5e7ce 100644 --- a/docs/docs/native/api/classes/_authorization_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_authorization_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -83,7 +83,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_bluetooth_engine_interfaces_8h_source.html b/docs/docs/native/api/classes/_bluetooth_engine_interfaces_8h_source.html index 68f43fde6..5c5dfb1d5 100644 --- a/docs/docs/native/api/classes/_bluetooth_engine_interfaces_8h_source.html +++ b/docs/docs/native/api/classes/_bluetooth_engine_interfaces_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_bluetooth_provider_8h_source.html b/docs/docs/native/api/classes/_bluetooth_provider_8h_source.html index 22a73b78e..c92b61d95 100644 --- a/docs/docs/native/api/classes/_bluetooth_provider_8h_source.html +++ b/docs/docs/native/api/classes/_bluetooth_provider_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_bluetooth_server_socket_8h_source.html b/docs/docs/native/api/classes/_bluetooth_server_socket_8h_source.html index d30fa72ab..aa64f67fd 100644 --- a/docs/docs/native/api/classes/_bluetooth_server_socket_8h_source.html +++ b/docs/docs/native/api/classes/_bluetooth_server_socket_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_bluetooth_socket_8h_source.html b/docs/docs/native/api/classes/_bluetooth_socket_8h_source.html index 017ad7ddd..edcc440b9 100644 --- a/docs/docs/native/api/classes/_bluetooth_socket_8h_source.html +++ b/docs/docs/native/api/classes/_bluetooth_socket_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_byte_array_8h_source.html b/docs/docs/native/api/classes/_byte_array_8h_source.html index b8c94c18e..f0411df54 100644 --- a/docs/docs/native/api/classes/_byte_array_8h_source.html +++ b/docs/docs/native/api/classes/_byte_array_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_c_b_l_8h_source.html b/docs/docs/native/api/classes/_c_b_l_8h_source.html index 7ad230857..115b54e80 100644 --- a/docs/docs/native/api/classes/_c_b_l_8h_source.html +++ b/docs/docs/native/api/classes/_c_b_l_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -98,7 +98,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_c_b_l_configuration_8h_source.html b/docs/docs/native/api/classes/_c_b_l_configuration_8h_source.html index 97287b03c..d2c112e47 100644 --- a/docs/docs/native/api/classes/_c_b_l_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_c_b_l_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_c_b_l_engine_interface_8h_source.html b/docs/docs/native/api/classes/_c_b_l_engine_interface_8h_source.html index ed65215f2..c650326cd 100644 --- a/docs/docs/native/api/classes/_c_b_l_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_c_b_l_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_car_control_8h_source.html b/docs/docs/native/api/classes/_car_control_8h_source.html index de276a0e4..08643412b 100644 --- a/docs/docs/native/api/classes/_car_control_8h_source.html +++ b/docs/docs/native/api/classes/_car_control_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -90,7 +90,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_car_control_assets_8h_source.html b/docs/docs/native/api/classes/_car_control_assets_8h_source.html index c25202770..8375879bc 100644 --- a/docs/docs/native/api/classes/_car_control_assets_8h_source.html +++ b/docs/docs/native/api/classes/_car_control_assets_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_car_control_configuration_8h_source.html b/docs/docs/native/api/classes/_car_control_configuration_8h_source.html index cdd78ea8b..de6afb639 100644 --- a/docs/docs/native/api/classes/_car_control_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_car_control_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_core_properties_8h_source.html b/docs/docs/native/api/classes/_core_properties_8h_source.html index d40f927c2..86672e4fb 100644 --- a/docs/docs/native/api/classes/_core_properties_8h_source.html +++ b/docs/docs/native/api/classes/_core_properties_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_custom_domain_8h_source.html b/docs/docs/native/api/classes/_custom_domain_8h_source.html index 4de0777b6..fbbb9b36a 100644 --- a/docs/docs/native/api/classes/_custom_domain_8h_source.html +++ b/docs/docs/native/api/classes/_custom_domain_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -75,7 +75,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_custom_domain_engine_interface_8h_source.html b/docs/docs/native/api/classes/_custom_domain_engine_interface_8h_source.html index 815f0d2f2..acfbf856f 100644 --- a/docs/docs/native/api/classes/_custom_domain_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_custom_domain_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_device_setup_8h_source.html b/docs/docs/native/api/classes/_device_setup_8h_source.html index 11a7488fd..ea3926292 100644 --- a/docs/docs/native/api/classes/_device_setup_8h_source.html +++ b/docs/docs/native/api/classes/_device_setup_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_device_usage_8h_source.html b/docs/docs/native/api/classes/_device_usage_8h_source.html index d6fa87769..7098c26e1 100644 --- a/docs/docs/native/api/classes/_device_usage_8h_source.html +++ b/docs/docs/native/api/classes/_device_usage_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_device_usage_engine_interfaces_8h_source.html b/docs/docs/native/api/classes/_device_usage_engine_interfaces_8h_source.html index f436abed6..bc7755311 100644 --- a/docs/docs/native/api/classes/_device_usage_engine_interfaces_8h_source.html +++ b/docs/docs/native/api/classes/_device_usage_engine_interfaces_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -75,7 +75,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_do_not_disturb_8h_source.html b/docs/docs/native/api/classes/_do_not_disturb_8h_source.html index 370004a2f..f993301e4 100644 --- a/docs/docs/native/api/classes/_do_not_disturb_8h_source.html +++ b/docs/docs/native/api/classes/_do_not_disturb_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_engine_8h_source.html b/docs/docs/native/api/classes/_engine_8h_source.html index bd454e213..aad695f19 100644 --- a/docs/docs/native/api/classes/_engine_8h_source.html +++ b/docs/docs/native/api/classes/_engine_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_engine_configuration_8h_source.html b/docs/docs/native/api/classes/_engine_configuration_8h_source.html index 14f1380bb..6abb54b93 100644 --- a/docs/docs/native/api/classes/_engine_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_engine_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_equalizer_controller_8h_source.html b/docs/docs/native/api/classes/_equalizer_controller_8h_source.html index 34b4640a1..7aa418c0e 100644 --- a/docs/docs/native/api/classes/_equalizer_controller_8h_source.html +++ b/docs/docs/native/api/classes/_equalizer_controller_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -84,7 +84,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_external_media_adapter_8h_source.html b/docs/docs/native/api/classes/_external_media_adapter_8h_source.html index 593fb6445..c142a9dae 100644 --- a/docs/docs/native/api/classes/_external_media_adapter_8h_source.html +++ b/docs/docs/native/api/classes/_external_media_adapter_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -190,7 +190,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_feature_discovery_8h_source.html b/docs/docs/native/api/classes/_feature_discovery_8h_source.html index 8bbab473c..b99fbb5af 100644 --- a/docs/docs/native/api/classes/_feature_discovery_8h_source.html +++ b/docs/docs/native/api/classes/_feature_discovery_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -75,7 +75,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_focus_state_8h_source.html b/docs/docs/native/api/classes/_focus_state_8h_source.html index 178781959..e6667ae5f 100644 --- a/docs/docs/native/api/classes/_focus_state_8h_source.html +++ b/docs/docs/native/api/classes/_focus_state_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_g_a_t_t_server_8h_source.html b/docs/docs/native/api/classes/_g_a_t_t_server_8h_source.html index 325d7444c..cc288db44 100644 --- a/docs/docs/native/api/classes/_g_a_t_t_server_8h_source.html +++ b/docs/docs/native/api/classes/_g_a_t_t_server_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_global_preset_8h_source.html b/docs/docs/native/api/classes/_global_preset_8h_source.html index 31c896fe9..21101b37f 100644 --- a/docs/docs/native/api/classes/_global_preset_8h_source.html +++ b/docs/docs/native/api/classes/_global_preset_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_local_media_source_8h_source.html b/docs/docs/native/api/classes/_local_media_source_8h_source.html index 2cda356a5..4dd94b845 100644 --- a/docs/docs/native/api/classes/_local_media_source_8h_source.html +++ b/docs/docs/native/api/classes/_local_media_source_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -146,7 +146,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_location_8h_source.html b/docs/docs/native/api/classes/_location_8h_source.html index b010977ce..89d236719 100644 --- a/docs/docs/native/api/classes/_location_8h_source.html +++ b/docs/docs/native/api/classes/_location_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -83,7 +83,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_location_provider_8h_source.html b/docs/docs/native/api/classes/_location_provider_8h_source.html index 32952f829..ed4b73455 100644 --- a/docs/docs/native/api/classes/_location_provider_8h_source.html +++ b/docs/docs/native/api/classes/_location_provider_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_location_provider_engine_interface_8h_source.html b/docs/docs/native/api/classes/_location_provider_engine_interface_8h_source.html index 5ffb8a675..2fd0860ec 100644 --- a/docs/docs/native/api/classes/_location_provider_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_location_provider_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_logger_8h_source.html b/docs/docs/native/api/classes/_logger_8h_source.html index 52d459a92..72dc98592 100644 --- a/docs/docs/native/api/classes/_logger_8h_source.html +++ b/docs/docs/native/api/classes/_logger_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_logger_configuration_8h_source.html b/docs/docs/native/api/classes/_logger_configuration_8h_source.html index 4b5f089df..54d2f496b 100644 --- a/docs/docs/native/api/classes/_logger_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_logger_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_logger_engine_interfaces_8h_source.html b/docs/docs/native/api/classes/_logger_engine_interfaces_8h_source.html index 967be469b..85962a96d 100644 --- a/docs/docs/native/api/classes/_logger_engine_interfaces_8h_source.html +++ b/docs/docs/native/api/classes/_logger_engine_interfaces_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_media_playback_requestor_8h_source.html b/docs/docs/native/api/classes/_media_playback_requestor_8h_source.html index f8a219c87..622d8b915 100644 --- a/docs/docs/native/api/classes/_media_playback_requestor_8h_source.html +++ b/docs/docs/native/api/classes/_media_playback_requestor_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -86,7 +86,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_message_broker_8h_source.html b/docs/docs/native/api/classes/_message_broker_8h_source.html index 25e5134a6..5cf356422 100644 --- a/docs/docs/native/api/classes/_message_broker_8h_source.html +++ b/docs/docs/native/api/classes/_message_broker_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_message_stream_8h_source.html b/docs/docs/native/api/classes/_message_stream_8h_source.html index 12efd6493..ae33d7f8d 100644 --- a/docs/docs/native/api/classes/_message_stream_8h_source.html +++ b/docs/docs/native/api/classes/_message_stream_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_message_utils_8h_source.html b/docs/docs/native/api/classes/_message_utils_8h_source.html index 79dad8e62..6b52f3b28 100644 --- a/docs/docs/native/api/classes/_message_utils_8h_source.html +++ b/docs/docs/native/api/classes/_message_utils_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_messaging_8h_source.html b/docs/docs/native/api/classes/_messaging_8h_source.html index ac2adc120..f2ee25f9c 100644 --- a/docs/docs/native/api/classes/_messaging_8h_source.html +++ b/docs/docs/native/api/classes/_messaging_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -85,7 +85,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_messaging_engine_interface_8h_source.html b/docs/docs/native/api/classes/_messaging_engine_interface_8h_source.html index 2134a9028..3203cfc1e 100644 --- a/docs/docs/native/api/classes/_messaging_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_messaging_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_metrics_uploader_8h_source.html b/docs/docs/native/api/classes/_metrics_uploader_8h_source.html index d5b1a1cd8..0a5908935 100644 --- a/docs/docs/native/api/classes/_metrics_uploader_8h_source.html +++ b/docs/docs/native/api/classes/_metrics_uploader_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_navigation_8h_source.html b/docs/docs/native/api/classes/_navigation_8h_source.html index b099b6239..9f8dfefba 100644 --- a/docs/docs/native/api/classes/_navigation_8h_source.html +++ b/docs/docs/native/api/classes/_navigation_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -101,7 +101,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_navigation_configuration_8h_source.html b/docs/docs/native/api/classes/_navigation_configuration_8h_source.html index fbd35b029..e674b7bcf 100644 --- a/docs/docs/native/api/classes/_navigation_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_navigation_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_navigation_engine_interfaces_8h_source.html b/docs/docs/native/api/classes/_navigation_engine_interfaces_8h_source.html index 4749d175a..42c37cf18 100644 --- a/docs/docs/native/api/classes/_navigation_engine_interfaces_8h_source.html +++ b/docs/docs/native/api/classes/_navigation_engine_interfaces_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_network_engine_interfaces_8h_source.html b/docs/docs/native/api/classes/_network_engine_interfaces_8h_source.html index 164a87297..4dcb6dae9 100644 --- a/docs/docs/native/api/classes/_network_engine_interfaces_8h_source.html +++ b/docs/docs/native/api/classes/_network_engine_interfaces_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_network_info_provider_8h_source.html b/docs/docs/native/api/classes/_network_info_provider_8h_source.html index 792a52fb3..71d2b1be2 100644 --- a/docs/docs/native/api/classes/_network_info_provider_8h_source.html +++ b/docs/docs/native/api/classes/_network_info_provider_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_network_properties_8h_source.html b/docs/docs/native/api/classes/_network_properties_8h_source.html index c88d53a89..1c0032487 100644 --- a/docs/docs/native/api/classes/_network_properties_8h_source.html +++ b/docs/docs/native/api/classes/_network_properties_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_notifications_8h_source.html b/docs/docs/native/api/classes/_notifications_8h_source.html index f9c7a17af..a27e1945e 100644 --- a/docs/docs/native/api/classes/_notifications_8h_source.html +++ b/docs/docs/native/api/classes/_notifications_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_phone_call_controller_8h_source.html b/docs/docs/native/api/classes/_phone_call_controller_8h_source.html index 1331d61d4..aa3d64fe9 100644 --- a/docs/docs/native/api/classes/_phone_call_controller_8h_source.html +++ b/docs/docs/native/api/classes/_phone_call_controller_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -109,7 +109,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_phone_call_controller_engine_interfaces_8h_source.html b/docs/docs/native/api/classes/_phone_call_controller_engine_interfaces_8h_source.html index 0773753e3..9f60f38f4 100644 --- a/docs/docs/native/api/classes/_phone_call_controller_engine_interfaces_8h_source.html +++ b/docs/docs/native/api/classes/_phone_call_controller_engine_interfaces_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -83,7 +83,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_platform_interface_8h_source.html b/docs/docs/native/api/classes/_platform_interface_8h_source.html index a352f3443..0f9e4131a 100644 --- a/docs/docs/native/api/classes/_platform_interface_8h_source.html +++ b/docs/docs/native/api/classes/_platform_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -75,7 +75,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_playback_controller_8h_source.html b/docs/docs/native/api/classes/_playback_controller_8h_source.html index 058ee1874..2843e3471 100644 --- a/docs/docs/native/api/classes/_playback_controller_8h_source.html +++ b/docs/docs/native/api/classes/_playback_controller_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_player_activity_8h_source.html b/docs/docs/native/api/classes/_player_activity_8h_source.html index 16d366269..d7a41657b 100644 --- a/docs/docs/native/api/classes/_player_activity_8h_source.html +++ b/docs/docs/native/api/classes/_player_activity_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_property_manager_8h_source.html b/docs/docs/native/api/classes/_property_manager_8h_source.html index 3ad0648de..3c2c61b56 100644 --- a/docs/docs/native/api/classes/_property_manager_8h_source.html +++ b/docs/docs/native/api/classes/_property_manager_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_property_manager_engine_interface_8h_source.html b/docs/docs/native/api/classes/_property_manager_engine_interface_8h_source.html index 1943d5f5e..83172f151 100644 --- a/docs/docs/native/api/classes/_property_manager_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_property_manager_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_speech_recognizer_8h_source.html b/docs/docs/native/api/classes/_speech_recognizer_8h_source.html index f64813ccf..4f679ce85 100644 --- a/docs/docs/native/api/classes/_speech_recognizer_8h_source.html +++ b/docs/docs/native/api/classes/_speech_recognizer_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -83,7 +83,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_speech_synthesizer_8h_source.html b/docs/docs/native/api/classes/_speech_synthesizer_8h_source.html index a8671e88e..ca1b063a8 100644 --- a/docs/docs/native/api/classes/_speech_synthesizer_8h_source.html +++ b/docs/docs/native/api/classes/_speech_synthesizer_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_storage_configuration_8h_source.html b/docs/docs/native/api/classes/_storage_configuration_8h_source.html index 19925167e..e179a9dff 100644 --- a/docs/docs/native/api/classes/_storage_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_storage_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_template_runtime_8h_source.html b/docs/docs/native/api/classes/_template_runtime_8h_source.html index 5c1e81e20..f2e11eefa 100644 --- a/docs/docs/native/api/classes/_template_runtime_8h_source.html +++ b/docs/docs/native/api/classes/_template_runtime_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -83,7 +83,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_text_to_speech_8h_source.html b/docs/docs/native/api/classes/_text_to_speech_8h_source.html index be7f12ab8..38bed56cd 100644 --- a/docs/docs/native/api/classes/_text_to_speech_8h_source.html +++ b/docs/docs/native/api/classes/_text_to_speech_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_text_to_speech_engine_interface_8h_source.html b/docs/docs/native/api/classes/_text_to_speech_engine_interface_8h_source.html index 211293d1f..817a6e2e4 100644 --- a/docs/docs/native/api/classes/_text_to_speech_engine_interface_8h_source.html +++ b/docs/docs/native/api/classes/_text_to_speech_engine_interface_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_vehicle_configuration_8h_source.html b/docs/docs/native/api/classes/_vehicle_configuration_8h_source.html index 08586dfe9..803ecbb9c 100644 --- a/docs/docs/native/api/classes/_vehicle_configuration_8h_source.html +++ b/docs/docs/native/api/classes/_vehicle_configuration_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -92,7 +92,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/_vehicle_properties_8h_source.html b/docs/docs/native/api/classes/_vehicle_properties_8h_source.html index 886ac2916..3f015817e 100644 --- a/docs/docs/native/api/classes/_vehicle_properties_8h_source.html +++ b/docs/docs/native/api/classes/_vehicle_properties_8h_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -74,7 +74,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/annotated.html b/docs/docs/native/api/classes/annotated.html index 4c2338bc6..1ea55cb6a 100644 --- a/docs/docs/native/api/classes/annotated.html +++ b/docs/docs/native/api/classes/annotated.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -192,7 +192,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book-members.html b/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book-members.html index 72db9ef60..aa3c68efa 100644 --- a/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book-members.html +++ b/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book.html b/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book.html index 98f36157d..42fed97ed 100644 --- a/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book.html +++ b/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -211,7 +211,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory-members.html b/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory-members.html index b16b6488f..7b62f86e7 100644 --- a/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory-members.html +++ b/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html b/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html index 5a9e8256a..cf40f307c 100644 --- a/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html +++ b/docs/docs/native/api/classes/classaace_1_1address_book_1_1_address_book_1_1_i_address_book_entries_factory.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -517,7 +517,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1address_book_1_1config_1_1_address_book_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1address_book_1_1config_1_1_address_book_configuration-members.html index 928e78dd6..1b33d3853 100644 --- a/docs/docs/native/api/classes/classaace_1_1address_book_1_1config_1_1_address_book_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1address_book_1_1config_1_1_address_book_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1address_book_1_1config_1_1_address_book_configuration.html b/docs/docs/native/api/classes/classaace_1_1address_book_1_1config_1_1_address_book_configuration.html index aa32794e7..5f8c53a1d 100644 --- a/docs/docs/native/api/classes/classaace_1_1address_book_1_1config_1_1_address_book_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1address_book_1_1config_1_1_address_book_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -118,7 +118,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts-members.html index 471411831..ce89d0cfc 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts.html index ea9a6dea7..99c8493ac 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -338,7 +338,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts_engine_interface-members.html index 2bc459df4..fc0c317bb 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts_engine_interface.html index 88ce0b05d..3f033d007 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alerts_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client-members.html index 55076a886..0f05a65e1 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -85,7 +85,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client.html index b46a96e13..25649579f 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -517,7 +517,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client_engine_interface-members.html index 5f8a89025..af332d187 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client_engine_interface.html index 50ca214b5..5e7ac858d 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_client_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker-members.html index d1f305354..2fbd57089 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker.html index 0782c7b2f..66e9accc8 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -260,7 +260,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker_engine_interface-members.html index 91ac825e0..fa528527f 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html index e16770ce9..3873001ab 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_alexa_speaker_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -119,7 +119,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player-members.html index 199022277..d9274eb01 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player.html index 790361e19..bd8c915ce 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -221,7 +221,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player_engine_interface-members.html index fd6b2cc75..265d26566 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player_engine_interface.html index 4abdc258d..a9b234e13 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_audio_player_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -141,7 +141,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider-members.html index 90c08d721..ca74d6fa8 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider.html index 4437a9b95..2a95609e0 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -261,7 +261,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider_engine_interface-members.html index 1f0354b0e..efa30d8dd 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider_engine_interface.html index cef1dc466..b2fefd927 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_auth_provider_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -211,7 +211,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup-members.html index 3cfee657e..58427f3b5 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup.html index fa66a5f1c..a9e15ec42 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -178,7 +178,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup_engine_interface-members.html index 5adfbb5bf..4fded1254 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup_engine_interface.html index a94ffe9a2..cd365e2de 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_device_setup_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb-members.html index 3005d477e..bec46a946 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb.html index 5eca57493..c1e8121a5 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -148,7 +148,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb_engine_interface-members.html index a7aef382a..be61a9a60 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb_engine_interface.html index 6f9fc4664..21bc81d2d 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_do_not_disturb_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller-members.html index f2e29cc58..58074d6ae 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -83,7 +83,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller.html index 9b60c00a5..a1ab80ade 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -280,7 +280,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller_engine_interface-members.html index eefd1c3e6..63ef23a57 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html index 3ad10d157..c66ffb044 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_equalizer_controller_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -141,7 +141,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter-members.html index 26a51ac0c..21e8635cb 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -100,7 +100,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter.html index 8fdfeecf4..27628f470 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -1258,7 +1258,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info-members.html index 558692b8c..5c8be84e7 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html index df597bcdf..5889c0f9b 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_authorized_player_info.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -94,7 +94,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state-members.html index 33c1be478..f5f0b7768 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html index 2de2ed031..97c59a0d6 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_external_media_adapter_state.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -98,7 +98,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state-members.html index 25d93a3ec..202fdaa82 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -101,7 +101,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html index 424bf8b99..ecd93815c 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_playback_state.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -265,7 +265,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state-members.html index 5b677db41..b993c4343 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -87,7 +87,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html index c44beaea1..bfd871d76 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_1_1_session_state.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -174,7 +174,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface-members.html index 401b82107..cefb5174c 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface.html index f1aaa8510..3c1792489 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -84,7 +84,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info-members.html index 823ae30f9..fda76d837 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html index a1ef7c386..dc3ef65b6 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_external_media_adapter_engine_interface_1_1_discovered_player_info.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -133,7 +133,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_feature_discovery_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_feature_discovery_engine_interface-members.html index f49770376..12a9d1a05 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_feature_discovery_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_feature_discovery_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_feature_discovery_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_feature_discovery_engine_interface.html index 7e1f63c00..e69a0f893 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_feature_discovery_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_feature_discovery_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_global_preset-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_global_preset-members.html index d22cb5f0c..72076079a 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_global_preset-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_global_preset-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_global_preset.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_global_preset.html index e66b8e2ba..d32efe4a0 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_global_preset.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_global_preset.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -119,7 +119,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source-members.html index e79f87d19..203770710 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -91,7 +91,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source.html index 53959ab41..7c7ca9c66 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -682,7 +682,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state-members.html index 98a8e8f6e..b02c3911d 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html index 9914f92ef..da7087e4d 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_local_media_source_state.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -98,7 +98,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state-members.html index 4cf37bdba..8c090e898 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -101,7 +101,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html index ac76f91be..5a2a83acf 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_playback_state.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -265,7 +265,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_session_state-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_session_state-members.html index 8169952e1..9a0429177 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_session_state-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_session_state-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -86,7 +86,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html index d945b84cc..116eca7ea 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_1_1_session_state.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -149,7 +149,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_engine_interface-members.html index 600ea523d..8b0faa88b 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_engine_interface.html index 86220a372..c4e4f6196 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_local_media_source_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor-members.html index 11b6118cb..c7b62b4ec 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor.html index c749225ae..531cb45b9 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -150,7 +150,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface-members.html index a96e9912d..9ac0eb703 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html index f5bf787e5..08ce9edec 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_media_playback_requestor_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -164,7 +164,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_notifications-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_notifications-members.html index 77630fdd4..c9b3b519c 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_notifications-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_notifications-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_notifications.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_notifications.html index 855991467..cb42ac406 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_notifications.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_notifications.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -196,7 +196,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller-members.html index 52cb6e29c..582aee0ec 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller.html index 3e931519b..7d9069711 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -189,7 +189,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller_engine_interface-members.html index b6681d9be..86e193780 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller_engine_interface.html index 4e8be7734..84ab20ece 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_playback_controller_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -183,7 +183,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer-members.html index 7aec9bb8d..e59066d10 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -83,7 +83,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer.html index 87e1a6f83..9ba5880f9 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -297,7 +297,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer_engine_interface-members.html index 91ee6da69..9c7b1533c 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html index 758fc4ff6..b319d972f 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_recognizer_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -123,7 +123,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_synthesizer-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_synthesizer-members.html index 2a9e75e56..ca300ff0d 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_synthesizer-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_synthesizer-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_synthesizer.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_synthesizer.html index 83babe102..e4c332c20 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_synthesizer.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_speech_synthesizer.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime-members.html index d1d637ba1..3e631be8d 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime.html index 584864c22..741aee39d 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -295,7 +295,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime_engine_interface-members.html index 9e8f5e51f..e3e6a25bf 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime_engine_interface.html index d12d54612..82667e00e 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1_template_runtime_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -111,7 +111,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1config_1_1_alexa_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1config_1_1_alexa_configuration-members.html index 7ddb18e35..16224b91d 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1config_1_1_alexa_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1config_1_1_alexa_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -97,7 +97,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1alexa_1_1config_1_1_alexa_configuration.html b/docs/docs/native/api/classes/classaace_1_1alexa_1_1config_1_1_alexa_configuration.html index 6b0f0267a..fe37b5f78 100644 --- a/docs/docs/native/api/classes/classaace_1_1alexa_1_1config_1_1_alexa_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1alexa_1_1config_1_1_alexa_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -916,7 +916,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1apl_1_1_a_p_l-members.html b/docs/docs/native/api/classes/classaace_1_1apl_1_1_a_p_l-members.html index 887db968f..1027a9c5e 100644 --- a/docs/docs/native/api/classes/classaace_1_1apl_1_1_a_p_l-members.html +++ b/docs/docs/native/api/classes/classaace_1_1apl_1_1_a_p_l-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -95,7 +95,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1apl_1_1_a_p_l.html b/docs/docs/native/api/classes/classaace_1_1apl_1_1_a_p_l.html index 39ad32d05..b3dd6e1cc 100644 --- a/docs/docs/native/api/classes/classaace_1_1apl_1_1_a_p_l.html +++ b/docs/docs/native/api/classes/classaace_1_1apl_1_1_a_p_l.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -780,7 +780,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html index d0e89e860..30d19322a 100644 --- a/docs/docs/native/api/classes/classaace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1apl_1_1config_1_1_a_p_l_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html b/docs/docs/native/api/classes/classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html index b98623963..0dbfdfd15 100644 --- a/docs/docs/native/api/classes/classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1apl_1_1config_1_1_a_p_l_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -173,7 +173,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_input_provider-members.html b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_input_provider-members.html index 656a3ce48..39716dad5 100644 --- a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_input_provider-members.html +++ b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_input_provider-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_input_provider.html b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_input_provider.html index a2cb77a4d..d3541d83c 100644 --- a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_input_provider.html +++ b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_input_provider.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output-members.html b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output-members.html index 98d2849d4..6914424c0 100644 --- a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output-members.html +++ b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -99,7 +99,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output.html b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output.html index e3210106e..cd8390daa 100644 --- a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output.html +++ b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -791,7 +791,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output_provider-members.html b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output_provider-members.html index c4067e9ea..693ecad99 100644 --- a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output_provider-members.html +++ b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output_provider-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output_provider.html b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output_provider.html index 96bb4c103..d95852116 100644 --- a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output_provider.html +++ b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_output_provider.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_stream_property-members.html b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_stream_property-members.html index b44dcaf63..fd0fd56bb 100644 --- a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_stream_property-members.html +++ b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_stream_property-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_stream_property.html b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_stream_property.html index a770a81b8..a7191fd16 100644 --- a/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_stream_property.html +++ b/docs/docs/native/api/classes/classaace_1_1audio_1_1_audio_stream_property.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -256,7 +256,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization-members.html b/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization-members.html index 8b5cfeeeb..6a957fc31 100644 --- a/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization-members.html +++ b/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -87,7 +87,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization.html b/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization.html index 391560353..d122d1b05 100644 --- a/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization.html +++ b/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -498,7 +498,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization_engine_interface-members.html index 281112ddf..7f2fa7d95 100644 --- a/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization_engine_interface.html index 14ed1f25d..cb7ec54c8 100644 --- a/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1authorization_1_1_authorization_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -292,7 +292,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1bluetooth_1_1_bluetooth_provider-members.html b/docs/docs/native/api/classes/classaace_1_1bluetooth_1_1_bluetooth_provider-members.html index 242ddd9f2..82b78e612 100644 --- a/docs/docs/native/api/classes/classaace_1_1bluetooth_1_1_bluetooth_provider-members.html +++ b/docs/docs/native/api/classes/classaace_1_1bluetooth_1_1_bluetooth_provider-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1bluetooth_1_1_bluetooth_provider.html b/docs/docs/native/api/classes/classaace_1_1bluetooth_1_1_bluetooth_provider.html index d06b61223..9057f1014 100644 --- a/docs/docs/native/api/classes/classaace_1_1bluetooth_1_1_bluetooth_provider.html +++ b/docs/docs/native/api/classes/classaace_1_1bluetooth_1_1_bluetooth_provider.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -195,7 +195,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1car_control_1_1_car_control-members.html b/docs/docs/native/api/classes/classaace_1_1car_control_1_1_car_control-members.html index d005fd442..e73cbd395 100644 --- a/docs/docs/native/api/classes/classaace_1_1car_control_1_1_car_control-members.html +++ b/docs/docs/native/api/classes/classaace_1_1car_control_1_1_car_control-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -90,7 +90,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1car_control_1_1_car_control.html b/docs/docs/native/api/classes/classaace_1_1car_control_1_1_car_control.html index 3e703f16e..631e16b66 100644 --- a/docs/docs/native/api/classes/classaace_1_1car_control_1_1_car_control.html +++ b/docs/docs/native/api/classes/classaace_1_1car_control_1_1_car_control.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -754,7 +754,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1car_control_1_1config_1_1_car_control_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1car_control_1_1config_1_1_car_control_configuration-members.html index 07a33c326..6fd1c4897 100644 --- a/docs/docs/native/api/classes/classaace_1_1car_control_1_1config_1_1_car_control_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1car_control_1_1config_1_1_car_control_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -97,7 +97,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1car_control_1_1config_1_1_car_control_configuration.html b/docs/docs/native/api/classes/classaace_1_1car_control_1_1config_1_1_car_control_configuration.html index a54122212..f07009c79 100644 --- a/docs/docs/native/api/classes/classaace_1_1car_control_1_1config_1_1_car_control_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1car_control_1_1config_1_1_car_control_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -943,7 +943,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1cbl_1_1_c_b_l-members.html b/docs/docs/native/api/classes/classaace_1_1cbl_1_1_c_b_l-members.html index 20079901e..36c89ca33 100644 --- a/docs/docs/native/api/classes/classaace_1_1cbl_1_1_c_b_l-members.html +++ b/docs/docs/native/api/classes/classaace_1_1cbl_1_1_c_b_l-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -86,7 +86,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1cbl_1_1_c_b_l.html b/docs/docs/native/api/classes/classaace_1_1cbl_1_1_c_b_l.html index d121206e4..28d29056f 100644 --- a/docs/docs/native/api/classes/classaace_1_1cbl_1_1_c_b_l.html +++ b/docs/docs/native/api/classes/classaace_1_1cbl_1_1_c_b_l.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -440,7 +440,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html index ba9435baf..1cb82354f 100644 --- a/docs/docs/native/api/classes/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html b/docs/docs/native/api/classes/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html index 31585cf4d..e7b17b27c 100644 --- a/docs/docs/native/api/classes/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1cbl_1_1config_1_1_c_b_l_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -165,7 +165,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1connectivity_1_1_alexa_connectivity-members.html b/docs/docs/native/api/classes/classaace_1_1connectivity_1_1_alexa_connectivity-members.html index 5f9acd579..0985e38f3 100644 --- a/docs/docs/native/api/classes/classaace_1_1connectivity_1_1_alexa_connectivity-members.html +++ b/docs/docs/native/api/classes/classaace_1_1connectivity_1_1_alexa_connectivity-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -82,7 +82,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1connectivity_1_1_alexa_connectivity.html b/docs/docs/native/api/classes/classaace_1_1connectivity_1_1_alexa_connectivity.html index 5c61f31a3..7883e8c8f 100644 --- a/docs/docs/native/api/classes/classaace_1_1connectivity_1_1_alexa_connectivity.html +++ b/docs/docs/native/api/classes/classaace_1_1connectivity_1_1_alexa_connectivity.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -315,7 +315,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1_engine-members.html b/docs/docs/native/api/classes/classaace_1_1core_1_1_engine-members.html index a6d442ab0..78274637a 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1_engine-members.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1_engine-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -85,7 +85,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1_engine.html b/docs/docs/native/api/classes/classaace_1_1core_1_1_engine.html index 01edcf86a..c88050a71 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1_engine.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1_engine.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -387,7 +387,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1_message_broker-members.html b/docs/docs/native/api/classes/classaace_1_1core_1_1_message_broker-members.html index 8f575b349..13d9737dd 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1_message_broker-members.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1_message_broker-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1_message_broker.html b/docs/docs/native/api/classes/classaace_1_1core_1_1_message_broker.html index 01bd6ec40..38e83383c 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1_message_broker.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1_message_broker.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -217,7 +217,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1_platform_interface-members.html b/docs/docs/native/api/classes/classaace_1_1core_1_1_platform_interface-members.html index 6cbfc6032..327174959 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1_platform_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1_platform_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1_platform_interface.html b/docs/docs/native/api/classes/classaace_1_1core_1_1_platform_interface.html index a12c79b7d..ad52103eb 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1_platform_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1_platform_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_configuration_file-members.html b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_configuration_file-members.html index b1b0b2b0d..b9e7c6ab8 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_configuration_file-members.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_configuration_file-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_configuration_file.html b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_configuration_file.html index 8d3a9ecc2..c33160754 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_configuration_file.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_configuration_file.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -152,7 +152,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_engine_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_engine_configuration-members.html index cc0fa2ae7..dc5e49c6d 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_engine_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_engine_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_engine_configuration.html b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_engine_configuration.html index af38e0dd0..45a0027a1 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_engine_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_engine_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -113,7 +113,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_stream_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_stream_configuration-members.html index afac32f8c..9b6f47653 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_stream_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_stream_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_stream_configuration.html b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_stream_configuration.html index ee397514c..a1419c101 100644 --- a/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_stream_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1core_1_1config_1_1_stream_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -152,7 +152,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage-members.html b/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage-members.html index d02c31609..b9ca7c2df 100644 --- a/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage-members.html +++ b/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage.html b/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage.html index add06978f..2d6435c3c 100644 --- a/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage.html +++ b/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -118,7 +118,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage_engine_interface-members.html index b7a569b2f..a6bf229e7 100644 --- a/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage_engine_interface.html index d1a07a095..57317fed3 100644 --- a/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1device_usage_1_1_device_usage_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1location_1_1_location-members.html b/docs/docs/native/api/classes/classaace_1_1location_1_1_location-members.html index 69ad7560b..89d33a111 100644 --- a/docs/docs/native/api/classes/classaace_1_1location_1_1_location-members.html +++ b/docs/docs/native/api/classes/classaace_1_1location_1_1_location-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -86,7 +86,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1location_1_1_location.html b/docs/docs/native/api/classes/classaace_1_1location_1_1_location.html index b5b51ee66..f3b451ae9 100644 --- a/docs/docs/native/api/classes/classaace_1_1location_1_1_location.html +++ b/docs/docs/native/api/classes/classaace_1_1location_1_1_location.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -337,7 +337,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider-members.html b/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider-members.html index e74854c78..95f509f71 100644 --- a/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider-members.html +++ b/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider.html b/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider.html index d48abfee2..9d9c694df 100644 --- a/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider.html +++ b/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -170,7 +170,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider_engine_interface-members.html index a0ea2fdd9..14e8e6185 100644 --- a/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider_engine_interface.html index ce267a5c5..afecc0e20 100644 --- a/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1location_1_1_location_provider_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -119,7 +119,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger-members.html b/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger-members.html index 519f6b2b6..b94eba742 100644 --- a/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger-members.html +++ b/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -79,7 +79,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger.html b/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger.html index 9906ffbcd..fe6f70300 100644 --- a/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger.html +++ b/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -213,7 +213,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger_engine_interface-members.html index a510d9147..a0e23a052 100644 --- a/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger_engine_interface.html index 498fbecbe..00879c12d 100644 --- a/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1logger_1_1_logger_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -135,7 +135,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1logger_1_1config_1_1_logger_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1logger_1_1config_1_1_logger_configuration-members.html index 9374c77c6..366b774ac 100644 --- a/docs/docs/native/api/classes/classaace_1_1logger_1_1config_1_1_logger_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1logger_1_1config_1_1_logger_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1logger_1_1config_1_1_logger_configuration.html b/docs/docs/native/api/classes/classaace_1_1logger_1_1config_1_1_logger_configuration.html index d15ed56a0..89d1516ac 100644 --- a/docs/docs/native/api/classes/classaace_1_1logger_1_1config_1_1_logger_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1logger_1_1config_1_1_logger_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -344,7 +344,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1messaging_1_1_messaging-members.html b/docs/docs/native/api/classes/classaace_1_1messaging_1_1_messaging-members.html index 82e6973c0..2914201b4 100644 --- a/docs/docs/native/api/classes/classaace_1_1messaging_1_1_messaging-members.html +++ b/docs/docs/native/api/classes/classaace_1_1messaging_1_1_messaging-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -88,7 +88,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1messaging_1_1_messaging.html b/docs/docs/native/api/classes/classaace_1_1messaging_1_1_messaging.html index 95c7cd0fa..77ffce8e4 100644 --- a/docs/docs/native/api/classes/classaace_1_1messaging_1_1_messaging.html +++ b/docs/docs/native/api/classes/classaace_1_1messaging_1_1_messaging.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -543,7 +543,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader-members.html b/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader-members.html index b6804431d..f7c14faed 100644 --- a/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader-members.html +++ b/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -78,7 +78,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader.html b/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader.html index d1dfd3e5e..1664a72b1 100644 --- a/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader.html +++ b/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -197,7 +197,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint-members.html b/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint-members.html index a2f8a3208..60570c3d0 100644 --- a/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint-members.html +++ b/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -76,7 +76,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint.html b/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint.html index 663a0c547..3ebdf3604 100644 --- a/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint.html +++ b/docs/docs/native/api/classes/classaace_1_1metrics_1_1_metrics_uploader_1_1_datapoint.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1navigation_1_1_navigation-members.html b/docs/docs/native/api/classes/classaace_1_1navigation_1_1_navigation-members.html index e9ad83fc8..8703f8708 100644 --- a/docs/docs/native/api/classes/classaace_1_1navigation_1_1_navigation-members.html +++ b/docs/docs/native/api/classes/classaace_1_1navigation_1_1_navigation-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -85,7 +85,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1navigation_1_1_navigation.html b/docs/docs/native/api/classes/classaace_1_1navigation_1_1_navigation.html index d65e4e302..f973e4a37 100644 --- a/docs/docs/native/api/classes/classaace_1_1navigation_1_1_navigation.html +++ b/docs/docs/native/api/classes/classaace_1_1navigation_1_1_navigation.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -519,7 +519,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1navigation_1_1config_1_1_navigation_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1navigation_1_1config_1_1_navigation_configuration-members.html index 3a8491879..ee1af14d5 100644 --- a/docs/docs/native/api/classes/classaace_1_1navigation_1_1config_1_1_navigation_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1navigation_1_1config_1_1_navigation_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1navigation_1_1config_1_1_navigation_configuration.html b/docs/docs/native/api/classes/classaace_1_1navigation_1_1config_1_1_navigation_configuration.html index 5cb5014d8..c3d15c2f0 100644 --- a/docs/docs/native/api/classes/classaace_1_1navigation_1_1config_1_1_navigation_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1navigation_1_1config_1_1_navigation_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -118,7 +118,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider-members.html b/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider-members.html index f14b5d0dc..c1d9bda13 100644 --- a/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider-members.html +++ b/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider.html b/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider.html index dc9cb3409..ec8e0f79e 100644 --- a/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider.html +++ b/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -203,7 +203,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider_engine_interface-members.html index 34dafbe96..6e0ed64d4 100644 --- a/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider_engine_interface.html index 5b10bfdcf..169ebaf08 100644 --- a/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1network_1_1_network_info_provider_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -131,7 +131,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller-members.html b/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller-members.html index c1e6d6a00..6035f88bc 100644 --- a/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller-members.html +++ b/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -94,7 +94,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller.html b/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller.html index e82c24699..4a7c8a686 100644 --- a/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller.html +++ b/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -654,7 +654,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface-members.html b/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface-members.html index f81be778a..ae5492ba6 100644 --- a/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface-members.html +++ b/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html b/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html index 51d3d27fd..72b1f8e85 100644 --- a/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html +++ b/docs/docs/native/api/classes/classaace_1_1phone_call_controller_1_1_phone_call_controller_engine_interface.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -297,7 +297,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1property_manager_1_1_property_manager-members.html b/docs/docs/native/api/classes/classaace_1_1property_manager_1_1_property_manager-members.html index 2b55ff435..4ea969b6a 100644 --- a/docs/docs/native/api/classes/classaace_1_1property_manager_1_1_property_manager-members.html +++ b/docs/docs/native/api/classes/classaace_1_1property_manager_1_1_property_manager-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1property_manager_1_1_property_manager.html b/docs/docs/native/api/classes/classaace_1_1property_manager_1_1_property_manager.html index 1cc5c04ed..e3c9194ea 100644 --- a/docs/docs/native/api/classes/classaace_1_1property_manager_1_1_property_manager.html +++ b/docs/docs/native/api/classes/classaace_1_1property_manager_1_1_property_manager.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -259,7 +259,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1storage_1_1config_1_1_storage_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1storage_1_1config_1_1_storage_configuration-members.html index ab53a90d6..243f5df50 100644 --- a/docs/docs/native/api/classes/classaace_1_1storage_1_1config_1_1_storage_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1storage_1_1config_1_1_storage_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -77,7 +77,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1storage_1_1config_1_1_storage_configuration.html b/docs/docs/native/api/classes/classaace_1_1storage_1_1config_1_1_storage_configuration.html index 11fb2ab25..8a8f8cbc2 100644 --- a/docs/docs/native/api/classes/classaace_1_1storage_1_1config_1_1_storage_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1storage_1_1config_1_1_storage_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -119,7 +119,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1text_to_speech_1_1_text_to_speech-members.html b/docs/docs/native/api/classes/classaace_1_1text_to_speech_1_1_text_to_speech-members.html index e40f0ef56..150021dbe 100644 --- a/docs/docs/native/api/classes/classaace_1_1text_to_speech_1_1_text_to_speech-members.html +++ b/docs/docs/native/api/classes/classaace_1_1text_to_speech_1_1_text_to_speech-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -81,7 +81,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1text_to_speech_1_1_text_to_speech.html b/docs/docs/native/api/classes/classaace_1_1text_to_speech_1_1_text_to_speech.html index 5e7bbf382..d5842be23 100644 --- a/docs/docs/native/api/classes/classaace_1_1text_to_speech_1_1_text_to_speech.html +++ b/docs/docs/native/api/classes/classaace_1_1text_to_speech_1_1_text_to_speech.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -327,7 +327,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html b/docs/docs/native/api/classes/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html index 4dc6e4491..02a711ce6 100644 --- a/docs/docs/native/api/classes/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html +++ b/docs/docs/native/api/classes/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration-members.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -80,7 +80,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html b/docs/docs/native/api/classes/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html index c8c397730..ff77675c0 100644 --- a/docs/docs/native/api/classes/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html +++ b/docs/docs/native/api/classes/classaace_1_1vehicle_1_1config_1_1_vehicle_configuration.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -256,7 +256,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/classes.html b/docs/docs/native/api/classes/classes.html index fd72e08c4..3ef94b2e8 100644 --- a/docs/docs/native/api/classes/classes.html +++ b/docs/docs/native/api/classes/classes.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -205,7 +205,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/deprecated.html b/docs/docs/native/api/classes/deprecated.html index 6d6b5c1a9..021136260 100644 --- a/docs/docs/native/api/classes/deprecated.html +++ b/docs/docs/native/api/classes/deprecated.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -191,7 +191,7 @@

        - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/functions.html b/docs/docs/native/api/classes/functions.html index 47f2aeada..f68bd1c2a 100644 --- a/docs/docs/native/api/classes/functions.html +++ b/docs/docs/native/api/classes/functions.html @@ -23,7 +23,7 @@ Logo

        Alexa Auto SDK -  4.1.0 +  4.1.1
        @@ -1335,7 +1335,7 @@

        - ~ -


          - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/functions_enum.html b/docs/docs/native/api/classes/functions_enum.html index 5ab6bfd59..60a47d72f 100644 --- a/docs/docs/native/api/classes/functions_enum.html +++ b/docs/docs/native/api/classes/functions_enum.html @@ -23,7 +23,7 @@ Logo

          Alexa Auto SDK -  4.1.0 +  4.1.1
          @@ -237,7 +237,7 @@

          - v -


            - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/functions_func.html b/docs/docs/native/api/classes/functions_func.html index d59e68532..10cf374ca 100644 --- a/docs/docs/native/api/classes/functions_func.html +++ b/docs/docs/native/api/classes/functions_func.html @@ -23,7 +23,7 @@ Logo

            Alexa Auto SDK -  4.1.0 +  4.1.1
            @@ -984,7 +984,7 @@

            - ~ -


              - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/functions_type.html b/docs/docs/native/api/classes/functions_type.html index cf97ee09d..866ee2e92 100644 --- a/docs/docs/native/api/classes/functions_type.html +++ b/docs/docs/native/api/classes/functions_type.html @@ -23,7 +23,7 @@ Logo

              Alexa Auto SDK -  4.1.0 +  4.1.1
              @@ -203,7 +203,7 @@

              - v -


                - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/functions_vars.html b/docs/docs/native/api/classes/functions_vars.html index bd946b9b1..e36732db6 100644 --- a/docs/docs/native/api/classes/functions_vars.html +++ b/docs/docs/native/api/classes/functions_vars.html @@ -23,7 +23,7 @@ Logo

                Alexa Auto SDK -  4.1.0 +  4.1.1
                @@ -288,7 +288,7 @@

                - v -


                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/hierarchy.html b/docs/docs/native/api/classes/hierarchy.html index 8f2e1d3d7..b2b4a6659 100644 --- a/docs/docs/native/api/classes/hierarchy.html +++ b/docs/docs/native/api/classes/hierarchy.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -159,7 +159,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/index.html b/docs/docs/native/api/classes/index.html index 982c6db00..ec47efd1c 100644 --- a/docs/docs/native/api/classes/index.html +++ b/docs/docs/native/api/classes/index.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -72,7 +72,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/namespaceaace.html b/docs/docs/native/api/classes/namespaceaace.html index 0282c0a5e..1148188d6 100644 --- a/docs/docs/native/api/classes/namespaceaace.html +++ b/docs/docs/native/api/classes/namespaceaace.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -79,7 +79,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/namespaceaace_1_1alexa.html b/docs/docs/native/api/classes/namespaceaace_1_1alexa.html index 443d59dd2..636bf0d02 100644 --- a/docs/docs/native/api/classes/namespaceaace_1_1alexa.html +++ b/docs/docs/native/api/classes/namespaceaace_1_1alexa.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -471,7 +471,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/namespaceaace_1_1car_control_1_1config_1_1action.html b/docs/docs/native/api/classes/namespaceaace_1_1car_control_1_1config_1_1action.html index c300c0b17..595a7501b 100644 --- a/docs/docs/native/api/classes/namespaceaace_1_1car_control_1_1config_1_1action.html +++ b/docs/docs/native/api/classes/namespaceaace_1_1car_control_1_1config_1_1action.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -77,7 +77,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/namespacemembers.html b/docs/docs/native/api/classes/namespacemembers.html index c62480f5c..2fb47c1a6 100644 --- a/docs/docs/native/api/classes/namespacemembers.html +++ b/docs/docs/native/api/classes/namespacemembers.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -88,7 +88,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/namespacemembers_enum.html b/docs/docs/native/api/classes/namespacemembers_enum.html index 1f2c84fac..82b0abbfa 100644 --- a/docs/docs/native/api/classes/namespacemembers_enum.html +++ b/docs/docs/native/api/classes/namespacemembers_enum.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -73,7 +73,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/namespacemembers_func.html b/docs/docs/native/api/classes/namespacemembers_func.html index 44b7dca9d..5ec9a4382 100644 --- a/docs/docs/native/api/classes/namespacemembers_func.html +++ b/docs/docs/native/api/classes/namespacemembers_func.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -82,7 +82,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/pages.html b/docs/docs/native/api/classes/pages.html index 90f91859a..078d677aa 100644 --- a/docs/docs/native/api/classes/pages.html +++ b/docs/docs/native/api/classes/pages.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -74,7 +74,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info-members.html b/docs/docs/native/api/classes/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info-members.html index 4ff1870d1..248910b59 100644 --- a/docs/docs/native/api/classes/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info-members.html +++ b/docs/docs/native/api/classes/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info-members.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -76,7 +76,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/native/api/classes/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info.html b/docs/docs/native/api/classes/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info.html index 882e3ec57..dbf487642 100644 --- a/docs/docs/native/api/classes/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info.html +++ b/docs/docs/native/api/classes/structaace_1_1alexa_1_1_alexa_client_1_1_connection_status_info.html @@ -23,7 +23,7 @@ Logo

                  Alexa Auto SDK -  4.1.0 +  4.1.1
                  @@ -77,7 +77,7 @@

                  - Alexa Auto SDK 4.1.0 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Alexa Auto SDK 4.1.1 - Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 diff --git a/docs/docs/releases/changelog/index.html b/docs/docs/releases/changelog/index.html index 588a946f9..009613dab 100644 --- a/docs/docs/releases/changelog/index.html +++ b/docs/docs/releases/changelog/index.html @@ -480,11 +480,11 @@

                  • - - v4.1.0 released on 2022-05-27 + + v4.1.1 released on 2022-08-08 -
                  • + +
                  • + + v4.1.0 released on 2022-05-27 + + + +
                  • @@ -522,7 +556,7 @@
                    • - + Enhancements @@ -536,14 +570,14 @@
                    • - + Resolved issues
                    • - + Known issues @@ -563,21 +597,21 @@
                      • - + Enhancements
                      • - + Resolved Issues
                      • - + Known Issues @@ -597,21 +631,21 @@
                        • - + Enhancements
                        • - + Resolved Issues
                        • - + Known Issues @@ -631,21 +665,21 @@
                          • - + Enhancements
                          • - + Resolved Issues
                          • - + Known Issues @@ -665,21 +699,21 @@
                            • - + Enhancements
                            • - + Resolved Issues
                            • - + Known Issues @@ -706,21 +740,21 @@
                              • - + Enhancements
                              • - + Resolved Issues
                              • - + Known Issues @@ -747,21 +781,21 @@
                                • - + Enhancements
                                • - + Resolved Issues
                                • - + Known Issues @@ -781,21 +815,21 @@
                                  • - + Enhancements
                                  • - + Resolved Issues
                                  • - + Known Issues @@ -815,21 +849,21 @@
                                    • - + Enhancements
                                    • - + Resolved Issues
                                    • - + Known Issues @@ -849,21 +883,21 @@
                                      • - + Enhancements
                                      • - + Resolved Issues
                                      • - + Known Issues @@ -883,21 +917,21 @@
                                        • - + Enhancements
                                        • - + Resolved Issues
                                        • - + Known Issues @@ -917,21 +951,21 @@
                                          • - + Enhancements
                                          • - + Resolved Issues
                                          • - + Known Issues @@ -951,21 +985,21 @@
                                            • - + Enhancements
                                            • - + Resolved Issues
                                            • - + Known Issues @@ -985,21 +1019,21 @@
                                              • - + Enhancements
                                              • - + Resolved Issues
                                              • - + Known Issues @@ -1019,21 +1053,21 @@
                                                • - + Enhancements
                                                • - + Resolved Issues
                                                • - + Known Issues @@ -1053,21 +1087,21 @@
                                                  • - + Enhancements
                                                  • - + Resolved Issues
                                                  • - + Known Issues @@ -1087,21 +1121,21 @@
                                                    • - + Enhancements
                                                    • - + Resolved Issues
                                                    • - + Known Issues @@ -1121,21 +1155,21 @@
                                                      • - + Enhancements
                                                      • - + Resolved Issues
                                                      • - + Known Issues @@ -1155,21 +1189,21 @@
                                                        • - + Enhancements
                                                        • - + Resolved Issues
                                                        • - + Known Issues @@ -1189,21 +1223,21 @@
                                                          • - + Enhancements
                                                          • - + Resolved Issues
                                                          • - + Known Issues @@ -1223,21 +1257,21 @@
                                                            • - + Enhancements
                                                            • - + Resolved Issues
                                                            • - + Known Issues @@ -1257,21 +1291,21 @@
                                                              • - + Enhancements
                                                              • - + Resolved Issues
                                                              • - + Known Issues @@ -1291,21 +1325,21 @@
                                                                • - + Enhancements
                                                                • - + Resolved Issues
                                                                • - + Known Issues @@ -1325,21 +1359,21 @@
                                                                  • - + Enhancements
                                                                  • - + Resolved Issues
                                                                  • - + Known Issues @@ -1359,14 +1393,14 @@
                                                                    • - + Enhancements
                                                                    • - + Known Issues @@ -1386,14 +1420,14 @@
                                                                      • - + Enhancements
                                                                      • - + Known Issues @@ -6161,11 +6195,11 @@
                                                                        • - - v4.1.0 released on 2022-05-27 + + v4.1.1 released on 2022-08-08 -