ExoPlayer icon indicating copy to clipboard operation
ExoPlayer copied to clipboard

unable play video after proguard assumenosideeffects {*;}

Open laole918 opened this issue 3 years ago • 1 comments
trafficstars

exoplayer:2.18.1 The following configuration cannot play video

-assumenosideeffects class timber.log.Timber {
    *;
}

But there is no problem with the following configuration

-assumenosideeffects class timber.log.Timber {
    public static void d(java.lang.String, ...);
}

Is it because some code of exoplayer has been deleted by assumenodeeffects {*;}? Will this problem be fixed?

laole918 avatar Sep 16 '22 12:09 laole918

@laole918 This proguard rule doesn't seem to effect Exoplayer library code in anyway as the rule is specific to the logging library class you are using.

Unfortunately we can't give 1:1 support for solving app specific issues. We'll leave this issue open for ~2 weeks in case anyone wishes to answer it here. If you think this is a problem with ExoPlayer, please narrow down your issue to describe the ExoPlayer behaviour that doesn't match your expectations.

rohitjoins avatar Sep 20 '22 18:09 rohitjoins