I need to read some parameters from main.lua on app Launch
EXPLAINATION
-
I will open the already installed app “mySampleApp” from a website using javascript
<html> <head></head> <body> <script type=“text/javascript”> window.open(“mySampleApp://”,"_self") </script> Hello </body> </html>
It works fine !!!
-
I need to read some parameters when i open the app like below
window.open(“mySampleApp://myParameters”,"_self")
There is a way to read the parameters myParameters ???
Thank you for help