skip to Main Content

How can I run Tests in Compose Multiplatform from Android Studio? (command line works)

I'm currently trying to get testing setup in my first Compose Multiplatform project. I've followed the instructions here: https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-test.html#writing-and-running-tests-with-compose-multiplatform So far I can run tests successfuly from the command line using: ./gradlew :composeApp:connectedAndroidTest When I try to run them from…

VIEW QUESTION

I got error while running flutter webview: E/MethodChannel#flutter/platform_views( 3411): Failed to handle method call . SUPPRESS_ERROR_PAGE

i just bought flutter webview source code from https://docs.meetmighty.com/mightyweb/ i had follow the instruction from documentation and run the source code but unsucessfull, and shown error as follows: E/MethodChannel#flutter/platform_views( 3411): Failed to handle method call E/MethodChannel#flutter/platform_views( 3411): java.lang.RuntimeException: Unknown feature…

VIEW QUESTION

Android Studio – How can I solve the Kotlin Version Error in flutter?

The current Kotlin version is 1.9.22. I updated '' with '1.9.22', but I'm still encountering the same error even after updating. android>build.gradle buildscript { ext.kotlin_version = '1.9.22' repositories { google() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:7.1.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } }…

VIEW QUESTION
Back To Top
Search