202
Libreoffice released an Android version!
(www.libreoffice.org)
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Community icon from opensource.org, but we are not affiliated with them.
minSdk isn't the same as targetSdk or maxSdk.
You can target Android 14 and still support Android 1.5 devices if you really want to. Android will enforce that you use Android 14's security features, but you can still use the old APIs just fine on older versions of Android.
Android uses the target SDK to determine which restrictions to impose, because if you target Android 8 then your app can't be aware of Android 14 features so it goes into compatibility mode. But the minimum SDK doesn't matter, it's just there to tell users of too old Android versions that the app can't run.