how to get sha1 of android app in Vs code

后端 未结 4 1289
深忆病人
深忆病人 2021-02-08 04:39

how to get \"Sha1\" for a flutter application. I am using flutter in Vs code.In android studio we have direct option for that, but i don\'t know how to get it in Vs code.

相关标签:
4条回答
  • 2021-02-08 05:26

    1 : open cmd in windows.

    2: use cd C:\Program Files\Java\jdk1.7.0_05\bin this will lead you to bin folder of jdk.

    3:get path of file debug.keystore that in my case is C:\Users\name\.android\debug.keystore

    4: then run this command keytool -list -v -keystore C:\Users\name\.android\debug.keystore -alias androiddebugkey -storepass android - keypass android

    this will give you the SHA1

    0 讨论(0)
  • 2021-02-08 05:27

    It's very simple follow below steps.

    Step 1. Go to your project directory in VS code.

    Step 2. Open terminal.

    Step 3. Run cd android for the below path :

    Ex.: PS D:\Workspace\FlutterWorkSpace\FlutterApp\flutter_demo_app> cd android

    Step 4. Run .\gradlew signingReport for the below path :

    PS D:\Workspace\FlutterWorkSpace\FlutterApp\flutter_demo_app\android> .\gradlew signingReport

    Then it will display like that

    > Task :app:signingReport
    
    Variant: debug
    
    Config: debug
    
    Store: C:\Users\User\.android\debug.keystore
    
    Alias: AndroidDebugKey
    
    MD5: 6C:64:D6:49:31:37:60:3F:1D:2E:31:2A:F4:3C:E3:D6
    
    SHA1: 54:B0:BC:D6:D6:B4:C3:51:88:E9:20:62:56:CD:23:2D:A7:C0:0F:FD
    
    SHA-256: 80:BF:B3:A8:0D:D6:D9:7C:C8:5F:61:32:22:6B:EA:D1:51:03:8D:1H:5E:0F:F7:0B:G3:56:1DD1:D1:3B:DB:FA
    
    Valid until: Monday, 30 March, 2048
    
    0 讨论(0)
  • 2021-02-08 05:32

    In windows

    1. Open a terminal window
    2. Run the following command by changing USERNAME

    keytool -list -v -keystore "C:\Users\USERNAME\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android

    1. Simply get the SHA1
    0 讨论(0)
  • 2021-02-08 05:35
    1. Open a terminal window.

    2. Change the directory to the JDK bin directory, mine was jdk1.7.0_05 (could be different for you). cd

      C:\Program Files\Java\jdk1.7.0_05\bin
      
    3. Next we have to run the keytool.exe. Use the following line to get the Android SHA1 fingerprint. Windows:

      keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore"-alias androiddebugkey -storepass android -keypass android
      

      Mac and Linux:

      keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android
      
    0 讨论(0)
提交回复
热议问题