├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md └── my-build.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .DS_Store 3 | build.tar.gz 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertying/openssl-curl-android/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertying/openssl-curl-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertying/openssl-curl-android/HEAD/README.md -------------------------------------------------------------------------------- /my-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertying/openssl-curl-android/HEAD/my-build.sh --------------------------------------------------------------------------------