Rate This Document
Findability
Accuracy
Completeness
Readability

Querying Component Version Information

You can use either of the following methods to obtain the version information about the base engine component and video stream engine component:

Method 1: using the obtained software packages

  1. Refer to Video Stream Engine and obtain BoostKit-baseengine_*.zip and BoostKit-videoengine_*.zip and decompress them to obtain the version files.
  2. Check the version of the base engine component. The audio engine is used as an example. The procedure for checking the version of the touch engine is the same.
    1
    2
    3
    unzip BoostKit-baseengine_*.zip
    tar -xvf  AudioEngine.tar.gz vendor/etc/baseengine_version.txt
    cat vendor/etc/baseengine_version.txt
    

    The command output is the version information of the base engine component. An example is as follows:

    1
    2
    3
    4
    5
    Product Name: Kunpeng BoostKit
    Product Version: 23.0.0
    Component Name: BoostKit-baseengine
    Component Version: 5.0.0
    Component AppendInfo: 11.0.0_r48
    
  3. Check the version of the video stream engine component.
    1
    2
    3
    unzip BoostKit-videoengine_*.zip
    tar -xvf  VideoEngine.tar.gz vendor/etc/videoengine_version.txt
    cat vendor/etc/videoengine_version.txt
    

    The command output is the version information of the video stream engine component. An example is as follows:

    1
    2
    3
    4
    5
    Product Name: Kunpeng BoostKit
    Product Version: 23.0.0
    Component Name: BoostKit-videoengine
    Component Version: 5.0.0
    Component AppendInfo: 11.0.0_r48
    

Method 2: using a started container

  1. Access a started container. In the command, ${index} indicates the ID of a container instance.
    1
    docker exec -it android_${index} sh 
    
  2. Check the version of the base engine component.
    1
    cat /system/vendor/etc/baseengine_version.txt
    

    The command output is similar to that in method 1.

  3. Check the version of the video stream engine component.
    1
    cat /system/vendor/etc/videoengine_version.txt
    

    The command output is similar to that in method 1.