VancedMicroG/play-services-cast-framewor.../src/main/java/com/google/android/gms/cast/framework/media/CastMediaOptions.java

40 lines
1.2 KiB
Java
Raw Normal View History

/*
2017-06-12 22:11:15 +00:00
* 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.framework.media;
import org.microg.safeparcel.AutoSafeParcelable;
public class CastMediaOptions extends AutoSafeParcelable {
2018-05-19 19:19:25 +00:00
2020-10-14 21:00:04 +00:00
@Field(1)
2018-05-19 19:19:25 +00:00
private int versionCode = 1;
2020-10-14 21:00:04 +00:00
@Field(2)
2018-05-19 19:19:25 +00:00
public String mediaIntentReceiverClassName;
2020-10-14 21:00:04 +00:00
@Field(3)
2018-05-19 19:19:25 +00:00
public String expandedControllerActivityClassName;
2020-10-14 21:00:04 +00:00
@Field(4)
2018-05-19 19:19:25 +00:00
public IImagePicker imagePicker;
2020-10-14 21:00:04 +00:00
@Field(5)
2018-05-19 19:19:25 +00:00
public NotificationOptions notificationOptions;
2020-10-14 21:00:04 +00:00
@Field(6)
public boolean bool6;
@Field(7)
public boolean bool7;
2020-10-14 21:00:04 +00:00
public static Creator<CastMediaOptions> CREATOR = new AutoCreator<CastMediaOptions>(CastMediaOptions.class);
}