Skip to content

Instantly share code, notes, and snippets.

@vamjakuldip
Created March 13, 2020 08:44
Show Gist options
  • Save vamjakuldip/1d7819dd84f53256f770491f71c74a3f to your computer and use it in GitHub Desktop.
Save vamjakuldip/1d7819dd84f53256f770491f71c74a3f to your computer and use it in GitHub Desktop.
this extension use for load json from file
fun Context.loadJSONFromAsserts(fileName: String): String {
return applicationContext.assets.open(fileName).bufferedReader().use { reader ->
reader.readText()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment