gpt4 book ai didi

android - AAPT2 错误 : check logs for details: unknown element found

转载 作者:行者123 更新时间:2023-11-30 00:17:17 26 4
gpt4 key购买 nike

这是我的debug\AndroidManifest.xml

出现了很多类似

的错误

Element action is not allowed here.
Element category is not allowed here.
Attribute android:versionCode is not allowed here.
Attribute android:versionName is not allowed here.
Attribute android:theme is not allowed here. and so many.

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.company.sqh.adio"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="26" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
android:allowBackup="true"
android:debuggable="true"
android:icon="@drawable/logo_remaking2"
android:label="@string/label"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity
android:name="com.company.sqh.adio.MainActivity"
android:icon="@drawable/logo_remaking2" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.company.sqh.adio.registraion_form" >
<intent-filter>
<action android:name="com.company.sqh.adio.registraion_form" />

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.company.sqh.adio.contact_us" >
<intent-filter>
<action android:name="com.company.sqh.adio.contact_us" />

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.company.sqh.adio.about_us" >
<intent-filter>
<action android:name="com.company.sqh.adio.about_us" />

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.company.sqh.adio.ProfileActivity" />

<action android:name="com.company.sqh.adio.ProfileActivity" />

<category android:name="android.intent.category.DEFAULT" />

<activity android:name="com.company.sqh.adio.EmplyReg" />
<activity android:name="com.company.sqh.adio.SubCategory" />
<activity android:name="com.company.sqh.adio.User_Profile" />
<activity android:name="com.company.sqh.adio.Emp_list" />
<activity android:name="com.company.sqh.adio.Forgot_Pass" />

<meta-data
android:name="android.support.VERSION"
android:value="26.1.0" /> <!-- Include the AdActivity and InAppPurchaseActivity configChanges and themes. -->
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
<activity
android:name="com.google.android.gms.ads.purchase.InAppPurchaseActivity"
android:theme="@style/Theme.IAPTheme" />
<activity
android:name="com.google.android.gms.common.api.GoogleApiActivity"
android:exported="false"
android:theme="@android:style/Theme.Translucent.NoTitleBar" />

<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="android.arch.lifecycle.VERSION"
android:value="27.0.0-SNAPSHOT" />
</application>

</manifest>

请检查这个screenshot

最佳答案

AndroidManifest.xml:15: error: unknown element found.

您放错了标签。

To improve incremental resource processing, Android plugin 3.0.0 enables AAPT2 by default. In previous versions of AAPT, elements nested in incorrect nodes in the Android manifest are either ignored or result in a warning.
To resolve the issue, make sure your manifest elements are nested correctly. For more information, read Manifest file structure.

您必须修改您的 list :

 <action android:name="com.company.sqh.adio.ProfileActivity" />         
<category android:name="android.intent.category.DEFAULT" />

它们应该包含在 <activity> 中标签。

您可以阅读 more here .

关于android - AAPT2 错误 : check logs for details: unknown element <action> found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47015116/

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