Reputation: 23
I'm failed to Integrated the three different transaction/ work with device pattern of Genexus. APK files are individually generated. Three apk for three transaction table. how can i develop into a single apk file?
Upvotes: 0
Views: 355
Reputation: 101
What I do is to create a dashboard object and make it the Main program with the property Main program = True
, then all the remaining WWSD, Dashboards, and SDPanels are included like Actions
for this main dashboard.
You should check that in the Main programs section of Folder View there are only those that you need. The other ones could be removed setting
Main program = False
Upvotes: 0
Reputation: 9619
One APK is generated per SmartDevice Main object. You can create many SDPanels, Dashboard and/or WWSD pattern object and how those interact will define what gets included in your APK. Just one of them should be a Main Object, and that's the starting point of your app, your first panel.
Take a look a this document for more info
Upvotes: 1