Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Some conflicts were found in the installation area, while updating android studio 2022.1.1 patch 1

1

I am getting this error while updating Android Studio 2022.1.1 patch 1 some patch gets downloaded and following error comes,

Some of the conflicts below do not have a solution, so the patch cannot be applied.

the files that is shown are:

jre/

jre/bin/

jre/bin/.marker

like image 737
Kenel Jr Avatar asked Oct 18 '25 00:10

Kenel Jr


1 Answers

Same error. I fixed it by simply creating the missing folders and the file .marker:

In an admin terminal on Windows, simply do:

cd C:\Program Files\Android\Android Studio

mkdir jre
cd jre & mkdir bin
cd bin & type nul > .marker
like image 92
Lobar Avatar answered Oct 20 '25 12:10

Lobar