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
It is usual situation to have different sets of values for debug and production version of application - different Base Urls for example. Also while some values have to differ from one build type to another, other values should be equal. So one should have a way to declare values in different parts of Gradle script.
So I tried to declare paperwork block in buildTypes section of my build.gradle. But I always get values from Release build type in my paperwork.json file. Also I tried to add paperwork block in the root of my build.gradle for values that common for all build types, but in this case values from buildTypes section have not been included in resulting json file.
So, any suggestions how to deal with this?
The text was updated successfully, but these errors were encountered:
It is usual situation to have different sets of values for debug and production version of application - different Base Urls for example. Also while some values have to differ from one build type to another, other values should be equal. So one should have a way to declare values in different parts of Gradle script.
So I tried to declare paperwork block in
buildTypes
section of mybuild.gradle
. But I always get values fromRelease
build type in mypaperwork.json
file. Also I tried to add paperwork block in the root of mybuild.gradle
for values that common for all build types, but in this case values frombuildTypes
section have not been included in resulting json file.So, any suggestions how to deal with this?
The text was updated successfully, but these errors were encountered: