0

I have downloaded android studio and now i am trying to run an app.I haven't changed anything in code or design.I am using version 2.2.2 When i click on run it gives me an error
init: Could not find wglGetExtensionsStringARB!
But emulator opens.Then there is blank black screen for 2-3 minutes,then androidtitle for another 5 minutes.This is what i get.this is that i get

But i don't know where is my app?

Andrii Omelchenko
  • 13,183
  • 12
  • 43
  • 79
Papaa
  • 108
  • 10

2 Answers2

1

What you're running is Android version 7.1 (Nougat MR1). You can see the list of apps (app drawer) by clicking on the small ^ (caret) icon above the opaque area highlited as a red circle in the picture below

enter image description here

Vijai
  • 1,067
  • 2
  • 11
  • 25
  • I still don't see my app there. – Papaa Nov 11 '16 at 13:51
  • Then run the app from `Run->Run App` in Android Studio or using the `ctrl + F10` shortcut. Android Studio will inform of any errors while compiling if any – Vijai Nov 11 '16 at 13:54
  • I do.It tells me to choose an emulator.I choose and it opens this emlator – Papaa Nov 11 '16 at 13:55
  • It could be bad GPU drivers or improper AVD config. Try [this](http://stackoverflow.com/a/37144761/3511518) answer – Vijai Nov 11 '16 at 13:59
  • I don't see Host GPU checkbox on emulator's edit page – Papaa Nov 11 '16 at 14:12
  • At the moment, I'm not sure if your issue is emulator not running or the app produce error while runtime/compile time? – Vijai Nov 11 '16 at 14:15
  • I doubt that it is apps problem because i have not changed anything from default code – Papaa Nov 11 '16 at 14:15
  • It must be with your GPU rendering. Try editing the config and set the "Emulated Performance" to `Automatic` – Vijai Nov 11 '16 at 14:18
  • Now i get even more errors like `Could not initialize emulated framebuffer` and `Failed to obtain GLES 2.x extensions string!` – Papaa Nov 11 '16 at 14:24
0

emulator opens.Then there is blank black screen for 2-3 minutes,then androidtitle for another 5 minutes.

This is normal. You should wait until the emulator fully boots and run your app again. If your development computer has an Intel processor, be sure to install HAXM. It will greatly increase the speed of the emulator.

Code-Apprentice
  • 81,660
  • 23
  • 145
  • 268