@ -1,9 +1,24 @@
|
||||
# Xenia
|
||||
[](https://gitlab.com/tslocum/xenia/commits/master)
|
||||
[](https://liberapay.com/rocketnine.space)
|
||||
|
||||
[Gemini](https://gemini.circumlunar.space) browser for Android
|
||||
[Gemini](https://gemini.circumlunar.space) proxy for Android
|
||||
|
||||
## Features
|
||||
|
||||
- Use your web browser to browse Gemini
|
||||
|
||||
## Screenshots
|
||||
|
||||
<a href="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/1.png"><img width="108" height="216" alt="Screenshot" border="0" src="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/thumbnails/1.png"></a>
|
||||
<a href="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/2.png"><img width="108" height="216" alt="Screenshot" border="0" src="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/thumbnails/2.png"></a>
|
||||
<a href="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/3.png"><img width="108" height="216" alt="Screenshot" border="0" src="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/thumbnails/3.png"></a>
|
||||
<a href="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/4.png"><img width="108" height="216" alt="Screenshot" border="0" src="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/thumbnails/4.png"></a>
|
||||
<a href="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/5.png"><img width="108" height="216" alt="Screenshot" border="0" src="https://gitlab.com/tslocum/xenia/-/raw/master/metadata/en-US/images/phoneScreenshots/thumbnails/5.png"></a>
|
||||
|
||||
## Support
|
||||
|
||||
Please share issues and suggestions [here](https://gitlab.com/tslocum/xenia/issues).
|
||||
|
||||
## Dependencies
|
||||
|
||||
- [gmitohtml](https://gitlab.com/tslocum/gmitohtml)
|
||||
|
@ -0,0 +1,33 @@
|
||||
#!/bin/bash
|
||||
|
||||
export PROJECTPATH=$PWD
|
||||
export GOPATH="$PROJECTPATH/go"
|
||||
export GO111MODULE=off
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "Usage: ./bind.sh <gmitohtml commit hash>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Downloading gomobile..."
|
||||
GOPATH="$PROJECTPATH/go" go get -u golang.org/x/mobile/cmd/...
|
||||
|
||||
echo "Downloading gmitohtml $1..."
|
||||
mkdir -p $GOPATH/src/gitlab.com/tslocum
|
||||
if [ ! -d "$GOPATH/src/gitlab.com/tslocum/gmitohtml" ]; then
|
||||
git clone https://gitlab.com/tslocum/gmitohtml $GOPATH/src/gitlab.com/tslocum/gmitohtml
|
||||
fi
|
||||
|
||||
cd $GOPATH/src/gitlab.com/tslocum/gmitohtml && git fetch origin && git reset --hard `printf %q "$1"` && cd $PROJECTPATH
|
||||
|
||||
#echo "Downloading dependencies..."
|
||||
#cd $GOPATH/src/gitlab.com/tslocum/gmitohtml
|
||||
#go mod vendor
|
||||
#cd $PROJECTPATH
|
||||
|
||||
echo "Binding library..."
|
||||
mkdir -p libs
|
||||
PATH="$PROJECTPATH/go/bin:$PATH"
|
||||
$GOPATH/bin/gomobile bind -javapkg space.rocketnine -o libs/gmitohtml.aar -target=android -androidapi=16 $GOPATH/src/gitlab.com/tslocum/gmitohtml/pkg/gmitohtml
|
||||
|
||||
echo "Finished."
|
After Width: | Height: | Size: 101 KiB |
After Width: | Height: | Size: 207 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 250 KiB |
After Width: | Height: | Size: 189 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 15 KiB |