Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android RootURI may not exist when used for storage #3207

Closed
2 tasks done
PaulDotSH opened this issue Aug 14, 2022 · 2 comments
Closed
2 tasks done

Android RootURI may not exist when used for storage #3207

PaulDotSH opened this issue Aug 14, 2022 · 2 comments
Assignees
Labels
blocker Items that would block a forthcoming release bug Something isn't working

Comments

@PaulDotSH
Copy link

Checklist

  • I have searched the issue tracker for open issues that relate to the same problem, before opening a new one.
  • This issue only relates to a single bug. I will open new issues for any other problems.

Describe the bug

When creating a new file on storage.Child(ROOTURI, "file.json"), on desktop this works as expected but on mobile this uri links to app.pkg.id/fyne/file.json instead of app.pkg.id/file.json

How to reproduce

Try to write to a file in android and desktop version of a fyne app using something similar to
storage.Child(fyne.CurrentApp().Storage().RootURI(), "foo.json")

Screenshots

No response

Example code

func saveState() error {
	uri, e := storage.Child(fyne.CurrentApp().Storage().RootURI(), "foo.json")

	if e != nil {
		return e
	}
	return writeToFile(uri, []byte("Foo"))
}

func writeToFile(path fyne.URI, content []byte) error {
	w, e := storage.Writer(path)

	if e != nil {
		return e
	}
	_, e = w.Write(content)
	if e != nil {
		return e
	}
	return nil
}

func init() {
fmt.Println(saveState()) //file:///.... pkg.app.id/fyne/foo.json not found
}

Fyne version

2.2.2 (latest at the time of writing this)

Go compiler version

1.19

Operating system

Other (specify below)

Operating system version

Arch Linux and Android 10, replicated on android 8 too

Additional Information

No response

@PaulDotSH PaulDotSH added the unverified A bug that has been reported but not verified label Aug 14, 2022
@andydotxyz andydotxyz changed the title Discrepancy in storage system between desktop and android Android RootURI may not exist when used for storage Sep 13, 2022
@andydotxyz
Copy link
Member

Updated the title as the issue here is that it does not exist rather than it is wrong. If you look at how desktop works there is also a "fyne" directory in the path to avoid collisions. It is further up the path because we don't have to handle sandboxes.
To fix this we should ensure the storage exists for apps that are not using preferences (as that would create it).

@andydotxyz andydotxyz added bug Something isn't working and removed unverified A bug that has been reported but not verified labels Sep 13, 2022
@andydotxyz andydotxyz added this to the Fixes (v2.2.x) milestone Sep 13, 2022
@andydotxyz andydotxyz added the blocker Items that would block a forthcoming release label Oct 4, 2022
@andydotxyz andydotxyz self-assigned this Feb 3, 2023
andydotxyz added a commit to andydotxyz/fyne that referenced this issue Feb 5, 2023
@andydotxyz
Copy link
Member

Resolved for next release

andydotxyz added a commit to andydotxyz/fyne that referenced this issue Feb 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocker Items that would block a forthcoming release bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants