PIco4 released a VR application developed using UNITY in apk format. A parsing error occurred during installation.

Reference links:

adb install APK error Failure [INSTALL_FAILED_TEST_ONLY: installPackageLI]_The caller is not allowed to test the test program_Xiaolong's blog in Shandong-CSDN blog

Pico Developer Answers

Complete project configuration - PICO Developer Platform

How to package apk and obb files into pico device - Nuggets

Requires newer sdk version #30 (current version is #28) · Issue #6339 · robolectric/robolectric · GitHub

1. Problem description:

When installing apk, it prompts "There was a problem parsing the package."

Solution: Use adb to install, you will be prompted with an error message.

In the development tool that comes with pico, enter install -r "the location of the apk file on the computer"

If the installation fails, specific error information will pop up. Here is:

(at BinaryXML file line #8): Requires newer sdk version #30(current version is #29)] <Performing Streamed Install

 

After interpretation, it means that the Android version of pico is 29, and the development and packaging version is 30, which is too high.

2. Solution:

Modify the API level below 29, corresponding to Android 10

3. Other matters needing attention

1. Check the plug-in

2. Select building setting here, run device===All compatible device

 

 

 

 

 

Guess you like

Origin blog.csdn.net/qq_44874004/article/details/131623943