Check for existing issues
Describe the feature
Need an API that can launch a specified external activity and pass a content URI.
My LOVE Launcher has long been unable to directly launch love-android to run .love files.
If this API were available, I could run games directly on love-android, achieving native-level performance and optimal compatibility, while avoiding the need to embed libraries like love.js, which would increase the plugin’s size and introduce unnecessary complexity.
If applicable, add mockups / screenshots to help present your vision of the feature
I’ve noticed that Acode’s system module actually already has two functions that each fulfill half of what I need:
launchApp can launch a specified activity but cannot pass files, while fileAction can construct a content URI to pass files but only allows specifying an action rather than an activity.
The new feature could combine these two.
Check for existing issues
Describe the feature
Need an API that can launch a specified external activity and pass a content URI.
My LOVE Launcher has long been unable to directly launch love-android to run
.lovefiles.If this API were available, I could run games directly on love-android, achieving native-level performance and optimal compatibility, while avoiding the need to embed libraries like love.js, which would increase the plugin’s size and introduce unnecessary complexity.
If applicable, add mockups / screenshots to help present your vision of the feature
I’ve noticed that Acode’s system module actually already has two functions that each fulfill half of what I need:
launchAppcan launch a specified activity but cannot pass files, whilefileActioncan construct a content URI to pass files but only allows specifying an action rather than an activity.The new feature could combine these two.