linlukes / VideoLiveWallpaper

Setting Images or Videos as Wallpaper from Gallery or Camera.
Apache License 2.0
2 stars 0 forks source link

Bug: crashes on cancelling first flow of choosing a video from file #2

Closed AndroidDeveloperLB closed 5 months ago

AndroidDeveloperLB commented 5 months ago

The reason is that onActivityResult doesn't have data: Intent? .

Should be:

class MainActivity : Activity() {
...
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {