gpt4 book ai didi

android - 错误 : Default activity not found, 但已声明

转载 作者:太空宇宙 更新时间:2023-11-03 12:43:54 25 4
gpt4 key购买 nike

我遇到了两次奇怪的情况。

我的主模块中有 list - igs_main

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" package="com.example">

<application
android:name=".CommonApplication"
android:allowBackup="false"
android:label="@string/app_name"
android:hardwareAccelerated="true"
android:networkSecurityConfig="@xml/network_security_config"
android:theme="@style/AppTheme"
android:supportsRtl="false"
tools:replace="android:supportsRtl,android:allowBackup"
tools:ignore="GoogleAppIndexingWarning, UnusedAttribute, RtlSupport">

<activity android:name=".auth.view.SplashScreen">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

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

</manifest>

当我尝试启动我的应用程序时,它看起来像

enter image description here

我得到一个错误:

enter image description here

我尝试直接指定我的默认 Activity,但是 AS 说这个 Activity 没有在 Manifest 中声明。

enter image description here

然后我尝试Invalidate Caches and Restart AS 和Rebuild 项目,但它也没有帮助我。

所以,我浪费了所有可能的解决方案。谁知道如何修复它?

最佳答案

我不知道为什么它可以链接到这个问题,但这个问题的原因来自Kotlin Compiler。当我启动 Kotlin 编译器选项时,我看到了警告,经过几秒钟的谷歌搜索后,我找到了一个答案,描述如下 - https://stackoverflow.com/a/50912853/4969827 .

useProjectSettings 更改为 true 后一切正常!

为了防止信息丢失,我将原始 fragment 复制粘贴到此处。

<facet type="kotlin-language" name="Kotlin">
<configuration version="3" platform="JVM 1.6" useProjectSettings="true">
<compilerSettings />
<compilerArguments>
<option name="destination" value="$MODULE_DIR$/build/tmp/kotlin-classes/debug" />
<option name="noStdlib" value="true" />
<option name="noReflect" value="true" />
<option name="moduleName" value="app_debug" />
<option name="addCompilerBuiltIns" value="true" />
<option name="loadBuiltInsFromDependencies" value="true" />
<option name="languageVersion" value="1.2" />
<option name="apiVersion" value="1.2" />
...
</compilerArguments>
</configuration>
</facet>

你必须阅读下面的文字

但是问题不断出现。很少,但来了。某天我在编辑 xml 文件时发现 APPT 损坏了。所以问题出在SDK中,我删除并重新安装。之后一切正常。

关于android - 错误 : Default activity not found, 但已声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53790881/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com