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
Hi, I saw you had this code in PeekAndPop.java class
if (Build.VERSION.SDK_INT >= 17 && blurBackground)
blurBackground();
else if (Build.VERSION.SDK_INT < 17 && blurBackground)
Log.e("PeekAndPop", "Unable to blur background, device version below 17");
why not use renderscript support library and import android.support.v8.renderscript.* instead of android.renderscript.* so it works on apis lower than 17?
The text was updated successfully, but these errors were encountered:
Hi, I saw you had this code in
PeekAndPop.java
classwhy not use renderscript support library and import
android.support.v8.renderscript.*
instead ofandroid.renderscript.*
so it works on apis lower than 17?The text was updated successfully, but these errors were encountered: