i have a env.json file which contains many url endpoints, one of them contains a "="
RESOURCES_URL: https://test.tes/resource?id=%
and in build.gradle.kts i do:
resValue("string", "resources_url", project.findProperty("RESOURCES_URL").toString())
and whenever i try to consume the value like this
val baseUrl: String = getString(R.string.resources_url)
only what ever is after the las "=" is recovered, for this example baseUrl is "%"
i have a env.json file which contains many url endpoints, one of them contains a "="
RESOURCES_URL: https://test.tes/resource?id=%
and in build.gradle.kts i do:
resValue("string", "resources_url", project.findProperty("RESOURCES_URL").toString())
and whenever i try to consume the value like this
val baseUrl: String = getString(R.string.resources_url)
only what ever is after the las "=" is recovered, for this example baseUrl is "%"