Streamely is streaming app built on top of Cordova.
- Ad-free streaming experience
- Support for subtitles
- Simple and intuitive interface
- Easy search functionality for movies and TV shows
Important: I am not in support of any form of piracy. I just like coding and having many users and all that. This app is meant to serve the purpose of education and showcasing the technical abilities that are involved in Cordova as well as Android development.
Note: To use this app, you'll need the MPV player. You can download the modified version of MPV for Android that supports passing headers via intent from this link. If the downloaded file has a
.zip
extension, rename the file extension to.apk
before installing.
These instructions will give you a copy of the project up and running on your local machine for development and testing purposes.
To set up your development environment, you'll need certain tools and versions. Because JDK and Gradle versions can depend on the specific version of Cordova you're using, we recommend referring to the official Cordova Android Platform Guide for detailed setup instructions.
Here are the general prerequisites:
- Java Development Kit (JDK)
- Gradle
- Android SDK
To clone and run this application, you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
# Clone this repository
$ git clone https://github.com/elyeandre/streamely-native-app
# Go into the repository
$ cd streamely-native-app
# Install cordova
$ npm install -g cordova
# Install dependencies
$ npm install
# Add a platform
$ cordova platform add android
# Build
$ npm run build
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request