4thline / cling

UPnP/DLNA library for Java and Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

proguard for android

auxor opened this issue · comments

I have implement an media render in Android. Here is my proguard config, which is working for me.

-dontwarn org.eclipse.jetty.**
-dontwarn org.fourthline.cling.**
-dontwarn org.seamless.**
-keep class org.fourthline.cling.** {*;}
-keepattributes Annotation

//for media render state machine
-keep class org.seamless.statemachine.** {;}
-keepclassmembers class * implements org.fourthline.cling.support.avtransport.impl.state.AbstractState {
;}

Not an bug. Just for recording information which may help someone.