Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save katipogluMustafa/e9130d5bd5bac2bf83dbc23fead8cd4b to your computer and use it in GitHub Desktop.
Save katipogluMustafa/e9130d5bd5bac2bf83dbc23fead8cd4b to your computer and use it in GitHub Desktop.
Android Local PostgreSQL Connection Configuration
private final String host = "10.0.2.2";
private final String database = "postgres";
private final int port = 5432;
private final String user = "postgres";
private final String pass = "123456";
@enissimsir
Copy link

How can I find this file? Or do I have to create that?

@katipogluMustafa
Copy link
Author

The file is not that important, it is important to use these configurations in place. You can copy these as it is or use it in another way.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment