Note: the original question here pertains to the ability to share objects to an app, i.e. move them from private to shared.
The read/write permission on an individual object are a related-but-different matter. That being said ...
though I edited the access permissions of the app to "power " however when I looked into the permission of the objects in the app they still donot have power user read/write... do I need to explicitly check the option in the objects as well ?
Objects within an app only inherit the app-level permission if they lack an explicit permission themselves. This is commonly the case for objects that ship with an app by default.
Objects created via UI, CLI, or REST API typically have explicit permissions. In this case, you must grant write permission on the objects themselves, to make them editable by the desired roles.
... View more