Skip to content

Commit 544333d

Browse files
committed
Fixed incorrect lookup of gradle properties file
Prior, tests couldn't reach the configured server, because the custom URL and credentials are simply ignored. 247d085 introduced an alternative parsing of the same values, but from .gradle/config.properties. Later, 5fd2e29 came and changed that testInstrumentationRunnerArgument wasn't taking these values from the gradle.properties but instead from the otherwise unused config.properties. Signed-off-by: Philipp Hasper <[email protected]>
1 parent 60af971 commit 544333d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ val ndkEnv = buildMap {
7575
}
7676

7777
val configProps = Properties().apply {
78-
val file = rootProject.file(".gradle/config.properties")
78+
val file = rootProject.file("gradle.properties")
7979
if (file.exists()) load(FileInputStream(file))
8080
}
8181

0 commit comments

Comments
 (0)