I need to download android-support-v8.jar
as I have to use blur effect
for Imageview
in my android application.
Can anyone help please ?
I need to download android-support-v8.jar
as I have to use blur effect
for Imageview
in my android application.
Can anyone help please ?
If you are using gradle, try below in your build.gradle, after this is resolved, you can use android-support-v8.jar anywhere in your project
android {
...
defaultConfig {
...
renderscriptTargetApi 19
renderscriptSupportModeEnabled true
}
...
}