in Education by
map_view plugin is no longer maintained and let users with problems if the min sdk is up to 28, so luckily Eimji fork a modified version of the package but it's only on github https://github.com/Eimji/flutter_google_map_view and not on https://pub.dartlang.org I search to add his fork to my pubspec.yaml. I tried flutter_google_map_view: git://github.com/Eimji/flutter_google_map_view.git Thank you Update I changed name by map_view it seems accepted ... but when I use flutter_google_map_view I have Error on line 1, column 7 of flutter_google_map_view\pubspec.yaml: "name" field doesn't match expected name "flutter_google_map_view". I don't know why map_view "works" but not mapview ...So I don't know if it's really accepted or the great methode ... So now I have other issue when I upload my local map_view package ... * Error running Gradle: Exit code 1 from: C:\Users\utilisateur\AndroidStudioProjects\nirbi\android\gradlew.bat app:properties: WARNING: The specified Android SDK Build Tools version (25.0.3) is ignored, as it is below the minimum supported version (27.0.3) for Android Gradle Plugin 3.1.2. Android SDK Build Tools 27.0.3 will be used. To suppress this warning, remove "buildToolsVersion '25.0.3'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools. WARNING: The specified Android SDK Build Tools version (25.0.3) is ignored, as it is below the minimum supported version (27.0.3) for Android Gradle Plugin 3.1.2. Android SDK Build Tools 27.0.3 will be used. To suppress this warning, remove "buildToolsVersion '25.0.3'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools. WARNING: The specified Android SDK Build Tools version (25.0.3) is ignored, as it is below the minimum supported version (27.0.3) for Android Gradle Plugin 3.1.2. Android SDK Build Tools 27.0.3 will be used. To suppress this warning, remove "buildToolsVersion '25.0.3'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools. FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':map_view'. > Failed to notify project evaluation listener. > java.lang.AbstractMethodError (no error message) I search buildToolsVersion '25.0.3 from my build.gradle file , but nothing like this. So I add buildToolsVersion '28.0.3' in build.gradle but have always the same error ... Update I remove all "buildToolsVersion '25.0.3'" it seem working and now I have this last issue : * Error running Gradle: Exit code 1 from: C:\Users\utilisateur\AndroidStudioProjects\nirbi\android\gradlew.bat app:properties: FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':map_view'. > Failed to notify project evaluation listener. > java.lang.AbstractMethodError (no error message) I think map_view is not correctly accepted ... Update Some suggestions to simply import this github package https://github.com/Eimji/flutter_google_map_view to pubspec.yaml ? when I use flutter_google_map_view: git: git://github.com/Eimji/flutter_google_map_view.git I have this error ... Git error. Command: git clone --mirror git://github.com/munificent/map_view.git C:\Users\utilisateur\AppData\Roaming\Pub\Cache\git\cache\map_view-84b47933c6a730a2f0624a589576e53be480ad60 Cloning into bare repository 'C:\Users\utilisateur\AppData\Roaming\Pub\Cache\git\cache\map_view-84b47933c6a730a2f0624a589576e53be480ad60'... Update I tried my last chance ! import map_view: ^0.0.14 (no compatible android X) and add manualy all modification did by Eimji https://github.com/Eimji/flutter_google_map_view/commit/5b631c499783936dfc462039274a6f5c59323068#diff-7ae5a9093507568eabbf35c3b0665732 I have this error * Error running Gradle: Exit code 1 from: C:\Users\utilisateur\AndroidStudioProjects\nirbi\android\gradlew.bat app:properties: FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':map_view'. > Failed to notify project evaluation listener. > java.lang.AbstractMethodError (no error message) JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
See https://www.dartlang.org/tools/pub/dependencies#git-packages dependencies: kittens: git: url: git://github.com/munificent/kittens.git ref: some-branch If pubspec.yaml is not in the root directory you can also specify a path dependencies: kittens: git: url: git://github.com/munificent/cats.git path: path/to/kittens

Related questions

0 votes
    I do not want to retrieve the review's "state" ( e.g., 'open', 'closed' ) but rather ... questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
0 votes
    What does the command git add . do? A. Adds all the files to repo B. Adds all the files to the staging area C. Adds all the files to the local directory D. None of the options...
asked Dec 17, 2022 in Education by JackTerrance
0 votes
    I want to get access to the pubspec.yaml and read its properties from dart code in my Flutter application ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 17, 2022 in Education by JackTerrance
0 votes
    How can you fix a broken commit? A. git reset B. git commit –amend C. git fix D. git rebase...
asked Dec 23, 2022 in Technology by JackTerrance
0 votes
    How can you temporarily switch to a different commit? A. git reset commitSHA B. git commit commitSHA C. git checkout commitSHA D. all the above options...
asked Dec 21, 2022 in Technology by JackTerrance
0 votes
    How to delete unpublished Git commits and get rid of them permanently? A. git reset –hard B. git revert C. git reset –soft...
asked Dec 20, 2022 in Technology by JackTerrance
0 votes
    How to display only the names of the changed files? A. git diff –name-only B. git log C. git status D. None of the options...
asked Dec 17, 2022 in Technology by JackTerrance
0 votes
    I pulled a project from GitHub a few days ago. I've since discovered that there are several forks on GitHub, ... those forks I pulled? Select the correct answer from above options...
asked Feb 2, 2022 in Education by JackTerrance
0 votes
    ChatOps helps in _________. A. Improving Transparency B. Improving Collaboration C. Improving Team Productivity D. All the options mentioned...
asked Dec 23, 2022 in Technology by JackTerrance
0 votes
    A tag in Git context is a ______. A. Keyword B. Reference to a specific commit C. Search String...
asked Dec 23, 2022 in Technology by JackTerrance
0 votes
    What is the Git command to skip staging and commit the changes directly? A. git skip stage B. git commit C. git commit -a -m “message” D. git add changes...
asked Dec 21, 2022 in Technology by JackTerrance
0 votes
    What does the command git checkout branchname do? A. Adds the new branch B. Switches from main branch to the new branch C. Commits the new branch D. Deletes the new branch...
asked Dec 21, 2022 in Technology by JackTerrance
0 votes
    What is the Git command to view all the changes since the last commit ? A. git clean B. git status C. git changes D. git commit...
asked Dec 21, 2022 in Technology by JackTerrance
0 votes
    What is the Git command to view all the commits since 1st January 2017 ? A. show git log since Jan 1 2017 B. git log ... =”2017-01-01” C. git log D. None of the options...
asked Dec 21, 2022 in Technology by JackTerrance
0 votes
    What is the Git command to view the last 3 commits in one line ? A. git show log -3 B. git last 3 commits C. git log D. git log -–oneline -3...
asked Dec 21, 2022 in Technology by JackTerrance
...