Reputation: 369
I created a small ActivityFile.java. After running it, it takes a while to show the Android Emulator on screen. After 10 minutes, I got this error.
Emulator: qemu-system-i386.exe: Unable to open
C:\Android\.android\avd\MyNexus5API25.avd\data\misc\pstore\pstore.bin: Permission denied
I am a beginner to Android Studio, so do not the reason behind this issue.
Please help??
Upvotes: 16
Views: 27214
Reputation: 1
project--> gradle --> xxclasspath 'com.google.gms:google-services:3.1.0'
classpath 'com.google.gms:google-services:3.2.0'
you have to change one.
Upvotes: 0
Reputation: 439
I got the same problem and i solved it by recreating the AVD from scratch
delete the Folders according to your AVD name ex-: Nexus_5X_API_27
create a new AVD from the Android Studio
Upvotes: 0
Reputation: 1
just did this delete the lock file in this route and it worked for me C:\Users*your user*.android\avd/Nexus_4_API_22.avd/*.lock
Upvotes: 0
Reputation: 652
Go to C:\Android.android\avd\MyNexus5API25.avd\data\misc
, make right click on pstore
, pick Properties
and uncheck box Only for reading
(Title may be a little different). This is a new non critical bug (about 2 days ago update), you should not attach importance to this.
Upvotes: 24