android - Quickblox 2.6.1 webrtc: missing org.webrtc.videocapturerandroid$nativeobserver -


i getting missing class error when trying load libjingle_peerconnection_so.so. using quickblox 2.6.1 video webrtc. have idea whats going on?

##---------------begin: proguard configuration gson ---------- # gson uses generic type information stored in class file when working fields. proguard # removes such information default, configure keep of it. -keepattributes signature

# using gson @expose annotation -keepattributes *annotation*  # gson specific classes -keep class sun.misc.unsafe { *; } #-keep class com.google.gson.stream.** { *; }  # application classes serialized/deserialized on gson -keep class com.quickblox.core.account.model.** { *; }  ##---------------end: proguard configuration gson  ----------  ##---------------begin: proguard configuration quickblox  ----------  #quickblox core module -keep class com.quickblox.auth.parsers.** { *; } -keep class com.quickblox.auth.model.** { *; } -keep class com.quickblox.core.parser.** { *; } -keep class com.quickblox.core.model.** { *; } -keep class com.quickblox.core.server.** { *; } -keep class com.quickblox.core.rest.** { *; } -keep class com.quickblox.core.error.** { *; } -keep class com.quickblox.core.query { *; }  #quickblox users module -keep class com.quickblox.users.parsers.** { *; } -keep class com.quickblox.users.model.** { *; }  #quickblox messages module -keep class com.quickblox.messages.parsers.** { *; } -keep class com.quickblox.messages.model.** { *; }  #quickblox content module -keep class com.quickblox.content.parsers.** { *; } -keep class com.quickblox.content.model.** { *; }  #quickblox chat module -keep class com.quickblox.chat.parser.** { *; } -keep class com.quickblox.chat.model.** { *; } -keep class org.jivesoftware.** { *; } -dontwarn org.jivesoftware.smackx.**  #quickblox videochat-webrtc module -keep class org.webrtc.** { *; }  ##---------------end: proguard configuration quickblox  ----------  ##---------------end: proguard configuration -------------- 

missing class error

did put libjingle_peerconnection_so.so jni folders??

like x86,armeabi etc.


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -