We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b49110f commit b36a466Copy full SHA for b36a466
app/src/main/java/com/stringcare/sample/MainActivity.kt
@@ -16,12 +16,10 @@ class MainActivity : AppCompatActivity() {
16
r2d2.text = R.string.r2d2.reveal()
17
c3po.text = R.string.c3po.reveal(false)
18
19
- val json = "config.json".jsonArray { false }
20
- val bytes = "config.json".bytes { false }
21
- "test.json".asyncJson({ false }) { json ->
+ "test.json".asyncJson { json ->
22
tv_json.text = json.toString()
23
}
24
- "config.json".asyncBytes { bytes ->
+ "test.json".asyncBytes({ false }) { bytes ->
25
tv_json_original.text = String(bytes)
26
27
0 commit comments