Which gradle version is compatible with Java 20 in Android Studio?
I am facing the issue in build.gradle file in android studio while using flutter I tried to upgrade the version to java 20 but now this is also not compatible with the build version
I am facing the issue in build.gradle file in android studio while using flutter I tried to upgrade the version to java 20 but now this is also not compatible with the build version
why when used nested scrollview performance goes down and frame scroll slow ? what is solution? when i use nested scroll view for many data that load in nested , performance go low
I'm trying to do an geography quiz app but I keep getting this problem. This is the error I'm getting from the logcat. The first page opens but the moment I click start it closes the app. FATAL EXCEPTION: main…
val btnAdd = findViewById<Button>(R.id.btnAdd) val btnSub = findViewById<Button>(R.id.btnSub) btnAdd.setOnClickListener { val tx1 = findViewById<TextInputEditText>(R.id.tx1).toString().toInt() val tx2 = findViewById<TextInputEditText>(R.id.tx2).toString().toInt() var result = findViewById<TextView>(R.id.result) result.text = (tx1 + tx2).toString() } I want to sum tx1 and tx2 but i get this message…
I want to integrate Vimeo Api in to my android application and the problem is after i add the dependency like implementation "com.github.vimeo.vimeo-networking-java:vimeo-networking:3.12.0" implementation "com.github.vimeo.vimeo-networking-java:models:3.12.0" But after syncing with my project when i try to run the project or build…
I make and Android App in Android Studio, and I have some problems with passing Float array from one Activity to another (I wanna pass this array and make a chart with MPAndroidChart). I found here how to pass a…
I want to create the splash screen in flutter. I have svg image file and don't want to convert into JPG or PNG. Is there any way to create the splash screen with svg image file in Flutter? Want to…
I am trying to run my Flutter app in Android Studio. But when I try to select a device to launch, I am prompted to launch the Android Emulator, which is already running. When running the flutter devices command, the…
I've just finished my Java module at Uni and was starting to experiment with Andriod studio. I updated it today to Flamingo and started a new project, and now it is defaulting to Kotlin. I've only just learnt java and…
I would like it to show and hide when eyes are clicked TextFormField( keyboardType: TextInputType.visiblePassword, obscureText: true, decoration: const InputDecoration( labelText: "Entrez votre mot de passe", border: OutlineInputBorder(), prefixIcon: Icon(Icons.lock), suffixIcon: Icon(Icons.remove_red_eye), ), ) I would like it to show…