Installation did not succeed. The application could not be installed: INSTALL_FAILED_OLDER_SDK List...
时间: 2023-10-29 09:51:47 浏览: 106
This error occurs when you are trying to install an application on a device with an Android SDK version that is lower than the minimum SDK version required by the application.
To fix this issue, you can either upgrade the Android SDK version on your device or lower the minimum SDK version required by the application.
To upgrade the Android SDK version on your device, go to the device settings, navigate to the System or About Phone section, and look for the Software Update option. If an update is available, download and install it.
To lower the minimum SDK version required by the application, you will need to modify the `minSdkVersion` property in the `build.gradle` file of your application. Set the value to a lower SDK version that is supported by your device.
Once you have made the necessary changes, rebuild your application and try installing it again.
阅读全文