You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Latest release uses java.nio.charset.StandardCharsets
which available in Android starting with API level 19 (Kitkat). When I use library, no warnings about it not supporting older versions of Android (Jelly Bean, for example) were issued by Android Studio. You should change minSdk to 19 or make a workaround for API levels lower than 19
The text was updated successfully, but these errors were encountered:
AFAIK in order to maintain compatibility with lots of Android levels (<19) it makes sense to avoid using StandardCharset class, which only contains 6 constants for Charset.forName
Latest release uses
java.nio.charset.StandardCharsets
which available in Android starting with API level 19 (Kitkat). When I use library, no warnings about it not supporting older versions of Android (Jelly Bean, for example) were issued by Android Studio. You should change minSdk to 19 or make a workaround for API levels lower than 19
The text was updated successfully, but these errors were encountered: