You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There were zero changes to do.
When compiling with the standard flutter compiler it works.
But, when compiling it with hover it fails with :
Unhandled Exception: FileSystemException: Cannot open file, path = '/Users/apple/Library/Preferences/io.wiredash/wiredash_example
The fix was to make the folder and then everything works
SO makes me wonder if the hover plugin has a bug ?
Maybe add creation of the Folders as part of the code generated code below ?
package main
// DO NOT EDIT, this file is generated by hover at compile-time for the path_provider plugin.
import (
flutter "github.com/go-flutter-desktop/go-flutter"
path_provider "github.com/go-flutter-desktop/plugins/path_provider"
)
func init() {
// Only the init function can be tweaked by plugin maker.
options = append(options, flutter.AddPlugin(&path_provider.PathProviderPlugin{
VendorName: flutter.ProjectOrganizationName,
ApplicationName: flutter.ProjectName,
}))
}
The text was updated successfully, but these errors were encountered:
I am porting https://github.com/wiredashio/wiredash-sdk to work with go-flutter.
There were zero changes to do.
When compiling with the standard flutter compiler it works.
But, when compiling it with hover it fails with :
Unhandled Exception: FileSystemException: Cannot open file, path = '/Users/apple/Library/Preferences/io.wiredash/wiredash_example
The fix was to make the folder and then everything works
SO makes me wonder if the hover plugin has a bug ?
Maybe add creation of the Folders as part of the code generated code below ?
The text was updated successfully, but these errors were encountered: