79148341

Date: 2024-11-01 14:29:43
Score: 1.5
Natty:
Report link

When defining the path to the keystore.properties file, keep this fact in mind. When building android/app/build.gradle will search for keystore.properties file not by the relative path of the project, but by the relative path of the android folder. For example, if you put keystore.properties in the android folder and specify the path of def keystorePropertiesFile = rootProject.file('android/keystore.properties') then it will be an error. The file will not be found. With this arrangement, the correct path will be
def keystorePropertiesFile = rootProject.file('keystore.properties') Good luck!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: dimmi