Android Studio: Ctrl + C is very slow
on Windows, every time i press ctrl + c, it takes 1-3 seconds to copy the selected text to my clipboard. it is not "not working"; it is just working very slow. if you are impacted, please upvote issue on…
on Windows, every time i press ctrl + c, it takes 1-3 seconds to copy the selected text to my clipboard. it is not "not working"; it is just working very slow. if you are impacted, please upvote issue on…
Android Studio - Java I've been trying to read a text file from my website for days now. The examples found on the internet don't work. "Error" is always output in the "catch" (see code below). The path to the…
I got the Android Studio Giraffe installed on a new computer... While trying to create a new project it doesnt show me the options for creating a view project like the previous version (or choose the language), only "compose for…
In manifest: <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> In Activity: if (Build.VERSION.SDK_INT >= 33) { if (ContextCompat.checkSelfPermission(this, Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) { ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.POST_NOTIFICATIONS},1); } else { // } } In the build.gradle file the targetSdkVersion is 34 I have other permission requests like…
I'm trying to change a variable on button click within another function. But i'm getting a syntax error under "currentPage" at this line: "A" -> RegistrationScreen(currentPage) The error says: Type mismatch: inferred type is String but MutableState was expected Here's…
im a newbie currently working on a health app school project. i have found a problem when i was trying to change a TextView background with a drawable refrence. it like the color of the text view doesnt follow my…
We've developed an app that works flawlessly when run from Android Studio with the following configuration: buildTypes { debug { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } To simulate a Google Play…
I'm a beginner that trying to build an health app for my school project The program runs fine when I use Android 11 (API 30). The error happened when I use Android higher than 11 (API 30+). The code where…
I was implementing a logout feature with Android Studio Firebase. I created the source code, but it doesn't respond when I click the button. The logout button is located in activity_useredit, and if you click the logout button, you will…
I keep getting this error when I try to build apk or run app. My project does not seem to have any library that uses camera features, non that I can see from my end. Let me know if you…