├── .gitignore ├── .gitmodules ├── CHANGELOG.rst ├── LICENSE ├── README.md ├── app ├── .gitignore ├── bootstrap_acestream_engine.sh ├── build.gradle ├── flavors │ ├── armv7 │ │ └── .gitignore │ ├── universal │ │ └── .gitignore │ └── x86 │ │ └── .gitignore └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── org │ │ └── acestream │ │ └── core │ │ └── CoreApplication.java │ └── res │ └── values │ └── strings.xml ├── backup.sh ├── bootstrap.sh ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libvlc ├── .gitignore ├── bootstrap_libvlc.sh ├── build.gradle ├── libs │ └── libvlc.aar ├── releases │ └── latest │ │ └── .gitignore └── src │ └── main │ └── AndroidManifest.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/bootstrap_acestream_engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/app/bootstrap_acestream_engine.sh -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/flavors/armv7/.gitignore: -------------------------------------------------------------------------------- 1 | /assets/ 2 | /jniLibs/ -------------------------------------------------------------------------------- /app/flavors/universal/.gitignore: -------------------------------------------------------------------------------- 1 | /assets/ 2 | /jniLibs/ -------------------------------------------------------------------------------- /app/flavors/x86/.gitignore: -------------------------------------------------------------------------------- 1 | /assets/ 2 | /jniLibs/ -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/org/acestream/core/CoreApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/app/src/main/java/org/acestream/core/CoreApplication.java -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/backup.sh -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /libvlc/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.iml -------------------------------------------------------------------------------- /libvlc/bootstrap_libvlc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/libvlc/bootstrap_libvlc.sh -------------------------------------------------------------------------------- /libvlc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/libvlc/build.gradle -------------------------------------------------------------------------------- /libvlc/libs/libvlc.aar: -------------------------------------------------------------------------------- 1 | ../releases/latest/libvlc.aar -------------------------------------------------------------------------------- /libvlc/releases/latest/.gitignore: -------------------------------------------------------------------------------- 1 | *.aar -------------------------------------------------------------------------------- /libvlc/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/libvlc/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acestream/acestream-engine-android/HEAD/settings.gradle --------------------------------------------------------------------------------