├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── openssl-nginx-cross-compile-error.md ├── NginxDemo ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── zhangtom │ │ │ └── nginxdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── nginx │ │ │ │ ├── conf │ │ │ │ ├── fastcgi.conf │ │ │ │ ├── fastcgi.conf.default │ │ │ │ ├── fastcgi_params │ │ │ │ ├── fastcgi_params.default │ │ │ │ ├── koi-utf │ │ │ │ ├── koi-win │ │ │ │ ├── mime.types │ │ │ │ ├── mime.types.default │ │ │ │ ├── nginx.conf │ │ │ │ ├── nginx.conf.default │ │ │ │ ├── scgi_params │ │ │ │ ├── scgi_params.default │ │ │ │ ├── uwsgi_params │ │ │ │ ├── uwsgi_params.default │ │ │ │ └── win-utf │ │ │ │ ├── html │ │ │ │ ├── 50x.html │ │ │ │ └── index.html │ │ │ │ └── sbin │ │ │ │ └── nginx │ │ ├── java │ │ │ └── com │ │ │ │ └── zhangtom │ │ │ │ └── nginxdemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── zhangtom │ │ └── nginxdemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md ├── Setenv-android.sh ├── glob ├── glob.c └── glob.h ├── make_nginx.sh ├── make_openssl.sh └── portable_cmds.sh /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/openssl-nginx-cross-compile-error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/.github/ISSUE_TEMPLATE/openssl-nginx-cross-compile-error.md -------------------------------------------------------------------------------- /NginxDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/.gitignore -------------------------------------------------------------------------------- /NginxDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /NginxDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/build.gradle -------------------------------------------------------------------------------- /NginxDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /NginxDemo/app/src/androidTest/java/com/zhangtom/nginxdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/androidTest/java/com/zhangtom/nginxdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /NginxDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/fastcgi.conf -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/fastcgi.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/fastcgi.conf.default -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/fastcgi_params -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/fastcgi_params.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/fastcgi_params.default -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/koi-utf -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/koi-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/koi-win -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/mime.types -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/mime.types.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/mime.types.default -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/nginx.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/nginx.conf.default -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/scgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/scgi_params -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/scgi_params.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/scgi_params.default -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/uwsgi_params -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/uwsgi_params.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/uwsgi_params.default -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/conf/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/conf/win-utf -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/html/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/html/50x.html -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/html/index.html -------------------------------------------------------------------------------- /NginxDemo/app/src/main/assets/nginx/sbin/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/assets/nginx/sbin/nginx -------------------------------------------------------------------------------- /NginxDemo/app/src/main/java/com/zhangtom/nginxdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/java/com/zhangtom/nginxdemo/MainActivity.java -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /NginxDemo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /NginxDemo/app/src/test/java/com/zhangtom/nginxdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/app/src/test/java/com/zhangtom/nginxdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /NginxDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/build.gradle -------------------------------------------------------------------------------- /NginxDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/gradle.properties -------------------------------------------------------------------------------- /NginxDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /NginxDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /NginxDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/gradlew -------------------------------------------------------------------------------- /NginxDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/NginxDemo/gradlew.bat -------------------------------------------------------------------------------- /NginxDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/README.md -------------------------------------------------------------------------------- /Setenv-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/Setenv-android.sh -------------------------------------------------------------------------------- /glob/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/glob/glob.c -------------------------------------------------------------------------------- /glob/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/glob/glob.h -------------------------------------------------------------------------------- /make_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/make_nginx.sh -------------------------------------------------------------------------------- /make_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/make_openssl.sh -------------------------------------------------------------------------------- /portable_cmds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tatowilson/Cross-Compile-Nginx-with-RTMP-Module-for-Android/HEAD/portable_cmds.sh --------------------------------------------------------------------------------