diff --git a/custom/build.gradle.kts b/custom/build.gradle.kts index e87c76058..659255fb3 100644 --- a/custom/build.gradle.kts +++ b/custom/build.gradle.kts @@ -71,11 +71,11 @@ fun ProductFlavor.fetchUrl(): String { return url .openConnection() .apply { - if (urlString.isAuthenticationUrl){ - setRequestProperty( - "Authorization", - "Basic ${Base64.getEncoder().encodeToString(System.getenv(secretKey).toByteArray())}" - ) + if (urlString.isAuthenticationUrl) { + // setRequestProperty( + // "Authorization", + // "Basic ${Base64.getEncoder().encodeToString(System.getenv(secretKey).toByteArray())}" + // ) } connect() getInputStream()