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
I am developing an application in Flutter. I packaged it as rpm. But when I install it on the device, the application is installed to "/usr/share/{{MY_PACKAGE_NAME}}/{{MY_APP_NAME}}". Then it tries to make a symbolic link from /usr/share/{{MY_PACKAGE_NAME}}/{{MY_PACKAGE_NAME}} under /usr/bin/. In other words, it makes the wrong path a symbolic link. What should I do?
I am developing an application in Flutter. I packaged it as rpm. But when I install it on the device, the application is installed to "/usr/share/{{MY_PACKAGE_NAME}}/{{MY_APP_NAME}}". Then it tries to make a symbolic link from /usr/share/{{MY_PACKAGE_NAME}}/{{MY_PACKAGE_NAME}} under /usr/bin/. In other words, it makes the wrong path a symbolic link. What should I do?
Installed Location :
/usr/share/{{MY_PACKAGE_NAME}}/{{MY_APP_NAME}}
symbolic Link
/usr/bin/{{MY_PACKAGE_NAME}} -> /usr/share/{{MY_PACKAGE_NAME}}/{{MY_PACKAGE_NAME}}
The process that needs to happen is this
/usr/bin/{{MY_APP_NAME}} -> /usr/share/{{MY_PACKAGE_NAME}}/{{MY_APP_NAME}}
The text was updated successfully, but these errors were encountered: