gpt4 book ai didi

java - Android 应用程序运行时出错

转载 作者:行者123 更新时间:2023-12-01 06:26:00 24 4
gpt4 key购买 nike

每当我尝试运行我的应用程序时 - 屏幕截图中的这个窗口就会在我的屏幕上弹出。声明未找到默认 Activity ,因此我无法部署我的应用程序:

enter image description here

我的代码的 list 文件

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

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

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity2"
android:label="@string/app_name" >

</activity>
<activity
android:name=".Sigin"
android:label="@string/app_name" >
</activity>
</application>

</manifest>

这是我在单击“运行”->“编辑配置”时看到的窗口:

enter image description here

我的代码的 Gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "19.1.0"

defaultConfig {
applicationId "com.example.mcs.oodoeg"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
exclude 'META-INF/DEPENDENCIES'
}

}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.1'
compile files('libs/xmlrpc-client-3.1.3.jar')
compile files('libs/gson-2.2.2.jar')
}

最佳答案

我也遇到了类似的问题,问题出在设备上。

当您卸载应用程序(在运行项目后再次安装它)时,它不是实际卸载它,而是停用它。

这意味着该应用程序仍然安装,但被操作系统阻止。

所以我无法运行该项目,也没有提供更多信息。 (找不到 Activity 启动器是唯一的消息)

有效删除应用程序(通过设备设置)解决了该问题。

关于java - Android 应用程序运行时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35330756/

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