0

I was trying to rename the name of the package of my first android project (see here), but now I see an error in AndroidStudio:

Run Configuration Error: Default Activity not found

on the 'run' button. See this screenshot:

enter image description here

How to fix this in AndroidStudio?

Community
  • 1
  • 1
Alex
  • 41,580
  • 88
  • 260
  • 469

1 Answers1

2

All your java files have the name of your package in the first line itself. For example:

package com.xyz.android;

Please change them too.

Archit Goel
  • 694
  • 5
  • 19