Skip to content

Instantly share code, notes, and snippets.

View merahulroshan's full-sized avatar
😈
Building Something Awesome

Rahul Roshan merahulroshan

😈
Building Something Awesome
View GitHub Profile
@merahulroshan
merahulroshan / RealPathUtil.java
Created September 27, 2023 16:36 — forked from tatocaster/RealPathUtil.java
Real Path Utility class for Android, works for all API
public class RealPathUtil {
public static String getRealPath(Context context, Uri fileUri) {
String realPath;
// SDK < API11
if (Build.VERSION.SDK_INT < 11) {
realPath = RealPathUtil.getRealPathFromURI_BelowAPI11(context, fileUri);
}
// SDK >= 11 && SDK < 19
else if (Build.VERSION.SDK_INT < 19) {