Calculated attributes cannot be used on pages that are accessible through a native profile

0
Hello Mendix community!   How can I resolve the error 'calculated attributes cannot be used on pages that are accessible through a native profile' and still use calculated attributes on pages accessible through a native profile?  
asked
1 answers
0

Calculated attributes are being calculated in microflows which might not be available from a native app in case the device does not have a network connection (microflows run server-side). Hence, calculated attributes are not available in native apps. You will have to build your own calculation logic in nanoflows.

answered