VancedMicroG/play-services-cast-api/src/main/java/com/google/android/gms/cast/CastStatusCodes.java

39 lines
1.6 KiB
Java

/*
* Copyright (C) 2013-2017 microG Project Team
*
* 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 com.google.android.gms.cast;
public final class CastStatusCodes {
public static final int APPLICATION_NOT_FOUND = 2004;
public static final int APPLICATION_NOT_RUNNING = 2005;
public static final int AUTHENTICATION_FAILED = 2000;
public static final int CANCELED = 2002;
public static final int ERROR_SERVICE_CREATION_FAILED = 2200;
public static final int ERROR_SERVICE_DISCONNECTED = 2201;
public static final int FAILED = 2100;
public static final int INTERNAL_ERROR = 8;
public static final int INTERRUPTED = 14;
public static final int INVALID_REQUEST = 2001;
public static final int MESSAGE_SEND_BUFFER_TOO_FULL = 2007;
public static final int MESSAGE_TOO_LARGE = 2006;
public static final int NETWORK_ERROR = 7;
public static final int NOT_ALLOWED = 2003;
public static final int REPLACED = 2103;
public static final int SUCCESS = 0;
public static final int TIMEOUT = 15;
public static final int UNKNOWN_ERROR = 13;
}