
Enjoy streaming with a glass-sleek player.
Evo Player — lightweight HLS/MP4 player for Android. Crisp controls, fluid performance, TV friendly.


- No Bloat – Pure Speed:minimal core, fast load, low CPU/RAM.
- Adaptive Burst™:detects net speed, preloads .ts chunks, avoids drops.
- HLS Optimized:smart cache for m3u8; smoother playback, fewer stalls.
- Instant Start:video plays in seconds; no heavy splash delays.
- TV Friendly:remote navigation, clean UI, large-screen support.


Integrate
- 1) Ship headers.json
Provide a JSON with id, name, logo, link, and headers (referer, origin, user-agent, etc.).
- 2) Launch via Intent
Trigger Evo using ACTION_VIEW or ACTION_SEND. Evo prepares the session automatically.
- 3) Evo parses & plays
Headers injected, ExoPlayer starts. Protected HLS plays smoothly.
// Launch Evo with headers (ACTION_SEND)
val evo = Intent(Intent.ACTION_SEND).apply {
type = "text/plain"
putExtra(Intent.EXTRA_TEXT, "https://example.com/live/stream.m3u8")
putExtra("evo_headers_json", """
{
"id":"sports_01",
"name":"Sports HD",
"logo":"https://cdn.example.com/logos/sports.png",
"link":"https://example.com/live/stream.m3u8",
"headers":{
"referer":"https://example.com/",
"origin":"https://example.com",
"user-agent":"MyApp/1.0 (Android)"
}
}
""".trimIndent())
setPackage("com.gmoz.player")
}
startActivity(evo)
// ACTION_VIEW + headers extra
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("https://example.com/live/stream.m3u8"));
i.putExtra("evo_headers_json", "{ \"id\":\"sports_01\", \"name\":\"Sports HD\", "
+ "\"logo\":\"https://cdn.example.com/logos/sports.png\", "
+ "\"link\":\"https://example.com/live/stream.m3u8\", "
+ "\"headers\":{ \"referer\":\"https://example.com/\", \"origin\":\"https://example.com\", \"user-agent\":\"MyApp/1.0 (Android)\" } }");
i.setPackage("com.gmoz.player");
startActivity(i);
// android_intent_plus
final headersJson = {
"id":"sports_01",
"name":"Sports HD",
"logo":"https://cdn.example.com/logos/sports.png",
"link":"https://example.com/live/stream.m3u8",
"headers":{ "referer":"https://example.com/", "origin":"https://example.com", "user-agent":"MyApp/1.0 (Android)" }
};
final intent = AndroidIntent(
action: 'action_view',
data: 'https://example.com/live/stream.m3u8',
package: 'com.gmoz.player',
arguments: { 'evo_headers_json': jsonEncode(headersJson) },
);
await intent.launch();
// React-Native (native module to add extras)
IntentLauncher.viewUrlWithExtras(
'https://example.com/live/stream.m3u8',
'com.gmoz.player',
{ evo_headers_json: JSON.stringify({
id:'sports_01', name:'Sports HD',
logo:'https://cdn.example.com/logos/sports.png',
link:'https://example.com/live/stream.m3u8',
headers:{ referer:'https://example.com/', origin:'https://example.com', 'user-agent':'MyApp/1.0 (Android)' }
}) }
);
{
"id": "sports_01",
"name": "Sports HD",
"logo": "https://cdn.example.com/logos/sports.png",
"link": "https://example.com/live/stream.m3u8",
"headers": { "referer": "https://example.com/", "origin": "https://example.com", "user-agent": "MyApp/1.0 (Android)" }
}
🔒 Evo يقرأ evo_headers_json
محليًا فقط.


Privacy Policy
Effective: 22 Aug 2025
Evo Apps built the Evo Player app as a Free app. This SERVICE is provided by Evo Apps at no cost and is intended for use as is.
Information Collection and Use
The app uses third-party services that may collect information used to identify you:
- Google Play Services
- Firebase Analytics
- Firebase Crashlytics
Log Data
In case of an error in the app, data may be collected such as device name, OS version, app configuration, timestamps, and other statistics.
Cookies
This Service does not use cookies explicitly; however, third-party code and libraries may use cookies to improve their services.
Service Providers
We may employ third parties to provide or analyze the Service. They are obligated not to use the information for other purposes.
Technical Services
To ensure stable playback, the app may contact support servers to initialize sessions and settings. Standard HTTP headers (e.g., User-Agent, Origin, Referer) may be sent. This data is purely technical.
Children
The Service is intended for users aged 13+ and is not directed to children under 13.
Data Deletion
Evo Player does not collect or store any personally identifiable information. Firebase Analytics/Crashlytics may collect anonymous technical data (crashes/usage) retained up to 90 days. No manual deletion mechanism is needed.
Changes
We may update this policy from time to time. Effective date: 22 Aug 2025.
Contact Us
Questions? evoplaypro@proton.me.