I am not sure if this is a bug or maybe a misunderstanding caused by the documentation. If the latter, the documentation should be extended in my opinion to help flutter beginners.
For the Windows Setup it says:
Add this inclusion in \windows\runner\main.cpp
#include "app_links/app_links_plugin_c_api.h"
but VS Code cannot find "app_links/app_links_plugin_c_api.h", event after the package has been installed via the pubspec.
Instead, it is required to manually copy the source files found in https://github.com/llfbandit/app_links/tree/master/app_links into our flutter project. E.g. if I want to support Windows, I need to copy the "windows" folder into the root of my project.
I am not sure if this is a bug or maybe a misunderstanding caused by the documentation. If the latter, the documentation should be extended in my opinion to help flutter beginners.
For the Windows Setup it says:
but VS Code cannot find "app_links/app_links_plugin_c_api.h", event after the package has been installed via the pubspec.
Instead, it is required to manually copy the source files found in https://github.com/llfbandit/app_links/tree/master/app_links into our flutter project. E.g. if I want to support Windows, I need to copy the "windows" folder into the root of my project.