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
Adds the possibility to append an application id suffix to the current application id. The suffix must start with a '.' character, in order to reflect the way it is declared in the gradle build file.
Cool! I'm wondering if this could be automatically detected, since there is only ever one suffix active at a time? I would find it annoying to have to set this manually every time, I feel it should be automatic.
The suffix - if any - depends on the build variant you want to build. So you might want to built the debug one using ./gradlew assembleDebug with a ".debug" suffix and then the release one using ./gradlew assembleRelease for example. That said, I don't see how replicant can easily be aware of it. One way I can think of it being possible is that it could look in the apk folder and identify the latest apk built, parse its name, then parse the app build file to check the config blocks for that variant and determine if there's a suffix defined for it. That's maybe a bit overkill.
Thinking about it, this command isn't so useful after all. It merely saves you some typing (!package "app.debug" vs. !suffix ".debug").
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the possibility to append an application id suffix to the current application id. The suffix must start with a '.' character, in order to reflect the way it is declared in the gradle build file.