Fixed
Status Update
Comments
na...@google.com <na...@google.com>
jo...@google.com <jo...@google.com>
an...@google.com <an...@google.com> #3
According to the documentation:
"Apps targeting lower sdk versions, can always schedule exact alarms."
https://developer.android.com/reference/android/app/AlarmManager.html#canScheduleExactAlarms()
So the API could delegate the implementation to the platform on API level 31 and above or simply return true otherwise.
I will try to submit a patch.
"Apps targeting lower sdk versions, can always schedule exact alarms."
So the API could delegate the implementation to the platform on API level 31 and above or simply return true otherwise.
I will try to submit a patch.
Description
Version used: AGP 8.6.1
With the following error in strings.xml
<string name="invalid_format">This illustrates a broken specifier (%).</string>
getString(R.string.invalid_format, "something")
is correctly raised by StringFormatInvalid Lint rule.
But using Jetpack Compose:
stringResource(R.string.invalid_format, "something")
passes unnoticed leading to Runtime crash.