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
James has to crate a new Resource Rate for every combination of amenities. Because we need the same rate names (Premium desk, Standard meeting room, etc.), she will end up with many indistinguishable rates. To limit the number of rates, sharing rates across multiple locations was suggested.
😱 This is unmaintainable. James won’t be able to keep the right amenities and rates assigned to the right resources. As a result, data will be corrupted, prices incorrect and users irritated.
Also by keeping rate name as desk group name, we end up with rates (and desk group names) with number suffix. That has severe negative impact on end-user experience.
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
The only correct way how to create unsigned APK with React Native
TLDR;
Within andorid/app/build.gradle file, define stagingbuild type, set bundleInStaging to true and produce unsigned APK by running ./gradlew assembleStaging
Too many cooks
There are many different suggestions on how to use react-native bundle command to produce React Native JavaScript bundle together with other resources and put them to the correct place so that ./assembleDebug can take them and create unsigned APK.