Emre Ozcan
Emre Ozcan

Reputation: 41

ActivityResultLauncher unresolved reference

As you know pick image from gallery or etc. change using of it. You have to use ActivityResultLauncher. Hovewer, sometimes it could not show. because of that:

implementation 'androidx.appcompat:appcompat:1.2.0'

Upvotes: 1

Views: 1038

Answers (1)

Emre Ozcan
Emre Ozcan

Reputation: 41

you have to update your build gradle

implementation 'androidx.appcompat:appcompat:1.2.0'

to

implementation 'androidx.appcompat:appcompat:1.3.1'

Now problem will fix

Upvotes: 1

Related Questions