Getting java.lang.NoSuchMethodError: android.os.FileUtils.getFatVolumeId in 4.2.2 and later OS

前端 未结 1 1521
天涯浪人
天涯浪人 2020-12-20 04:06

I am facing issue in service onCreate() when trying to get SD Card id. Using FileUtils class of android.os package from src-external/android-core.

mCardId =
  Fil         


        
相关标签:
1条回答
  • 2020-12-20 04:34

    FileUtils is a platform-internal class, annotated with @hide. You should not be using it.

    0 讨论(0)
提交回复
热议问题