fix: remove properties file dependency

This commit is contained in:
rebelonion 2024-02-19 01:31:15 -06:00
parent 0c2e2db1dc
commit a74b9e985d

View file

@ -10,10 +10,6 @@ def gitCommitHash = providers.exec {
commandLine("git", "rev-parse", "--verify", "--short", "HEAD")
}.standardOutput.asText.get().trim()
def apikeyPropertiesFile = rootProject.file("apikey.properties")
def apikeyProperties = new Properties()
apikeyProperties.load(new FileInputStream(apikeyPropertiesFile))
android {
compileSdk 34