0
我正在將< compatible-screens>替換爲< supports-screens>。 ZXing庫代碼掃描條形碼是依賴性問題。錯誤顯示在下面。Gradle錯誤:app:processDevDebugManifest失敗時添加<支持屏幕>
AndroidManifest.xml:121:9-37 Error: Attribute [email protected] value=(false) from AndroidManifest.xml:121:9-37 is also present at [xyz:unspecified] AndroidManifest.xml:17:9-36 value=(true).
:app:processDevDebugManifest FAILED
FAILURE: Build failed with an exception.
我還在工具中添加了:replace in manifest。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="c.x.y">
<!--<compatible-screens>-->
<!--<!– all small size screens –>-->
<!--<!– <screen android:screenSize="small" android:screenDensity="ldpi" /> –>-->
<!--<screen-->
<!--android:screenDensity="mdpi"-->
<!--android:screenSize="small" />-->
<!--<screen-->
<!--android:screenDensity="hdpi"-->
<!--android:screenSize="small" />-->
<!--<screen-->
<!--android:screenDensity="xhdpi"-->
<!--android:screenSize="small" />-->
<!--<screen-->
<!--android:screenDensity="480"-->
<!--android:screenSize="small" /> <!– xxhdpi –>-->
<!--<screen-->
<!--android:screenDensity="640"-->
<!--android:screenSize="small" /> <!– xxxhdpi –>-->
<!--<!– all normal size screens –>-->
<!--<!– <screen android:screenSize="normal" android:screenDensity="ldpi" /> –>-->
<!--<screen-->
<!--android:screenDensity="mdpi"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="hdpi"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="xhdpi"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="420"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="480"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="560"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="640"-->
<!--android:screenSize="normal" />-->
<!--<!– all small size screens –>-->
<!--<!– <screen android:screenSize="small" android:screenDensity="ldpi" /> –>-->
<!--<screen-->
<!--android:screenDensity="mdpi"-->
<!--android:screenSize="small" />-->
<!--<screen-->
<!--android:screenDensity="hdpi"-->
<!--android:screenSize="small" />-->
<!--<screen-->
<!--android:screenDensity="xhdpi"-->
<!--android:screenSize="small" />-->
<!--<screen-->
<!--android:screenDensity="480"-->
<!--android:screenSize="small" /> <!– xxhdpi –>-->
<!--<screen-->
<!--android:screenDensity="640"-->
<!--android:screenSize="small" /> <!– xxxhdpi –>-->
<!--<!– all normal size screens –>-->
<!--<!– <screen android:screenSize="normal" android:screenDensity="ldpi" /> –>-->
<!--<screen-->
<!--android:screenDensity="mdpi"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="hdpi"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="xhdpi"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="420"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="480"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="560"-->
<!--android:screenSize="normal" />-->
<!--<screen-->
<!--android:screenDensity="640"-->
<!--android:screenSize="normal" />-->
<!--</compatible-screens>-->
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="false"
android:xlargeScreens="false" />
<application
android:allowBackup="false"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:theme="@style/AppTheme"
tools:replace="android:label, android:icon, android:allowBackup, android:smallScreens, android:xlargeScreens">
感謝。
把你的清單放在這裏... –