skip to Main Content

Flutter – Android Gradle plugin requires Java 17 to run. You are currently using Java 11. in window system

Launching libmain.dart on Android SDK built for x86 in debug mode... Running Gradle task 'assembleDebug'... FAILURE: Build failed with an exception. * Where: Build file 'C:UsersviranStudioProjectsk_walzy_appandroidappbuild.gradle' line: 2 * What went wrong: An exception occurred applying plugin request [id: 'com.android.application']…

VIEW QUESTION

React Native Expo SDK 52 Splash Screen

I am trying to create a splash screen. I am following the official documentation. https://docs.expo.dev/develop/user-interface/splash-screen-and-app-icon/ and https://docs.expo.dev/versions/latest/sdk/splash-screen/#configuration i am running prebuild and running in android emulator the splash screen just appear as a small image in the center, how can…

VIEW QUESTION

Kotlin Volley Json get value

I've been working on this for some time and searching the internet, but I just can't find the solution. I use volley to query an api and receive this response. { "Title": "Groupname", "requestedURL": "url", "responseURL": [ "https://i.mg.xxx/p372qxd3694e1.jpg", "https://i.mg.xxx/qs06k8e3694e1.jpg", "https://i.mg.xxx/mjfzw6e3694e1.jpg"…

VIEW QUESTION

Android Studio – How to inject LocationTracker using Koin DI framework

I'm migrating from Hilt to Koin. With Hilt I'm doing the following for injecting LocationTracker: @Module @InstallIn(SingletonComponent::class) object LocationModule { @Provides @Singleton fun providesFusedLocationProviderClient(application: Application): FusedLocationProviderClient = LocationServices.getFusedLocationProviderClient(application) @Provides @Singleton fun providesLocationTracker( fusedLocationProviderClient: FusedLocationProviderClient, application: Application ): LocationTracker = LocationTracker(…

VIEW QUESTION
Back To Top
Search