본문 바로가기
Development Solutions/Flutter & Dart

[flutter] AAPT: error: unexpected element <queries> found in <manifest>.

by studio ODOC 2021. 11. 24.
반응형

 

문제 상황

flutter 프로젝트 빌드 중에 아래와 같은 에러메시지가 표시되고 빌드에 실패합니다.

 

AAPT: error: unexpected element <queries> found in <manifest>.

 

 

 

 

 

해결 방법

구글에서 이 문제에 대해 제공한 android gralde 플러그인의 패치 버전으로 적용해야합니다.

아래 버전 중 하나를 골라서 변경한다. (예: classpath 'com.android.tools.build:gradle:4.0.1' )

 

  • 3.3.3
  • 3.4.3
  • 3.5.4
  • 3.6.4
  • 4.0.1

 

 

https://android-developers.googleblog.com/2020/07/preparing-your-build-for-package-visibility-in-android-11.html

 

Preparing your Gradle build for package visibility in Android 11

Posted by David Winer , Product Manager One of the central themes for Android 11 has been protecting user privacy. On Android 10 an...

android-developers.googleblog.com

 

 

 

https://www.google.com/search?q=AAPT%3A+error%3A+unexpected+element+%3Cqueries%3E+found+in+%3Cmanifest%3E.&rlz=1C1IBEF_koKR957KR957&oq=AAPT%3A+error%3A+unexpected+element+%3Cqueries%3E+found+in+%3Cmanifest%3E.&aqs=chrome..69i57j69i58.205j0j7&sourceid=chrome&ie=UTF-8 

 

AAPT: error: unexpected element <queries> found in <manifest>. - Google 검색

The fact that this occurs from manifest merger means that simply upgrading a dependency might bring about this error. For example, if you ...

www.google.com

 

반응형