Am I fundamentally misunderstanding the identifier Tauri configuration? #9670
Unanswered
Almost-Senseless-Coder
asked this question in
Q&A
Replies: 1 comment 1 reply
-
You're not fundamentally misunderstanding it. As far as i know the issue here is just that the team has not decided how to handle platform differences yet. Namingly the main issue is that android only supports Anyway, i don't think the people that have to see this will see this here so please instead open a normal issue about this and clearly communicate the solution you want so that the issue doesn't get closed as a os difference problem. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As per this discussion, Tauri follows the reverse domain notation for app identifiers, as per the
identifier
setting intauri.conf.json
.So an app named
jack-point
byalmost-senseless.tech
would lead to an identifier like so:tech.almost-senseless.jack-point
.That used to work splendidly. Since (at least) beta 14 of the
tauri-cli
, though, That leads to this error message when runningcargo tauri android init
:Setting
identifier
totech.almost-senseless
works, but when we open the generated project in Android Studio, its package name istech.jack_point
. Renaming the identifier totech.almostsenseless.jackpoint
also works and results in the Android namespacetech.almostsenseless.jack_point
. What I want to see istech.almost_senseless.jack_point
for the Android package names, andtech.almost-senseless.jack-point
otherwise.Is this a bug or am i fundamentally misunderstanding the
identifier
setting?Beta Was this translation helpful? Give feedback.
All reactions