dodorare / crossbow

Cross-Platform build tools and toolkit for games and game engines written in Rust! 🦀

Home Page:https://crossbow.dodorare.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support custom package name/id

comcloudway opened this issue · comments

The naming scheme used by android apks normally involves using the domain, e.g. com.google.<package name>.

Right now crossbundle seema to force com.rust.<package name> as the package name, as can be seen here :

package: app_id.unwrap_or(format!("com.rust.{}", package_name.replace('-', "_"))),

Maybe I'm missing something but I don't really see, why the user shouldn't be able to specify the package name, like they are when using cargo-quad-apk (see here ).

I think there should be a package_name = "toplevel.domain.name" option in the Cargo.toml file

EDIT: added links