Thank you for creating such a valuable library. While integrating it into my project, I encountered an issue related to ProGuard. I found the necessary ProGuard settings in your examples, which resolved the issue:
-keep class com.jiangdg.uvc.UVCCamera { native <methods>; long mNativePtr; }-keep class com.jiangdg.uvc.IStatusCallback { *; }
To help others who might face the same issue, I suggest including this information in your documentation. It would make it easier for users to find and apply the necessary ProGuard rules.
Thank you for your hard work and for providing this great library!
Hi author,
Thank you for creating such a valuable library. While integrating it into my project, I encountered an issue related to ProGuard. I found the necessary ProGuard settings in your examples, which resolved the issue:
-keep class com.jiangdg.uvc.UVCCamera { native <methods>; long mNativePtr; }
-keep class com.jiangdg.uvc.IStatusCallback { *; }
To help others who might face the same issue, I suggest including this information in your documentation. It would make it easier for users to find and apply the necessary ProGuard rules.
Thank you for your hard work and for providing this great library!