2
Where will you declare your activity so the system can access it?
Where will you declare your activity so the system can access it?
You always need to declare your activity in Android Manifest file
<manifest….> <application…> <activity android:name="com.example.name.AppName" android:label="@string/app_name> </activity> </application> </manifest>