-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
815 lines (689 loc) Β· 24.3 KB
/
index.html
File metadata and controls
815 lines (689 loc) Β· 24.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RadioAndroidPRO - Simple Internet Radio App</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
width: 100%;
overflow-x: hidden;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
background-attachment: fixed;
min-height: 100vh;
width: 100%;
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
width: 100%;
}
header {
text-align: center;
padding: 60px 20px;
color: white;
width: 100%;
}
.logo {
font-size: 4rem;
margin-bottom: 20px;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
h1 {
font-size: 3rem;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.tagline {
font-size: 1.3rem;
opacity: 0.95;
margin-bottom: 30px;
}
.badge {
display: inline-block;
background: rgba(255,255,255,0.2);
padding: 8px 16px;
border-radius: 20px;
margin: 5px;
backdrop-filter: blur(10px);
}
.content {
background: white;
border-radius: 20px;
padding: 40px;
margin: 20px 0;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
width: 100%;
}
.screenshots {
margin: 40px 0;
}
.screenshots h3 {
text-align: center;
color: #667eea;
margin-bottom: 30px;
}
.video-container {
text-align: center;
margin: 40px 0;
}
.video-wrapper {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 800px;
margin: 0 auto;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 15px;
}
.video-caption {
margin-top: 20px;
color: #666;
font-size: 1.1rem;
}
.screenshot-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 30px 0;
}
.screenshot-item {
text-align: center;
}
.screenshot-item img {
width: 100%;
max-width: 300px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
}
.screenshot-item img:hover {
transform: scale(1.05);
}
.screenshot-item p {
margin-top: 10px;
color: #666;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin: 40px 0;
}
.feature {
text-align: center;
padding: 30px;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
border-radius: 15px;
transition: transform 0.3s ease;
}
.feature:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.feature-icon {
font-size: 3rem;
margin-bottom: 15px;
}
.feature h3 {
color: #667eea;
margin-bottom: 10px;
}
.download-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 50px 20px;
border-radius: 20px;
margin: 40px 0;
text-align: center;
width: 100%;
}
.version-card {
background: white;
color: #333;
padding: 30px;
border-radius: 15px;
margin: 20px auto;
display: inline-block;
min-width: 300px;
max-width: 100%;
vertical-align: top;
}
.version-card h3 {
color: #667eea;
font-size: 2rem;
margin-bottom: 20px;
}
.version-card .price {
font-size: 2.5rem;
font-weight: bold;
margin: 20px 0;
color: #764ba2;
}
.feature-list {
text-align: left;
margin: 20px 0;
list-style: none;
padding: 0;
}
.feature-list li {
padding: 10px 0;
border-bottom: 1px solid #eee;
}
.feature-list li:last-child {
border-bottom: none;
}
.btn {
display: inline-block;
padding: 15px 40px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.1rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin: 10px;
}
.btn:hover {
transform: scale(1.05);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.btn-secondary {
background: #48bb78;
}
.comparison-table {
width: 100%;
margin: 40px 0;
border-collapse: collapse;
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.comparison-table th {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 20px;
text-align: left;
}
.comparison-table td {
padding: 15px 20px;
border-bottom: 1px solid #eee;
}
.comparison-table tr:hover {
background: #f5f7fa;
}
.checkmark {
color: #48bb78;
font-size: 1.5rem;
}
.crossmark {
color: #f56565;
font-size: 1.5rem;
}
.warning-mark {
color: #ed8936;
font-size: 1.5rem;
}
.setup-guide {
background: #fff3cd;
border-left: 5px solid #ffc107;
padding: 20px;
margin: 30px 0;
border-radius: 10px;
}
.setup-guide h3 {
color: #856404;
margin-bottom: 15px;
}
.steps {
counter-reset: step;
margin: 20px 0;
}
.step {
counter-increment: step;
padding: 15px;
margin: 10px 0;
background: white;
border-radius: 10px;
position: relative;
padding-left: 60px;
}
.step::before {
content: counter(step);
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
background: #667eea;
color: white;
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
footer {
text-align: center;
padding: 40px 20px;
color: white;
margin-top: 60px;
width: 100%;
}
.social-links {
margin: 20px 0;
}
.social-links a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 1.5rem;
transition: transform 0.3s ease;
display: inline-block;
}
.social-links a:hover {
transform: scale(1.2);
}
@media (max-width: 768px) {
.container {
padding: 10px;
}
header {
padding: 40px 10px;
}
.logo {
font-size: 3rem;
}
h1 {
font-size: 2rem;
}
.tagline {
font-size: 1rem;
}
.badge {
font-size: 0.85rem;
padding: 6px 12px;
}
.content {
padding: 20px 15px;
margin: 10px 0;
border-radius: 15px;
}
.download-section {
padding: 30px 15px;
margin: 20px 0;
}
.version-card {
display: block;
margin: 20px auto;
min-width: auto;
width: 100%;
}
.version-card h3 {
font-size: 1.5rem;
}
.version-card .price {
font-size: 2rem;
}
.features {
grid-template-columns: 1fr;
gap: 20px;
}
.feature {
padding: 20px;
}
.comparison-table {
font-size: 0.85rem;
}
.comparison-table th,
.comparison-table td {
padding: 10px;
}
.btn {
padding: 12px 30px;
font-size: 1rem;
}
}
@media (max-width: 480px) {
.container {
padding: 5px;
}
.content {
padding: 15px 10px;
}
.screenshot-grid {
grid-template-columns: 1fr;
}
.step {
padding-left: 50px;
font-size: 0.9rem;
}
.step::before {
width: 30px;
height: 30px;
font-size: 0.9rem;
}
}
.highlight {
background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
padding: 2px 8px;
border-radius: 5px;
font-weight: bold;
}
.code-block {
background: #2d3748;
color: #e2e8f0;
padding: 20px;
border-radius: 10px;
overflow-x: auto;
margin: 20px 0;
font-family: 'Courier New', monospace;
word-break: break-all;
}
.pro-badge {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: bold;
display: inline-block;
margin-left: 10px;
}
.license-box {
background: #f8f9fa;
border: 2px solid #667eea;
border-radius: 10px;
padding: 30px;
margin: 30px 0;
}
.license-box h3 {
color: #667eea;
margin-bottom: 20px;
font-size: 1.5rem;
}
.license-box h4 {
color: #764ba2;
margin: 20px 0 10px 0;
}
.license-box ul {
list-style: none;
padding-left: 0;
}
.license-box li {
padding: 8px 0;
padding-left: 25px;
position: relative;
}
.license-box li:before {
position: absolute;
left: 0;
}
@media (max-width: 768px) {
.license-box {
padding: 20px 15px;
}
.license-box h3 {
font-size: 1.2rem;
}
.license-box li {
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="logo">π»</div>
<h1>RadioAndroid PRO</h1>
<p class="tagline">Simple Internet Radio App</p>
<div>
<span class="badge">π Full Android Auto</span>
<span class="badge">π΅ Background Play</span>
<span class="badge">π Global Streams</span>
<span class="badge">ποΈ PRO Equalizer</span>
</div>
</div>
</header>
<div class="container">
<div class="content">
<h2 style="text-align: center; color: #667eea; margin-bottom: 40px;">
π Best alternative to alternative Radio with native Android Auto integration!
</h2>
<div class="screenshots">
<div class="screenshot-grid">
<div class="screenshot-item">
<img src="screenshot1.jpg" alt="Radio Player - Main Screen">
<p>Main player screen</p>
</div>
<div class="screenshot-item">
<img src="screenshot2.jpg" alt="Stations List">
<p>Radio stations list</p>
</div>
<div class="screenshot-item">
<img src="screenshot3.jpg" alt="Edit Station">
<p>Station editing</p>
</div>
<div class="screenshot-item">
<img src="screenshot4.jpg" alt="Equalizer PRO">
<p>9-band Equalizer PRO</p>
</div>
</div>
<div class="screenshot-grid">
<div class="screenshot-item">
<img src="screenshot5.jpg" alt="Radio Player - Main Screen">
<p>Android Auto</p>
</div>
<div class="screenshot-item">
<img src="screenshot6.jpg" alt="Stations List">
<p>Android Auto</p>
</div>
<div class="screenshot-item">
<img src="screenshot7.jpg" alt="Edit Station">
<p>Android Auto</p>
</div>
<div class="screenshot-item">
<img src="screenshot8.jpg" alt="Equalizer PRO">
<p>CAR Bluetooth</p>
</div>
</div>
<div class="screenshot-grid">
<div class="screenshot-item">
<img src="screenshot9.jpg" alt="Radio Player - Main Screen">
<p>Background</p>
</div>
<div class="screenshot-item">
<img src="screenshot10.jpg" alt="Stations List">
<p>Background</p>
</div>
<div class="screenshot-item">
<img src="screenshot11.jpg" alt="Edit Station">
<p>Background</p>
</div>
<div class="screenshot-item">
<img src="screenshot12.jpg" alt="Equalizer PRO">
<p>Background</p>
</div>
</div>
</div>
<div class="features">
<div class="feature">
<div class="feature-icon">π</div>
<h3>Full Android Auto</h3>
<p>Full integration, not just audio. Control the app safely while driving.</p>
</div>
<div class="feature">
<div class="feature-icon">π΅</div>
<h3>Background Play</h3>
<p>Music plays in the background even when you use other apps.</p>
</div>
<div class="feature">
<div class="feature-icon">π</div>
<h3>Global Streams</h3>
<p>Thousands of radio stations from around the world. Rock, Jazz, News, Sports and more.</p>
</div>
<div class="feature">
<div class="feature-icon">π±</div>
<h3>Bluetooth Ready</h3>
<p>Works both via Android Auto and classic Bluetooth connection.</p>
</div>
<div class="feature">
<div class="feature-icon">ποΈ</div>
<h3>Equalizer PRO</h3>
<p>9-band professional equalizer (60Hz - 14kHz) in PRO version.</p>
</div>
<div class="feature">
<div class="feature-icon">πΎ</div>
<h3>JSON Import/Export</h3>
<p>Playlist management via modern JSON format. Easy backups and sharing.</p>
</div>
</div>
</div>
<div class="download-section">
<h2 style="margin-bottom: 40px; font-size: 2.5rem;">π₯ Download Now</h2>
<div class="version-card">
<h3>π FREE</h3>
<p>Google Play Store</p>
<div class="price">Free</div>
<ul class="feature-list">
<li>β
Full Android Auto Car integration</li>
<li>β
Full Bluetootch Car integration</li>
<li>β
Background playback on locked screen</li>
<li>β
Bluetooth audio</li>
<li>β
TV and TV Box Android home network LAN/WiFi</li>
<li>β
Headphone and Boombox support</li>
<li>β
Custom HTTP/HTTPS stations</li>
<li>β
Thousands of worldwide stations</li>
<li>β
Integration with fmstream.org</li>
<li>β
Advanced reconnect and watchdog system</li>
<li> - to maintain the stream</li>
<li>ποΈ 9-band Equalizer</li>
<li>πΎ JSON Import/Export</li>
<li>π Playlist Management</li>
<li>π¨ Enhanced PRO UI</li>
<li>β This application uses </li>
<li> Microsoft MAUI and C# NET.10 for Android 13/14/15/16 </li>
<li> LibVLC License: LGPL </li>
</ul>
<a href="https://play.google.com/store/apps/details?id=com.tmfgroup.radioandroid" class="btn">π± Google Play</a>
</div>
<div class="version-card">
<h3>β FREE</h3>
<p>GitHub/Google Releases</p>
<div class="price">Free</div>
<ul class="feature-list">
<li>πΎ <strong>Example radio stations in a JSON file</strong></li>
<li>β <strong>Support the developer</strong></li>
</ul>
<a href="https://github.com/toevi/RadioAndroidPro/releases/download/RadioAndroidPro/RadioAndroidPLS.json" class="btn btn-secondary">π¦ Download Stations List</a>
</div>
</div>
<div class="content">
<h2 style="color: #667eea; margin-bottom: 30px;">πΎ Playlist Management <span class="pro-badge">PRO</span></h2>
<h3 style="margin-top: 30px;">JSON Format - modern and easy</h3>
<p>PRO version uses JSON format for playlist management. This means:</p>
<div class="features" style="margin: 30px 0;">
<div class="feature">
<div class="feature-icon">πΎ</div>
<h3>Easy Backup</h3>
<p>Save entire streams to a single file</p>
</div>
<div class="feature">
<div class="feature-icon">βοΈ</div>
<h3>App and Manual Edit</h3>
<p>Edit playlist in notepad - JSON is human-readable</p>
</div>
<div class="feature">
<div class="feature-icon">π€</div>
<h3>Easy Sharing</h3>
<p>Share your favorite stations with friends with one file</p>
</div>
</div>
<h3>JSON file example:</h3>
<div class="code-block">
[{"Nazwa":"RMF","Sciezka":"http://rs201-krk.rmfstream.pl/rmf_fm"},{"Nazwa":"RAM","Sciezka":"http://stream.prw.pl:8000/rammp3"}]
</div>
<p style="margin-top: 20px;">
<strong>Users can:</strong> copy the template, add their stations,
change EQ settings and import the ready file to the app!
</p>
</div>
<div class="screenshots">
<div class="content">
<h2 style="color: #667eea; margin-bottom: 30px;">π Useful Links</h2>
<ul style="list-style: none; padding: 0;">
<li style="padding: 15px; border-bottom: 1px solid #eee;">
<a href="https://fmstream.org" style="color: blue; text-decoration: none; font-weight: bold;">Radio Stream Browser - fmstream.org</a>
</li>
<li style="padding: 15px; border-bottom: 1px solid #eee;">
<a href="https://toevi.github.io/Android-Radio-privacy-policy/" style="color: blue; text-decoration: none; font-weight: bold;">Privacy Policy </a>
</li>
</ul>
</div>
</div>
<div class="content" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); color: white;">
<h2 style="text-align: center; margin-bottom: 30px; color: white;">
π Project Support
</h2>
<p style="text-align: center; font-size: 1.2rem; margin-bottom: 30px;">
If <span class="highlight">RadioAndroid PRO</span> helps you in your daily travels,
consider supporting the developer!
</p>
<div style="text-align: center;">
<a href="https://buycoffee.to/toevi" class="btn" style="background: white; color: #f5576c;">
β Buy me a coffee
</a>
</div>
<p style="text-align: center; margin-top: 20px; opacity: 0.9;">
Your support motivates further development! π
</p>
</div>
</div>
<footer>
<div class="container">
<h3>RadioAndroid PRO</h3>
<p>Professional Android Auto Radio Application</p>
<div class="social-links">
<a href="#" title="GitHub">β</a>
<a href="mailto:tomek.maselko@gmail.com" title="Email">βοΈ</a>
<a href="https://buycoffee.to/toevi" title="Buy Coffee">β</a>
</div>
<p style="margin-top: 20px; opacity: 0.8;">
Β© 2025 Tomek Maslowski | Custom License (APK Only)
</p>
<p style="margin-top: 10px; font-size: 0.9rem;">
Made with β€οΈ for Android Auto enthusiasts
</p>
</div>
</footer>
</body>
</html>