본문 바로가기

Programming/Error Note

[Android] android.os.FileUriExposedException

[Error] android.os.FileUriExposedException: file:///…

targetSdkVersion을 24이상으로 했을 때 File 경로를 Uri로 변경하고자 할 때 Uri.parse(File 경로) 를 사용하게 되면 발생하는 에러
FileProvider를 사용하면 해결



Solution

[Android] How To APK Install Programmatically :: Gpark's Blog