Monday, September 28, 2015

Install google services on AVD

http://inthecheesefactory.com/blog/how-to-install-google-services-on-genymotion/en

Saturday, September 12, 2015

If geny doesn't start under Ubuntu

If you use Linux, make sure that the dkms package is installed and that it compiles VirtualBox kernel modules each time a new kernel update is available. To do so, run 
sudo /etc/init.d/vboxdrv status
You should get the message VirtualBox kernel modules (vboxdrv, vboxnetflt, vboxnetadp, vboxpci) are loaded
If not, force VirtualBox kernel modules compilation by running
sudo /etc/init.d/vboxdrv setup 
Make also sure that you are part of the "vboxusers" group. If not, run 
sudo usermod -a -G vboxusers <login>

https://www.genymotion.com/#!/support?chapter=vbox#faq

Thursday, September 3, 2015

Выполнение AsyncTask - onPostExecute не выполняется

Интересный случай.
AsyncTask запускается внутри View.
Фоновая работа проходит успешно, но метод onPostExecute или выполняется через неприлично долгое время или вообще не выполняется.
Решение - создавать и запускать AsyncTask в методе post объекта android.os.Handler, полученного в Application.
Вынести создание таска в активити.

upd. RxJava