1 parent 47782c2 commit b276485Copy full SHA for b276485
1 file changed
buildSrc/src/main/kotlin/AppConfiguration.kt
@@ -26,12 +26,12 @@ object AppConfiguration {
26
}
27
28
private fun initConfigurations() {
29
- val googleServicesJsonPath = "${System.getProperty("user.dir")}/app/google-services.json"
30
- val googleServicesJsonFile = File(googleServicesJsonPath)
+ val googleServicesJsonFile = File("app/google-services.json")
31
googleServicesAvailable =
32
googleServicesJsonFile.exists() && googleServicesJsonFile.readText().let {
33
- it.contains(appId) && it.contains("$appId.r8test") && it.contains("$appId.debug")
+ it.contains(appId) && it.contains("$appId.debug")
34
+ println("Google Services available: $googleServicesAvailable")
35
36
37
0 commit comments