Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to resolve Session 'app': error?

I am making an app in android studio. I have used facebook integration into it.While running this app i am getting an error

11:02:14 AM Session 'app': running
11:02:19 AM Session 'app': error

and the app stops running. I didn't get any solution even after a lot of searching. So please help me out and assist in getting my app running. Any kind of assistance will be appreciated.

like image 632
Param Avatar asked Feb 10 '15 05:02

Param


2 Answers

The solution that works for me is to unistall the app from my phone. I think it's due to having another version on my phone.

like image 165
debiasej Avatar answered Oct 03 '22 22:10

debiasej


Right after commenting on your question, I found out what was wrong. I used the 'release' flavor for debugging purposes. If I switch the flavor to 'debug', it works perfectly fine again.

Apparently 'release' has the the 'debuggable' configuration set to 'false' and 'debug' to true.

like image 23
fancy Avatar answered Oct 03 '22 21:10

fancy