<?xml version="1.0" encoding="utf-8"?>
<installer-gui-script minSpecVersion="1">
    <title>Dynamic Web TWAIN Service Setup</title>
    <background mime-type="image/png" file="packagemark.png" scaling="proportional"/>
    <background-darkAqua mime-type="image/png" file="packagemark2.png" scaling="proportional"/>
    <license file="license.rtf"/>
    <options customize="never" allow-external-scripts="no"/>
    <domains>
        <domain>user</domain>
    </domains>
    <installation-check script="installCheck();"/>
    <script>
function installCheck() {
    if(!(system.compareVersions(system.version.ProductVersion, '10.15.0') &gt;= 0)) {
        my.result.title = 'Unable to install';
        my.result.message = 'Dynamsoft Service Setup requires Mac OS X 10.15 or later.';
        my.result.type = 'Fatal';
        return false;
    }
    return true;
}
    </script>
    <choices-outline>
        <line choice="DynamicWebTWAINServiceSetup"/>
    </choices-outline>
    <choice id="DynamicWebTWAINServiceSetup" title="Dynamic Web TWAIN Service Setup">
        <pkg-ref id="DynamicWebTWAINServiceSetup.pkg"/>
    </choice>
    <pkg-ref id="DynamicWebTWAINServiceSetup.pkg" auth="Root" packageIdentifier="com.dynamsoft.com.dynamsoftServiceSetup.dynamsoftservice.pkg" version="1.9" installKBytes="30824">#DynamicWebTWAINServiceSetup.pkg</pkg-ref>
    <pkg-ref id="DynamicWebTWAINServiceSetup.pkg">
        <bundle-version/>
    </pkg-ref>
</installer-gui-script>