Getting error in flutter compilation like : carousel_slider-4.2.0/lib/carousel_slider.dart:311:29: Error: Member not found: 'trackpad'

Issue I am getting error while compiling flutter app Anyone can help? Here is full error : /C:/src/flutter/.pub-cache/hosted/pub.dartlang.org/carousel_slider-4.2.0/lib/carousel_slider.dart:311:29: Error: Member not found: ‘trackpad’. PointerDeviceKind.trackpad Here are dependencies from yaml file ` version: 1.0.0+1 environment: sdk: ">=2.16.2 <3.0.0" dependencies: flutter: sdk:

Continue reading

Android + Hilt: Cannot inject interface

Issue I have a class that extends an interface as follows: class AWSTestTypeService : IAWSTestTypeService { override fun getTestTypes(): List<TestTypeDTO>? { val pAWS = instance return pAWS!!.getTestTypes() } } And the corresponding interface: interface IAWSTestTypeService { fun getTestTypes(): List<TestTypeDTO>? }

Continue reading

Unexpected metadata type found in active-android

Issue For a unknown reason Android Studio Fail to build my Project . First time it show me Error:Could not resolve all dependencies for configuration ‘:app:debugCompileClasspath’. Could not load module metadata from C:\Users\nirzo\.gradle\caches\modules-2\metadata-2.36\descriptors\com.michaelpardo\activeandroid\3.1.0-SNAPSHOT\c5bb972da5c05fbf59bb87e44d69a746\descriptor.bin Unexpected metadata type found. When I clean

Continue reading

arm-linux-androideabi-ar: Command not found in NDK

Issue Downloaded NDK file from this (https://developer.android.com/ndk/downloads) link for Linux computer. arm-linux-androideabi-ar file is not available in downloaded NDK file. Getting below compilation application in my NDK application. android-ndk-r25/toolchains/llvm/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ar: Command not found I need to do anything after downloading NDK

Continue reading