I am trying to import the git project.
Sadly everytime I clone the project I get the following error:
Error:(29, 0) Neither path nor baseDir may be null or empty string. path='null' basedir='D:\Path\Sealnote'
On clicking the hyperlink, it takes me to the build.gradle file, specifically to:
signingConfigs {
release {
storeFile file(System.getenv("SEALNOTE_KEYSTORE"))
storePassword System.getenv("SEALNOTE_KEYSTORE_PASSWORD")
keyAlias System.getenv("SEALNOTE_KEY_ALIAS")
keyPassword System.getenv("SEALNOTE_KEY_PASSWORD")
}
}
I am guessing since this is a signed release I will need a key to use the project, but what is the point of it being opensource if we cant use it?