Home > OS >  Flutter: Checking the licenses in platform-tools
Flutter: Checking the licenses in platform-tools

Time:03-18

When running flutter project, here comes the warning:

Checking the license for package SDK Patch Applier v4 in E:\platform-tools_r31.0.3-windows\licenses
Warning: License for package SDK Patch Applier v4 not accepted.
Checking the license for package Android Emulator in E:\platform-tools_r31.0.3-windows\licenses
Warning: License for package Android Emulator not accepted.
Checking the license for package Android SDK Tools in E:\platform-tools_r31.0.3-windows\licenses
Warning: License for package Android SDK Tools not accepted.
Checking the license for package Android SDK Build-Tools 29.0.2 in E:\platform-tools_r31.0.3-windows\licenses
Warning: License for package Android SDK Build-Tools 29.0.2 not accepted.
Checking the license for package Android SDK Platform 31 in E:\platform-tools_r31.0.3-windows\licenses
Warning: License for package Android SDK Platform 31 not accepted.

But I find that there isn't a package named E:\platform-tools_r31.0.3-windows\licenses, just like the picture enter image description here

So what could be the problem? And how to solve it? Thanks for your help.

CodePudding user response:

Android SDK path of your flutter project is not defined..

Define it with

flutter config --android-sdk 'Your SDK Path'

  • Related