Skip to content

A player for ApolloTV, written in Dart for the Flutter framework.

License

Notifications You must be signed in to change notification settings

JonathanRAZ/cplayer

 
 

Repository files navigation

cplayer

A player for ApolloTV, written in Dart for the Flutter framework.

Getting Started

iOS

Add the following to Info.plist in /ios/Runner/:

<key>NSAppTransportSecurity</key>
<dict>
  <key>NSAllowsArbitraryLoads</key>
  <true/>
</dict>

Android

Add the following to AndroidManifest.xml if it's not already present.

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WAKE_LOCK" />

Using it!

  1. Import cplayer as a dependency.
  2. Push a new instance to the Navigator stack:
Navigator.push(
  context,
  MaterialPageRoute(builder: (context) => CPlayer(
      url: "https://...."
  ))
);

About

A player for ApolloTV, written in Dart for the Flutter framework.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 85.5%
  • Java 8.4%
  • Objective-C 3.3%
  • Ruby 2.8%