Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/progdrasil/buildozer-psycopg2-issue-1123
reproduction for issue [psycopg2#1123](https://github.com/psycopg/psycopg2/issues/1123)
https://github.com/progdrasil/buildozer-psycopg2-issue-1123
Last synced: 1 day ago
JSON representation
reproduction for issue [psycopg2#1123](https://github.com/psycopg/psycopg2/issues/1123)
- Host: GitHub
- URL: https://github.com/progdrasil/buildozer-psycopg2-issue-1123
- Owner: Progdrasil
- Created: 2020-06-26T17:51:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-26T17:53:52.000Z (over 4 years ago)
- Last Synced: 2023-10-05T06:10:56.267Z (about 1 year ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo ImportError: undefined symbol: PQencryptPasswordConn
Build the docker image:
```shell
docker build -t psycopg2/buildozer .
```Run image interactively and attach usb for deployment:
```shell
docker run --rm -v "$(pwd)":/home/user/hostcwd -v /dev/bus/usb:/dev/bus/usb --privileged -it --entrypoint=bash psycopg2/buildozer
```Interact with buildozer as usual, to build:
```shell
buildozer android debug
```To deploy and run on target
```shell
buildozer android deploy run
```For debugging, the log is pretty huge and includes more than just this application, it's best to throw it in a file and analyze it after the app crashed.
```shell
buildozer android deploy run logcat > out.log
```