ARCore-Location icon indicating copy to clipboard operation
ARCore-Location copied to clipboard

I didn't open.

Open kaanf opened this issue 4 years ago • 1 comments

Sorry guyz, I am new in Android Studio. I have an error like this

"error running 'ARCore-Location-master-app': Default Activity not found"

Thank you for help.

kaanf avatar Jul 17 '20 02:07 kaanf

In the manifest file, you must set an Activity to MAIN action and category LAUNCHER

        <activity
            android:name="<Activity class name>">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

monxarat avatar Jul 20 '20 02:07 monxarat