Simple ExoPlayer app in Sketchware
1. To add ExoPlayer in Sketchware pro project, in Library manager --> Local Library, download following dependency: com.google.android.exoplayer:exoplayer:2.19.1 Do not skip sub-dependencies. 2. Select all downloaded dependencies except kotlin-stdlib-common-v1.6.21 and kotlin-stdlib-v1.6.21 3. Switch On AppCompat and design and Material library. 4. In permission manager, add INTERNET permissions . 5. In main.xml add three TextViews with links to videos. 6. Add an Intent component intent . 7. Create a new page, player.xml . 8. In TextView onClick events, use Intent to move to PlayerActivity . The video URL is saved with key "url". 9. In player.xml , add a LinearLayout, and convert it to com.google.android.exoplayer2.ui.PlayerView Set height to match_parent Change ID to playerView Add custom attributes: app:use_controller value true app:show_buffering value when_playing 10. In PlayerActivity, add event import and add following imports: import com.google.android.exopl...