简体   繁体   中英

it says apk installed but no apk

I made my schedule. I'm installing but the apk is not there. everything is clear in the picture

I made changes to the manifest, is it something related to it?

在此处输入图像描述

Manifest

<activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <activity
                    android:name=".MainActivity"
                    android:label="@string/app_name" >
                <category android:name="android.intent.category.LAUNCHER" />
            </activity></intent-filter>
        </activity>
        <activity
            android:name=".guzelsozleractivity"
            android:label="@string/app_name" />
    </application>

You are declaring MainActivity twice.

Declare it like this:

<activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

Your manifest was wrongly entered, update the Manifest.xml to the code given below it will work. Please like and accept the answer if it worked.

Happy coding.


         <activity
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM