Ilanthirayan Paramanathan
Ilanthirayan Paramanathan
I guess, you guys missed the gradle.properties file configuration to put your own dribbble acess token instead. accessToken = UNDEFINED
Go to https//dribbble.com/signup and create new Basic Free account and you will get accessToken for your account
I am facing the same issue. anyone, resolves this issue?
@amjadmasri , I have followed as per [your posted link](https://developers.google.com/cast/docs/android_sender/media_tracks). ``` MediaTrack englishSubtitle = new MediaTrack.Builder(1 /* ID */, MediaTrack.TYPE_TEXT) .setName("English Subtitle") .setSubtype(MediaTrack.SUBTYPE_SUBTITLES) .setContentId("https://some-url/caption_en.vtt") .setLanguage("en-US") .build(); ``` ``` // the...
@AquilesCanta , Sorry I have forgot to update here. The subtitle is working fine with below code; ``` public void setSelectedSubTitle(final String selectedSubTitleLang, final Resources resources) { List tracks =...
@msxenon Have you tried my solution as mentioned above https://github.com/google/ExoPlayer/issues/5786#issuecomment-551622165 In the PlayerManager after Track Change got changed, ``` //PlayerManager.Listener @Override public void onTracksChanged(final TrackGroupArray trackGroups, final TrackSelectionArray trackSelections) {...
@BayuWijayaPermanaPutra, I hope this will help you make it work. ``` List tracks; ``` ``` MediaTrack mediaTrack = new MediaTrack.Builder(1 /* ID */, MediaTrack.TYPE_TEXT) .setName(new DefaultTrackNameProvider(resources).getTrackName(subtitleFormat)) .setSubtype(MediaTrack.SUBTYPE_SUBTITLES) .setContentId(url) /* language...
No, You have to use the mapper classes to convert the model classes to Entity and Entity to model class. Please look at the `UserEntityDataMapper.java`