Home > OS >  I found this error while I try to run the Command "gradew signingReport" to find the SHA1
I found this error while I try to run the Command "gradew signingReport" to find the SHA1

Time:10-20

PS C:\Users\mirfa\StudioProjects\tattoo_design\android> gradew signingReport

gradew : The term 'gradew' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1

  • gradew signingReport
  •     CategoryInfo          : ObjectNotFound: (gradew:String) [], CommandNotFoundException
        FullyQualifiedErrorId : CommandNotFoundException
    

CodePudding user response:

There is a typo error in your command.

You just have to write ./gradlew signingReport inorder to get the SHA keys.

CodePudding user response:

For your reference:

Fixed error in getting SHA1

  • Related