Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Google Widevine DRMが Android デバイスに存在するかどうかを確認する必要があるアプリを作成しています。プログラムでそれを確認する方法は?
前もって感謝します
ExoPlayer ライブラリを調べて解決策を見つけました
private boolean isWideVineDRMAvailable() { return MediaDrm.isCryptoSchemeSupported(C.WIDEVINE_UUID); }
C は、ExoPlayer ライブラリで使用できる定数クラスです。