Skip to content

Creation of multiple App Ids for Debug and release in package.json #4410

@rg777

Description

@rg777

The article below explains the need to have two seperate android apps for debug and release purposes in order to keep the analytics data clean.

https://firebase.googleblog.com/2016/08/organizing-your-firebase-enabled-android-app-builds.html?m=1

defaultConfig { applicationId "com.company.project" // etc... } buildTypes { debug { applicationIdSuffix ".debug" } release { // etc... } }

From Nativescript 5.0.0+, the app ids mention have to be done in package.json as explained in the following link:
https://docs.nativescript.org/tooling/changing-appid

"nativescript": { "id": "org.nativescript.myappid" }

However the documentation only mentions regarding a single ID for the project.
Is there any way to work with multiple IDs for android itself (debug and release IDs)?

Activity

codytooker

codytooker commented on Jul 15, 2019

@codytooker

@rg777 have you discovered a way around this. I need to do the same thing for IOS and Android as I need different applications for QA testing purposes.

rg777

rg777 commented on Jul 16, 2019

@rg777
Author

Not Yet. :(

pap5508

pap5508 commented on Jul 13, 2021

@pap5508

@rg777 @codytooker : any update on this ? I am doing similar things but no solution found yet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @Fatme@pap5508@codytooker@rg777

        Issue actions

          Creation of multiple App Ids for Debug and release in package.json · Issue #4410 · NativeScript/nativescript-cli