Komi Donon

Results 4 comments of Komi Donon

Hi, i did not solve that because after long research i saw that his library only works for API greater than 23. To remedy that in my project, i was...

I caught with same issue. Please provide the "proguard-rules. pro".

Hi, Here are how i solved my proguard problem `-keep class com.rey.material.** { *; } -dontwarn com.rey.material.**` Hope it s help

I came across a solution ```koltin fun requestLocationPermission(requestMultiplePermissions: ActivityResultLauncher) = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { requestAndroidSBlePermission(requestMultiplePermissions) } else requestMultiplePermissions.launch(arrayOf(Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION)) fun requestAndroidSBlePermission(requestMultiplePermissions: ActivityResultLauncher) = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) requestMultiplePermissions.launch( arrayOf(...