Questions tagged [anko]

Anko is a deprecated JetBrains library for Android application development

Anko is JetBrains library for Android application development (wrapper for Android SDK for Java), written in .

It was deprecated on the 1st of December 2019 and its use is no longer recommended.

258 questions
-2
votes
1 answer

How to delete rows in SQLite with multiple by where args using Anko?

I hope to delete a row by _id, I hope to delete multiple rows by where args using Anko too. I have read the article at https://github.com/Kotlin/anko/wiki/Anko-SQLite#updating-values, but I have no result, could you help me?
HelloCW
  • 843
  • 22
  • 125
  • 310
-3
votes
1 answer

ProGuard error illegalArgumentException: Stack size becomes negative

I updated to Anko version 0.10.8 and Kotlin version 1.3.20 with compile SDK as 28. When I try to generate a signed APK, I get ProGuard error. The logs of the error are below. What values should I add in ProGuard for…
Harsh
  • 599
  • 3
  • 20
-4
votes
2 answers

How to parse a JSON in Kotlin (Anko)?

I have used Anko to get a JSON in Kotlin and it works well but I do not know how can I access to each value. I have this code which prints out the whole JSON: doAsync { val result = URL("url.json").readText() uiThread { …
user10021033
1 2 3
17
18