roAppInfo returns information about the application.

Supported Interfaces

Description

roAppInfo retrieves the developer ID, which can be useful during development. It also retrieves manifest values, such as the title and version number, avoiding the need to parse the manifest file from BrightScript. 

This object is created with no parameters.

 

Example code
appInfo = CreateObject("roAppInfo")

print "     ID: " ; appInfo.GetID()
print "  IsDev: " ; appInfo.IsDev()
print "  DevID: " ; appInfo.GetDevID()
print "  Title: " ; appInfo.GetTitle()
print "Version: " ; appInfo.GetVersion()
print "MajVers: " ; appInfo.GetValue("major_version")
Example output
'      ID: 41089_bd3a
'   IsDev: false
'   DevID: 990df3584920876b7e74fe7b29e1f505f148373b
'   Title: BrightScript Test
' Version: 1.0.0
' MajVers: 1