Hi MortenL,
Unfortunatly you can not use information from "android binary" app settings tab.
So you need to implement this logic your self.
I can suggest you two ways:
1 Create new JS asset and fill it with following code:
pre
self.appInfo = {
version: "123.123",
build: "345.345"
};
/pre
Then you can access to this info with following code:
pre
//Get version.
var version = self.appInfo.version;
//Get build.
var build = self.appInfo.build;
/pre
2 Create some collection in your DB. With collumns "fieldName" and "fieldValue" and request this collection when you need info(for example when your dialog page will be displayed).
Regards.