gaeproxy
GAEProxy for Android (Deprecated)
File Explorer
- python.mp3
- about.html
- busybox
- CA.crt
- cacert.pem
- goagent.py
- iptables
- proxy.sh
- python-cl
- redsocks
- Android.mk
- Application.mk
- python.c
- 7z.dsp
- 7z.dsw
- 7zMain.c
- makefile
- makefile.gcc
- LzmaUtil.c
- LzmaUtil.dsp
- LzmaUtil.dsw
- makefile
- makefile.gcc
- LzmaLib.def
- LzmaLib.dsp
- LzmaLib.dsw
- LzmaLibExports.c
- makefile
- resource.rc
- makefile
- makefile_con
- resource.rc
- setup.ico
- SfxSetup.c
- SfxSetup.dsp
- SfxSetup.dsw
- 7z.h
- 7zAlloc.c
- 7zAlloc.h
- 7zBuf.c
- 7zBuf.h
- 7zBuf2.c
- 7zCrc.c
- 7zCrc.h
- 7zCrcOpt.c
- 7zDec.c
- 7zFile.c
- 7zFile.h
- 7zIn.c
- 7zStream.c
- 7zVersion.h
- 7zVersion.rc
- Alloc.c
- Alloc.h
- Bcj2.c
- Bcj2.h
- Bra.c
- Bra.h
- Bra86.c
- BraIA64.c
- CpuArch.c
- CpuArch.h
- Delta.c
- Delta.h
- LzFind.c
- LzFind.h
- LzFindMt.c
- LzFindMt.h
- LzHash.h
- Lzma2Dec.c
- Lzma2Dec.h
- Lzma2Enc.c
- Lzma2Enc.h
- Lzma86.h
- Lzma86Dec.c
- Lzma86Enc.c
- LzmaDec.c
- LzmaDec.h
- LzmaEnc.c
- LzmaEnc.h
- LzmaLib.c
- LzmaLib.h
- MtCoder.c
- MtCoder.h
- Ppmd.h
- Ppmd7.c
- Ppmd7.h
- Ppmd7Dec.c
- Ppmd7Enc.c
- RotateDefs.h
- Sha256.c
- Sha256.h
- Threads.c
- Threads.h
- Types.h
- Xz.c
- Xz.h
- XzCrc64.c
- XzCrc64.h
- XzDec.c
- XzEnc.c
- XzEnc.h
- XzIn.c
- Android.mk
- Application.mk
- lzma.cpp
- termExec.cpp
- libexec.so
- liblzma.so
- libobfuscator.so
- sym_def_app_icon.png
- ic_menu_add.png
- ic_menu_add_bookmark.png
- ic_menu_bookmarks.png
- ic_menu_delete.png
- ic_menu_downloads.png
- ic_menu_exit.png
- ic_menu_export.png
- ic_menu_import.png
- ic_menu_preferences.png
- ic_menu_sort.png
- ic_menu_sync.png
- ic_stat_gaeproxy.png
- icon.png
- ing.png
- off.png
- on.png
- ic_stat_gaeproxy.png
- ic_stat_gaeproxy.png
- ic_stat_gaeproxy.png
- icon.png
- ing.png
- off.png
- on.png
- ic_stat_gaeproxy.png
- ic_stat_gaeproxy.png
- ic_menu_add.png
- ic_menu_add_bookmark.png
- ic_menu_bookmarks.png
- ic_menu_delete.png
- ic_menu_downloads.png
- ic_menu_exit.png
- ic_menu_export.png
- ic_menu_import.png
- ic_menu_preferences.png
- ic_menu_sort.png
- ic_menu_sync.png
- ic_stat_gaeproxy.png
- icon.png
- ing.png
- off.png
- on.png
- ic_stat_gaeproxy.png
- ic_stat_gaeproxy.png
- ic_stat_gaeproxy.png
- ic_stat_gaeproxy.png
- ic_stat_gaeproxy.png
- gaeproxy_appwidget.xml
- layout_apps.xml
- layout_apps_item.xml
- layout_progress_bar.xml
- main.xml
- overlay.xml
- proxy.ini
- analytics.xml
- colors.xml
- strings.xml
- styles.xml
- strings.xml
- gae_proxy_preference.xml
- gaeproxy_appwidget_provider.xml
- AsyncHttpClient.java
- AsyncHttpRequest.java
- AsyncHttpResponseHandler.java
- InsecureSSLSocketFactory.java
- JsonHttpResponseHandler.java
- PersistentCookieStore.java
- RequestParams.java
- RetryHandler.java
- SerializableCookie.java
- SimpleMultipartEntity.java
- App.java
- DatabaseHelper.java
- DNSResponse.java
- DomainValidator.java
- RegexValidator.java
- AppIconImageDownloader.java
- DNSServer.java
- Exec.java
- GAEProxyActivity.java
- GAEProxyApplication.java
- GAEProxyBootReceiver.java
- GAEProxyPackageReceiver.java
- GAEProxyService.java
- GAEProxyUpdateService.java
- GAEProxyWidgetProvider.java
- InnerSocketBuilder.java
- LZMA.java
- Obfuscator.java
- ProxiedAppActivity.java
- ProxySettings.java
- Utils.java
- .gitignore
- .travis.yml
- AndroidManifest.xml
- COPYING.txt
- deploy
- pom.xml
- project.properties
- README.md
- travis.keystore
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
mvn install
View Details ▼
mvn install
Install third-party Maven dependencies and build the project.
mvn install
Compile, test, package, and install the project into the local repository:
mvn install {{[-D|--define]}} skipTests
Skip tests during installation:
mvn install {{[-U|--update-snapshots]}}
Force update of dependencies before installing:
mvn
View Details ▼
mvn
Apache Maven: build and manage Java-based projects.
mvn compile
Compile a project:
mvn package
Compile and package the compiled code in its distributable format, such as a `jar`:
mvn package {{[-D|--define]}} skipTests
Compile and package, skipping unit tests:
popd
View Details ▼
popd
Remove a directory placed on the directory stack via the `pushd` shell built-in.
See also: `pushd`, `dirs`.
popd
Remove the top directory from the stack and cd to it:
popd
Switch to directory at the top of the stack:
popd +N
Remove the Nth directory (starting from zero to the left from the list printed with `dirs`):
pushd
View Details ▼
pushd
Place a directory on a stack so it can be accessed later.
See also: `popd`, `dirs`.
pushd {{path/to/directory}}
Switch to directory and push it on the stack:
pushd {{path\to\directory}}
Switch to directory and push it on the stack:
pushd
Switch first and second directories on the stack:
