MediaConstants.java

/*
 * Copyright 2019 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.media2.session;

class MediaConstants {
    static final String CONTROLLER_COMMAND_BY_COMMAND_CODE =
            "androidx.media2.controller.command.BY_COMMAND_CODE";

    static final String ARGUMENT_CAPTIONING_ENABLED = "androidx.media2.argument.CAPTIONING_ENABLED";
    static final String ARGUMENT_COMMAND_CODE = "androidx.media2.argument.COMMAND_CODE";
    static final String ARGUMENT_ICONTROLLER_CALLBACK =
            "androidx.media2.argument.ICONTROLLER_CALLBACK";
    static final String ARGUMENT_UID = "androidx.media2.argument.UID";
    static final String ARGUMENT_PID = "androidx.media2.argument.PID";
    static final String ARGUMENT_PACKAGE_NAME = "androidx.media2.argument.PACKAGE_NAME";

    static final String ROOT_EXTRA_DEFAULT = "androidx.media2.root_default_root";

    private MediaConstants() {
    }
}