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
We sometimes add the suffix like debug to the package name for debug build by applicationIdSuffix '.debug'. But current hyperion-build-config plugin loads by getPackageName() + ".BuildConfig".
It means we can only load BuildConfig that is under same package with build's package name. Android build doesn't replace the package of the classes, so if we change the package name, there are difference with build's package name and BuildConfig package.
Could you please provide us with the way to change the setting ?
The text was updated successfully, but these errors were encountered:
We sometimes add the suffix like
debug
to the package name for debug build byapplicationIdSuffix '.debug'
. But current hyperion-build-config plugin loads bygetPackageName() + ".BuildConfig"
.https://github.com/willowtreeapps/Hyperion-Android/blob/develop/hyperion-build-config/src/main/java/com/willowtreeapps/hyperion/buildconfig/list/BuildConfigListActivity.java#L50
It means we can only load
BuildConfig
that is under same package with build's package name. Android build doesn't replace the package of the classes, so if we change the package name, there are difference with build's package name andBuildConfig
package.Could you please provide us with the way to change the setting ?
The text was updated successfully, but these errors were encountered: