7

在 Android 项目中添加 Bitmovin Cast 后,我​​从不同的设备上遇到了很多相同的问题。

这个解决方案没有帮助。

GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(getContext()) 

- 返回 0(成功)

但应用程序崩溃。

Caused by java.lang.RuntimeException: com.google.android.gms.dynamite.DynamiteModule$LoadingException: No acceptable module found. Local version is 0 and remote version is 0.
       at com.google.android.gms.internal.cast.zze.zzf(Unknown Source:51)
       at com.google.android.gms.internal.cast.zze.zza(Unknown Source:1)
       at com.google.android.gms.cast.framework.CastContext.(Unknown Source:37)
       at com.google.android.gms.cast.framework.CastContext.getSharedInstance(Unknown Source:6)
       at com.bitmovin.player.BitmovinPlayer.(SourceFile:106)
       at com.bitmovin.player.BitmovinPlayer.(SourceFile:82)
       at com.bitmovin.player.BitmovinPlayer.(SourceFile:71)
       at com.bitmovin.player.BitmovinPlayerView.(SourceFile:134)
       at com.bitmovin.player.BitmovinPlayerView.(SourceFile:120)

所以,Google Play 服务版本是可以的。

4

2 回答 2

7

根据这篇文章,这样的代码可以提供帮助:

fun isCastApiAvailable(): Boolean {
    val isCastApiAvailable = isNotTv(context)
            && GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(context) == ConnectionResult.SUCCESS
    try {
        CastContext.getSharedInstance(context)
    } catch (e: Exception) {
        // track non-fatal
        return false
    }
    return isCastApiAvailable
}

但就我而言,这是Bitmovin问题

于 2019-02-05T21:27:27.897 回答
5

这是因为您的设备或模拟器的 Google Play 服务版本已过时。在您的错误上方,您应该在 log cat 中看到一些内容

Google Play 服务已过时。需要 3264100 但找到 3225132

只需更新 Google Play 服务即可。

来源https://github.com/googlesamples/android-UniversalMusicPlayer/issues/97

于 2019-07-02T12:27:56.987 回答