Gradle Window In Missing In Android Studio For My Flutter Project
The gradle window is missing in the android studio for my flutter project but it is available for my Kotlin project. I have to generate the signing certificate SHA-1 to register
Solution 1:
Here is how you find the gradle section in Android Studio for a Flutter-Project:
- Open the build.gradle file in app/src/
- There should appear a small bar at the top of the code-editor and click Open for Editing in Android Studio
- A new window will open, showing the option for opening the gradle section in the side-panel, as expected.
This answer is giving you a quite extensive explanation for then generating the SHA1-fingerprint.
Solution 2:
You won't find a gradle window view in flutter project, so here is a solution for that.. In command prompt navigate to bin folder of jdk and run this command
keytool -list -v -keystore "C:\Users\yourus\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android
then you can copy sha from there
Post a Comment for "Gradle Window In Missing In Android Studio For My Flutter Project"