Не удалось продолжить при реализации map_view - PullRequest
0 голосов
/ 07 июня 2019

Я пытаюсь реализовать map_view внутри моего приложения, но когда я предоставляю зависимости и затем запускаю приложение, оно показывает некоторую ошибку. И я не знаю, как это исправить.

Моя ошибка: - * Ошибка при запуске Gradle: ProcessException: процесс "D: \ development \ flutter \ flutter_course \ android \ gradlew.bat" был аварийно завершен:

Настройка проекта: map_view ВНИМАНИЕ: указанная версия Android SDK Build Tools (27.0.3) игнорируется, так как она ниже минимально поддерживаемой версии (28.0.3) для Android Gradle Plugin 3.2.1. Будут использоваться инструменты сборки Android SDK 28.0.3. Чтобы подавить это предупреждение, удалите «buildToolsVersion '27 .0.3 '» из файла build.gradle, поскольку каждая версия подключаемого модуля Android Gradle теперь имеет версию инструментов сборки по умолчанию. ************************************************** ******* ВНИМАНИЕ: Эта версия shared_preferences нарушит вашу сборку Android, если она или ее зависимости не совместимы с AndroidX. Это предупреждение печатается для всех сбоев сборки Android. Настоящая причина ошибки может быть не связана. ************************************************** *******

FAILURE: сборка не удалась, исключение.

  • Что пошло не так: Плагин Android Gradle поддерживает только плагин Kotlin Gradle версии 1.2.51 и выше. Проект "Android" использует версию 1.1.2-4.

Мой build.gradle: -

buildscript {
    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.2-4'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Мой файл pubspec.yaml: -

name: flutter_course
description: A new Flutter project.

# The following defines the version and build number for your application.
# A version number is three numbers separated by dots, like 1.2.43
# followed by an optional build number separated by a +.
# Both the version and the builder number may be overridden in flutter
# build by specifying --build-name and --build-number, respectively.
# In Android, build-name is used as versionName while build-number used as versionCode.
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.0+1

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
  scoped_model: ^1.0.1
  http: ^0.12.0+2
  shared_preferences: ^0.5.3+1
  rxdart: ^0.22.0
  map_view: ^0.0.14

dev_dependencies:
  flutter_test:
    sdk: flutter


# For information on the generic Dart part of this file, see the
# following page: https://www.dartlang.org/tools/pub/pubspec

# The following section is specific to Flutter.
flutter:

  # The following line ensures that the Material Icons font is
  # included with your application, so that you can use the icons in
  # the material Icons class.
  uses-material-design: true

  # To add assets to your application, add an assets section, like this:
  assets:
   - assets/race.jpg
   - assets/bg.jpg
  #  - images/a_dot_ham.jpeg

  # An image asset can refer to one or more resolution-specific "variants", see
  # https://flutter.io/assets-and-images/#resolution-aware.

  # For details regarding adding assets from package dependencies, see
  # https://flutter.io/assets-and-images/#from-packages

  # To add custom fonts to your application, add a fonts section here,
  # in this "flutter" section. Each entry in this list should have a
  # "family" key with the font family name, and a "fonts" key with a
  # list giving the asset and other descriptors for the font. For
  # example:
  fonts:
    - family: Oswald
      fonts:
        - asset: assets/Oswald-Bold.ttf
          weight: 700
  #       - asset: fonts/Schyler-Italic.ttf
  #         style: italic
  #   - family: Trajan Pro
  #     fonts:
  #       - asset: fonts/TrajanPro.ttf
  #       - asset: fonts/TrajanPro_Bold.ttf
  #         weight: 700
  #
  # For details regarding fonts from package dependencies,
  # see https://flutter.io/custom-fonts/#from-packages
analyzer:
  strong-mode: true
  language:
    enableSuperMixins: true

1 Ответ

0 голосов
/ 07 июня 2019

Измените версию kotlin на 1.2.51

  classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.51 

И проверьте targetSdkVersion в приложении -> buildGradle, если оно меньше 28, измените его на 28

Дайте мне знать, если естьпроблема

...