miracast-widget icon indicating copy to clipboard operation
miracast-widget copied to clipboard

Adjust tethering

Open Noitarud opened this issue 2 years ago • 0 comments

Some branded versions of Android (such as this SIMless tablet) hide the relevant options required to enable use of Miracast, just hidden not disabled - so I think. Manual says: go to Connections; goto Mobile Hotspot and Feathering; enable USB tethering. As for incorporating this into your app, place the option in the menu that comes up when you hold-press the app's icon.

Ps. Please include the Screen Mirror tag somewhere into your app's description.

Noitarud avatar Feb 08 '23 07:02 Noitarud

How to reproduce?

By the way, https://github.com/yongjhih/RetroFacebook is using this project.

yongjhih avatar Sep 10 '15 17:09 yongjhih

e.g.

import android.os.Parcelable;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;

import auto.json.AutoJson;

@AutoJson
public abstract class Address implements Parcelable {
    @Nullable
    @AutoJson.Field
    public abstract Location location();

    @Nullable
    @AutoJson.Field
    public abstract String cityName();

    public static Builder builder() {
        return new AutoJson_Address.Builder();
    }

    @AutoJson.Builder
    public abstract static class Builder {
        public abstract Builder location(Location location);
        public abstract Builder cityName(String cityName);
        public abstract Address build();
    }

    @AutoJson
    public abstract static class Location {
        @NonNull
        @AutoJson.Field
        public abstract double latitude();

        @NonNull
        @AutoJson.Field
        public abstract double longitude();

        public static Builder builder() {
            return new AutoJson_Address_Location.Builder();
        }

        @AutoJson.Builder
        public abstract static class Builder {
            public abstract Builder latitude(double latitude);
            public abstract Builder longitude(double longitude);
            public abstract Location build();
        }
    }
}

johnkil avatar Sep 10 '15 20:09 johnkil

Ok, I got that. It's not supported right now, sorry. Thanks for your report.

yongjhih avatar Sep 10 '15 21:09 yongjhih