Я создаю приложение Flutter и только что добавил пакеты mime и http_parser. После этого я получил следующую ошибку при сборке:
<appname>\build\app\intermediates\merged_manifests\debug\AndroidManifest.xml:35: AAPT: error: resource integer/google_play_services_version (aka com.att.fluttercount:integer/google_play_services_version) not found.
До сих пор приложение работало просто отлично. Я отклонил свои изменения, включая удаление пакетов из pubspec.yaml, но ошибка не исчезла.
Вот соответствующая часть моего pubspec.yaml:
environment:
sdk: ">=2.1.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.2
flutter_map: ^0.5.0+1
scoped_model: ^1.0.1
rxdart: ^0.21.0
flutter_masked_text: ^0.8.0
image_picker: ^0.5.0+9
webview_flutter: ^0.3.6
sqflite: ^1.1.5
http: ^0.12.0+2
#mime: ^0.9.6+2
#http_parser: ^3.1.3
# Must use 'any' as the version of path_provider, because other packages depend on
# earlier versions of path_provider.
path_provider: any
# Note: Must use 'any' as the version of uuid, because some dependencies of flutter_map
# depend on earlier versions of uuid.
uuid: any
dev_dependencies:
flutter_test:
sdk: flutter
У кого-нибудь есть предложения по исправлению этой ошибки?