-
kotlin-android-extensions is not supported anymore for new Kotlin/Gradle versions, instead should use kotlin-parcelize
-
happen a illegalStateException
```
Executing pre-compile tasks...
Running 'before' tasks
Checking sources
Kotlin: connecting to daemon
Kotlin: compiling [vanced2.util]
Kotlin: kotlinc-jvm 1.5…
-
```
private val parentViewModel by activityViewModels()
```
-
Occured on my production device, but I managed to reproduce it in the emulator:
1. Enable _Developer options / Don't keep activities_ to simulate low memory.
2. Start DAVx⁵, _Login with Nextcloud_…
-
The reason being I can't parcelize a data class with Any types in them.
Cheers.
-
this is my screen defination:
```kotlin
class IllustDetailScreen(private val illust0: Illust) : Screen
@Serializable
data class Illust(
val id: Int,
val title: String,
)
```
whe…
-
**Is your feature request related to a problem? Please describe.**
If you use React Native 0.70.0 and you follow the Kotlin docs in this repository, `yarn android` will yield the following warning:…
-
### How frequently does the bug occur?
Sometimes
### Description
This crash is reported on Google Play console.
Also, we are not getting the crash reports on crashlytics. I believe this is because…
-
Let's say we have a method (lets call it "A") that calls the `StringDesc.ResourceFormatted(stringRes, *args)` method inside.
If I write a unit test for this method ("A") it is passing with success wh…
-
```java
JSONObject jsonObject = new JSONObject();
try {
jsonObject.put("firstname", "Rohit");
jsonObject.put("lastname", "Kumar");
} catch (JSONException e) {
e.printStackTrace();
}
…