-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix secrets not properly applied in CI build apk #161
Comments
The logcat show this trace (abridged): Supabase-Core E : POST request to endpoint /auth/v1/signup failed with exception Unable to resolve host "null": No address associated with hostname
AuthenticationModelSupabase D : register: failed to register the user: HTTP request to https://null/auth/v1/signup (POST) failed with message: Unable to resolve host "null": No address associated with hostname
AuthenticationViewModel D : signUpWithEmail: failed to register user: io.github.jan.supabase.exceptions.HttpRequestException: HTTP request to https://null/auth/v1/signup (POST) failed with message: Unable to resolve host "null": No address associated with hostname It seems to be a problem with either network connection or Supabase URL not being fetched correctly from |
The network connection is alright, I fixed it right after M1. The problem comes form the CI not having access to the necessary API keys and client URLs. Those are stored in However, Yesterday and today, I've tried adding a plugin to manage secrets but I can't seem to be able to make it work properly. |
Good job find a way to solve this issue ! |
Description:
At the moment, the authentication screens fail when trying to log in or sign up on the build apk. The goal of this task is to look into what's causing this problem and fix it. This bug seems to be entirely unrelated to the syncing problem we noticed during Sprint 4.
Steps to reproduce:
main
in this case) to abuild/*
branch. This will run the CI that builds our apk.Expected (buggy) behaviour:
A toast should appear explaining that the authentication failed, and you will not navigate to the next screen (create profile or profile).
Done:
The text was updated successfully, but these errors were encountered: