0

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 ?

Amira Elsayed Ismail
  • 9,216
  • 30
  • 92
  • 175

1 Answers1

1

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
    }
    ...
}
Akhil
  • 6,667
  • 4
  • 31
  • 61