Tom Dugnoille
Tom Dugnoille
Fixes #76 Instead of calling `android.util.PathParser.createPathFromPathData` ([which is prohibited when targeting API level 31](https://developer.android.com/about/versions/12/non-sdk-12#new-blocked)), we can use `androidx.core.graphics.PathParser`. I also removed the following check `Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP` since this is...
With the release of Android 12, a bunch of non-SDK interfaces were removed (see [this](https://developer.android.com/about/versions/12/non-sdk-12#new-blocked)). And this library uses reflection to call this non-SDK method with is now blocked in...
We're seeing the following warning at startup when using a `StreamingCredentialProvider` (in particular `EntraIdCredentialsProvider` from `redis-py-entraid`): ``` No registered callback for token renewal task. Renewal cancelled ``` Token renewal seems...