teogor / ceres

🪐 Ceres is a comprehensive Android development framework designed to streamline your app development process. Powered by the latest technologies like Jetpack Compose, Hilt, Coroutines, and Flow, Ceres empowers developers to build modern and efficient Android applications.

Home Page:https://source.teogor.dev/ceres

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Update Minimum SDK to 24

teogor opened this issue · comments

Is there an existing issue for this?

  • I have searched the existing issues

Is there a StackOverflow question about this issue?

  • I have searched StackOverflow

What happened?

Google has recently increased the recommended minimum SDK version for Android app development from 21 to 24. To stay up-to-date with these changes and ensure compatibility with the latest Android features and security updates, we should consider updating the minimum SDK version for our project.

This update will help us provide a better user experience and take advantage of the latest Android platform improvements. It's essential to keep our app aligned with industry standards and user expectations.

Let's discuss and plan the update to ensure a smooth transition while maintaining support for our existing user base.

Relevant logcat output

No response

Code of Conduct

  • I agree to follow this project's Code of Conduct

Hi there! To address this issue, we need to update the minSdk version in the configureKotlinAndroid function in the build.gradle.kts file. Currently, the minSdk is set to 21, but Google has recently increased the minimum required SDK version to 24.

To make this change, locate the defaultConfig block within the configureKotlinAndroid function and update the minSdk value from 21 to 24. Here's the modified code snippet:

defaultConfig {
    minSdk = 24
}

Once this change is made, the project will be aligned with the updated Android SDK requirements.