Skip to content

Instantly share code, notes, and snippets.

@ashwin-sp
Created June 4, 2018 03:16
Show Gist options
  • Save ashwin-sp/e8cc685bade0388826ea029e024bafe2 to your computer and use it in GitHub Desktop.
Save ashwin-sp/e8cc685bade0388826ea029e024bafe2 to your computer and use it in GitHub Desktop.
companion object {
fun getUri(context: Context, path: String): Uri {
return Uri.Builder()
.scheme(ContentResolver.SCHEME_CONTENT)
.authority(context.packageName)
.appendPath(path)
.build()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment