Session 'app': Error Launching activity

前端 未结 30 2821
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-28 06:43

After the Android Studio 2.0 update while the gradle build finishes I get this :

Session \'app\': Error Launching activity .

It prevents the app from starting

30条回答
  •  北海茫月
    2020-11-28 07:03

    Same issue, but for me problem was that Android Studio couldn't find my Default Activity. When I specified the intent filter to catch the MAIN action intent, I didn't specify the LAUNCHER category, and that caused the 'Error Launching activity' issue.

        
            
              <-- forgot
        
    

提交回复
热议问题