Handling Product Versions
Prerequisites
Defining App Version
std::shared_ptr<Configuration> pConfiguration = Configuration::Create(
EncryptStr( "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" ),
EncryptStr( "XXXXXXXXX-XXXXX-XXXXXXXXXXXXX_XXXXXX_XXXXXX" ),
EncryptStr( "XXXXXX" ),
appName, appVersion, options );var configuration = new LicenseSpring.Configuration(
apiKey: "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
sharedKey: "XXXXXXXXX-XXXXX-XXXXXXXXXXXXX_XXXXXX_XXXXXX",
productCode: "PRODUCT SHORT CODE",
appName: "My application",
appVersion: "v5.2" );LicenseSpringConfiguration configuration = LicenseSpringConfiguration.builder()
.apiKey( "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX" )
.productCode( "javaproduct" )
.sharedKey( "XXXXXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXX" )
.appName( "NAME" )
.appVersion( "VERSION" )
.build();let configuration = Configuration(
apiKey: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
sharedKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
productCode: "XX"
)
configuration.appName = "My LicenseSpring Application"
configuration.appVersion = "1.0.0"appVersion = pConfiguration->getAppVersion();appVersion = pConfiguration.AppVersion();appVersion = pConfiguration.getAppVersion();configuration.appVersionRetrieving Installation Files
Getting Latest Installation File During Online License Check
Getting All Installation Files
InstallationFile Class Overview and Intermediate Updates
Was this helpful?