Skip to content

Instantly share code, notes, and snippets.

// criar as funcoes para ler e escrever
fun escreverArquivo(context: Context) {
val filename = "nome_plantinha.txt"
val fileContent = "Plantinha do Pedro"
context.openFileOutput(filename, Context.MODE_PRIVATE).use {
it.write(fileContent.toByteArray())
}
}
fun lerArquivo(context: Context): String {