在我问之前,我想声明,我搜索了很多类似的线程,但没有一个工作。
我正在调试我的应用程序,由于某种原因,当我清理和重建我的项目时,我得到了错误:清单合并失败,有多个错误,请参阅日志
在我的gradle控制台中,我检查了一下并得到了这个:
C:\users\chris\androidStudioProjects\wizardcounter2\app\src\main\androidManifest.xml:6:5-44:16
错误:AndroidManifest.xml中的元素活动缺少“name”键属性:6:5-44:16
<?xml version="1.0" encoding="utf-8"?>
<activity
android:allowBackup="true"
android:icon="@drawable/counter_launch_icon"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
>
<activity
android:name=".HomeScreen"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".GameMenu"
android:label="@string/title_activity_game_menu"
android:theme="@style/AppTheme.NoActionBar"
android:screenOrientation="portrait"
android:value="HomeScreen"/>
<activity
android:name=".PlayerSelection"
android:label="@string/title_activity_player_selection"
android:value="PlayerSelection"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar"
>
</activity>
<support-screens
android:smallScreens="true"
android:normalScreens="true" />
</activity>
和建筑.格雷德尔:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "com.gameapp.android.wizardcounter"
minSdkVersion 9
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:design:25.0.0'
}
附注:我正在运行2.3版本,并更新了您看到的工具...!提前谢谢大家!
而不是activity,put application并将所有活动放入其中,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@drawable/counter_launch_icon"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
>
<activity
android:name=".HomeScreen"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".GameMenu"
android:label="@string/title_activity_game_menu"
android:theme="@style/AppTheme.NoActionBar"
android:screenOrientation="portrait"
android:value="HomeScreen"/>
<activity
android:name=".PlayerSelection"
android:label="@string/title_activity_player_selection"
android:value="PlayerSelection"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar"
>
</activity>
<support-screens
android:smallScreens="true"
android:normalScreens="true" />
</application>
清单合并失败:[com.android.support.version@value value=(25.3.1)来自[com.android.support:design:25.3.1]androidmanifest.xml:27:9-31的属性元数据也出现在[com.android.support:RecyclerView-v7:26.0.0-alpha1]androidmanifest.xml
首先,我是Android的新手,我已经将一个eclipse项目导入到Android Studio。在building project中显示此错误 “错误:任务”:app:ProcessDebugManifest“执行失败。>清单合并失败,出现多个错误,请参阅日志” 我已经尝试了这里提供的其他解决堆栈溢出的方法,但没有一个奏效
我必须将我的旧项目迁移到AndroidX,并将所有依赖项更新到最新版本,但唯一的一个在清单合并中出错。 仅此依赖项得到错误错误:清单合并失败,出现多个错误,请参阅日志: 我是说,当我移除它时,错误就消失了。 这是我的app.build 这里是manifest.xml 我真的不知道我的配置有什么问题...在网上找了一整天却一无所获... 注意:当我迁移到AndroidX时,按Refractor>mi
我有以下错误,当我建立我的反应原生应用程序的Android(iOS没有问题)。 错误:清单合并失败,有多个错误,请参见日志 当我在发布模式下生成时,这会导致一个真正的问题(调试中的应用程序没有问题),因为它会为我的发布生成生成以下清单文件: AndroidManifest。xml(在app/src/release/中) 我知道有很多关于这方面的问题,但它们对我的情况并没有真正的帮助,因为如果我遵循
我试着去寻找解决办法,但就像我没有找到任何地方一样。我试过这个解决方案: 清单合并失败,出现多个错误,请参阅日志 活动#com.google.android.libraries.places.widget.autocompleteactivity@windowsoftinputmode value=(stateAlwaysVisibleadjustPan)来自androidmanifest.xml
当我尝试重建project时,android studio给出了错误: