在手机上运行android studio应用程序时,它会运行,但不会将其保存在手机上

在手机上运行android studio应用程序时,它会运行,但不会将其保存在手机上,android,android-studio,android-runtime,Android,Android Studio,Android Runtime,我以前运行过项目,它们不仅可以运行,还可以另存为我以后可以再次打开的应用程序。现在由于某种原因,这个特定的项目会运行并打开,但不会在我的手机上另存为应用程序 <?xml version="1.0" encoding="utf-8"?> 我肯定我一定错过了一些简单的设置,但我找不到任何解决方案,任何帮助都将不胜感激 谢谢 编辑:我使用的是三星s10 5g,我使用的是Kotlin编码,我不认为这些东西是相关的,因为我可以运行我的其他项目,这些项目也使用Kotlin编码,并将在我的手机上

我以前运行过项目,它们不仅可以运行,还可以另存为我以后可以再次打开的应用程序。现在由于某种原因,这个特定的项目会运行并打开,但不会在我的手机上另存为应用程序

<?xml version="1.0" encoding="utf-8"?>
我肯定我一定错过了一些简单的设置,但我找不到任何解决方案,任何帮助都将不胜感激

谢谢

编辑:我使用的是三星s10 5g,我使用的是Kotlin编码,我不认为这些东西是相关的,因为我可以运行我的其他项目,这些项目也使用Kotlin编码,并将在我的手机上保存为普通应用程序

<?xml version="1.0" encoding="utf-8"?>


转到设置->应用->(按名称查找应用程序)->为所有用户卸载(取决于您使用的设备)

然后在手机中通过Android Studio再次运行应用程序。检查是否有帮助

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
    <activity
            android:name=".Pythagorean">
    </activity>
    <activity
            android:screenOrientation="portrait"
            android:name=".MainActivity">
        <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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


您使用的是哪种设备?除了设备之外,您正在构建什么样的应用程序?飞镖+颤振?Kotlin?三星s10 5g,它与其他项目一起工作,我正在使用Kotlin。很抱歉没有包含这些信息,但我认为这与此无关,因为我可以运行其他项目,这些项目将同时运行和保存。可能会对您有所帮助:我的兄弟,恕我直言,我已经在该页面上盯了数小时。不幸的是,这没有帮助。您的应用程序是否列在手机的“应用程序”菜单下?是的,它已列出,但我无法从应用程序菜单启动它。我已将其添加到原始帖子中