First Flutter App error: cannot resolve symbol “Properties”

This issue is due to not pointing to correct Android API Platform

Solution :

In the Android Studio
File > Project Structure

  1. Now a window pops up
  2. Within that select Project Settings/Project
  3. Make sure Project SDK is set to latest platform as mentioned in the pic below

enter image description here

  1. Next select Project Settings/Modules sub tab
  2. There select the lastest Android SDK as you did in step-3

enter image description here

  1. Finally replace the GradleException() with FileNotFoundException() as mentioned below

enter image description here

Leave a Comment