gpt4 book ai didi

android - configChanges上的Gradle任务[:app:assembleDebug]错误

转载 作者:行者123 更新时间:2023-12-03 04:27:35 25 4
gpt4 key购买 nike

我在AndroidManifest.xml文件中做了一些更改,以触发屏幕方向事件。这是我的AndroidManifest.xml文件...

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.domain.product">

<application
android:name=".Product"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">

<activity
android:name=".MainActivity"
android:configChanges="screenSize|orientation|screenLayout" />
</application>
</manifest>

这是build.gradle ...
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.domain.product"
minSdkVersion 15
targetSdkVersion 25
versionCode 9
versionName '2.1'
multiDexEnabled true
}
buildTypes {
release {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
}
}

android:configChanges之后,gradle在构建项目时在 消息事件日志中显示错误。查看下图中的错误...

Messages
Event Log

尽管存在这些错误,应用程序仍在模拟器和设备中成功运行。但是出了点问题,这就是显示错误的原因。有人知道出什么问题吗?

最佳答案

这可能是因为您的android最低目标sdk API级别低于screenSizeorientation需要的 API级别13

android:configChanges上了解更多信息。

关于android - configChanges上的Gradle任务[:app:assembleDebug]错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44818686/

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