We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f87f787 + a51aa62 commit cd5e7d4Copy full SHA for cd5e7d4
README.md
@@ -98,6 +98,19 @@ You can also __fastBlur__ a `View`. This optimizes the view blurring process by
98
BlurKit.getInstance().fastBlur(View src, int radius, float downscaleFactor);
99
```
100
101
+## Proguard
102
+If you use Proguard, add the following to your proguard-rules.pro:
103
+
104
+```
105
+-keep class com.wonderkiln.blurkit.** { *; }
106
107
+-dontwarn android.support.v8.renderscript.*
108
+-keepclassmembers class android.support.v8.renderscript.RenderScript {
109
+ native *** rsn*(...);
110
+ native *** n*(...);
111
+}
112
113
114
## To Do (incoming!)
115
- [ ] `SurfaceView` support
116
- [ ] Support for use outside of an `Activity` (dialogs, etc.)
0 commit comments