forked from elementary/appcenter-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appstream.xml
7360 lines (7360 loc) · 551 KB
/
appstream.xml
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
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<components version="0.8" origin="flatpak">
<component type="desktop">
<id>com.endlessm.animals.bn_BD.desktop</id>
<name>পশুপাখি</name>
<summary>পৃথিবীর পশুপাখি সম্পর্কে জানুন</summary>
<description><p>পশুপাখিরা এক কথায় বিস্ময়কর। রাজকীয় সিংহ থেকে অদ্ভুত ও চমকপ্রদ প্লাটিপাস পর্যন্ত, আমাদের পৃথিবীতে বসবাসকারী প্রতিটি প্রাণী সম্পর্কেই অনেক কিছু জানবার আছে। এই এ্যাপের মাধ্যমে পুরো পশুপাখির রাজ্যের বিস্ময়কর দরজাটির চাবি আপনার হাতের মুঠোয়! ছোট্ট শিশু থেকে কৌতুহলী বড় মানুষটি পর্যন্ত, পরিবারের সকলেই পশুপাখিদের বৈশিষ্ট্য, অভ্যাস ও পরিবেশ সম্পর্কে জানতে আগ্রহী হবে। এই সময়ে প্রাণী রাজ্য সম্বন্ধে আমাদের গবেষণা করা বিশেষভাবে গুরুত্বপূর্ণ, যখন প্রতিদিন বিভিন্নরকম প্রজাতি হুমকির মুখে পড়ছে অথবা হারিয়ে যাচ্ছে আমাদের জগত থেকে।</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.animals.bn_BD.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.animals.bn_BD</binary>
</provides>
<languages>
<lang percentage="100">bn</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.910.appCenterThumbnail.8f2c51a0-1bef-4308-8d83-d56704ac849b_20181015185004011.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.animals.bn_BD/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.animals.en.desktop</id>
<name>Animals</name>
<summary>Learn about all of Earth's creatures</summary>
<description><p>Animals are simply amazing. From the majestic lion to the bizarre and fascinating platypus, there is so much to learn about the creatures that inhabit our world. Unlock the entire animal kingdom with this app! The whole family, from small children to curious adults, will love to learn about animals’ features, habits, and environments. It’s especially important to study the animal kingdom today, when so many species are threatened or endangered.</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.animals.en.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.226.screenshots.4d842d7d-9b33-4ce9-bf53-9409a36c0b53_201809141532851010.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.226.screenshots.f6bb616c-39eb-4109-8b9a-527313a84bc4_201809141532851010.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.226.screenshots.af6212d3-d1bb-4eb2-93f6-06bfc9b6dbdf_201809141532851010.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.animals.en</binary>
</provides>
<languages>
<lang percentage="100">en</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.891.appCenterThumbnail.bd8b199c-1451-4e08-a8bb-f65b9b36d4db_201809141559424848.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.animals.en/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.animals.es.desktop</id>
<name>Animales</name>
<summary>Aprende acerca de las criaturas de la Tierra</summary>
<description><p>Los animales son increíbles. Desde el majestuoso león hasta el extraño y fascinante ornitorrinco, hay mucho que aprender sobre las criaturas que habitan nuestro mundo. Conoce todo el reino animal con este programa. A toda la familia le encantará aprender sobre las características, hábitos y ambientes de los animales, tanto a pequeños como grandes. Es especialmente importante estudiar el reino animal ahora que tantas especies están en peligro de extinción.</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.animals.es.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.232.screenshots.268da833-3da9-4f3d-8697-30ec3be83ac6_201810181814011515.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.232.screenshots.6e7439c0-ed68-44b8-810e-40fa86e59ccf_201810181814011515.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.232.screenshots.8028d921-5ff1-4a88-915c-81de4ae397b6_201810181814011515.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.animals.es</binary>
</provides>
<languages>
<lang percentage="100">es</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.917.appCenterThumbnail.dde25869-67e4-497b-b382-a6b29e381f72_201810151901172727.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.animals.es/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.animals.es_GT.desktop</id>
<name>Animales</name>
<summary>Aprende acerca de las criaturas de la Tierra</summary>
<description><p>Los animales son increíbles. Desde el majestuoso león hasta el extraño y fascinante ornitorrinco, hay mucho que aprender sobre las criaturas que habitan nuestro mundo. Conoce todo el reino animal con este programa. A toda la familia le encantará aprender sobre las características, hábitos y ambientes de los animales, tanto a pequeños como grandes. Es especialmente importante estudiar el reino animal ahora que tantas especies están en peligro de extinción.</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.animals.es_GT.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.animals.es_GT</binary>
</provides>
<languages>
<lang percentage="100">es</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.924.appCenterThumbnail.d44d51e5-a50e-448e-a603-c0524b29d295_201810151913342424.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.animals.es_GT/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.animals.pt.desktop</id>
<name>Animais</name>
<summary>Aprenda mais sobre todas as criaturas da Terra.</summary>
<description><p>Animais são simplesmente incríveis. Do majestoso leão ao bizarro e fascinante ornitorrinco, há muita coisa para aprender sobre as criaturas que habitam nosso mundo. Descubra o mundo animal inteiro com esse programa! Toda a família, desde crianças até adultos curiosos, vai gostar de conhecer as características, hábitos e ambientes dos animais. O estudo do reino animal é especialmente importante atualmente, quando tantas espécies estão ameaçadas ou em perigo.</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.animals.pt.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.234.screenshots.27d758d1-8272-41c3-91c6-e6d0c4586c2c_201810181815851313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.234.screenshots.dc16069e-28da-445e-9bf1-6441734f2c33_201810181815851313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.234.screenshots.86f55327-1242-4fa4-91cd-5dd52fe11c44_201810181815851313.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.animals.pt</binary>
</provides>
<languages>
<lang percentage="100">pt</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.931.appCenterThumbnail.9db6263e-4732-4d44-a8b5-7a065f3002b0_201810151943885656.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.animals.pt/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.animals.th.desktop</id>
<name>สัตว์</name>
<summary>เรียนรู้เรื่องสัตว์โลกทุกชนิด</summary>
<description><p>สัตว์เป็นสิ่งมีชีวิตที่น่าอัศจรรย์ ตั้งแต่สิงโตที่สง่าน่าเกรงขามไปจนถึงตุ่นปากเป็ดรูปร่างแปลกประหลาด มีเรื่องราวให้เรียนรู้มากมายเกี่ยวกับสิ่งมีชีวิตที่อาศัยอยู่บนโลกใบนี้ เปิดประตูสู่อาณาจักรสัตว์โลกด้วยแอปฯ นี้! ทั้งครอบครัว ไม่ว่าจะเป็นเด็กเล็กๆ หรือผู้ใหญ่ที่อยากรู้อยากเห็นจะรักในการเรียนรู้เรื่องลักษณะ พฤติกรรม และสภาพแวดล้อมของสัตว์ต่างๆ อย่างแน่นอน และที่สำคัญอย่างยิ่ง ควรเรียนรู้เรื่องสัตว์ตั้งแต่วันนี้เพราะมีสัตว์หลายชนิดที่ถูกคุกคามและกำลังใกล้สูญพันธุ์</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.animals.th.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.235.screenshots.500b7da0-bcaf-4868-9c6d-d6841be0ea96_201810181824011111.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.235.screenshots.90bb00ca-f309-4a6c-87b1-ff70a12cb9bb_201810181824011111.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.235.screenshots.e62d42da-79f1-45d4-af3f-06b9127ed484_201810181824011111.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.animals.th</binary>
</provides>
<languages>
<lang percentage="100">th</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.938.appCenterThumbnail.53505e12-44e1-4908-a3da-42666cecdc32_20181015195555088.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.animals.th/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.animals.vi.desktop</id>
<name>Động vật</name>
<summary>Tìm hiểu về tất cả sinh vật của Trái đất</summary>
<description><p>Động vật thực sự là những sinh vật tuyệt vời. Từ loài sư tử dũng mãnh đến loài thú mỏ vịt kỳ lạ và thú vị, chúng ta có rất nhiều điều để tìm hiểu về những sinh vật sống trên Trái đất. Mở khóa cánh cửa dẫn tới vương quốc động vật với ứng dụng này! Cả gia đình, từ trẻ nhỏ đến người lớn hay hiếu kỳ, chắc chắn sẽ rất thích thú khi được tìm hiểu về các đặc điểm, thói quen và môi trường sinh sống của động vật. Việc nghiên cứu vương quốc động vật ngày nay thực sự quan trong khi mà rất nhiều loài động vật đang bị đe dọa hoặc có nguy cơ tuyệt chủng.</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.animals.vi.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.236.screenshots.ffbfb472-814d-4bf1-8de5-2e643e50b824_201810181823101313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.236.screenshots.06e23df1-dd2e-4d11-9c6b-d52baedc7f0d_201810181823101313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.236.screenshots.e130294c-67ed-4d24-9346-9db11ccf9523_201810181823101313.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.animals.vi</binary>
</provides>
<languages>
<lang percentage="100">vi</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.945.appCenterThumbnail.9142d96d-95b9-4f8a-932c-1437ff3e1656_201810152005895757.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.animals.vi/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.astronomy.en.desktop</id>
<name>Astronomy</name>
<summary>Learn about the universe and all it contains</summary>
<description><p>Is there anything more incredible than outer space? This app will introduce you to the cosmos and will teach you about our own solar system and far beyond. Learn about planets, stars, galaxies, and even the mysteries of black holes! Understand our sun and moon, and think about the possibility of life elsewhere in the universe. You’ll want to take off in a rocket ship after exploring this app!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.astronomy.en.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.237.screenshots.3065fcb2-797f-4ede-b85c-706feb0e8c6d_201810161515453232.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.237.screenshots.1e16d8f2-10a3-4597-ae8f-9d528f0254c8_201810161515453232.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.237.screenshots.da25240e-cacc-4f20-b03f-d91adebd29e3_201810161515453232.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.astronomy.en</binary>
</provides>
<languages>
<lang percentage="100">en</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.983.appCenterThumbnail.aca1e173-cf23-438f-be77-6409273c8819_201810181829885353.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.astronomy.en/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.astronomy.es.desktop</id>
<name>Astronomía</name>
<summary>Explora el universo y todo lo que contiene</summary>
<description><p>¿Hay algo más impresionante e increíble que el espacio exterior? Este programa te dará a conocer el gran cosmos, enseñándote sobre tu propio sistema solar y más allá. Aprende sobre los planetas, las estrellas, las galaxias y los misteriosos agujeros negros. Entiende nuestro sol y luna y considera la posibilidad de vida en otras partes del universo. ¡Querrás salir en tu propia nave espacial después de explorar este programa!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.astronomy.es.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.238.screenshots.c80fbe0a-53af-4d58-8691-67e8567b3447_201810161552772121.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.238.screenshots.d2e77af5-2ce4-4a9d-8346-9ac1e64ea775_201810161552772121.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.238.screenshots.8a87016e-229e-41c7-85bb-2c3a6aed946e_201810161552772121.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.astronomy.es</binary>
</provides>
<languages>
<lang percentage="100">es</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.990.appCenterThumbnail.c7e12831-6053-46d6-a2c3-af1ed8e46a24_201810181830262626.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.astronomy.es/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.astronomy.id.desktop</id>
<name>Astronomi</name>
<summary>Pelajari tentang alam semesta dan semua yang ada di dalamnya</summary>
<description><p>Apakah ada yang lebih mengagumkan dari luar angkasa? Aplikasi ini akan memperkenalkan Anda kepada alam semesta dan mengajari Anda tentang sistem tata surya kita dan jauh melampauinya. Pelajari tentang planet, bintang, galaksi, dan bahkan misteri lubang hitam! Cari tahu tentang matahari dan bulan, dan pikirkan tentang kemungkinan adanya bentuk kehidupan di suatu tempat di alam semesta. Setelah menjelajahi aplikasi ini, Anda pasti akan ingin terbang naik roket!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.astronomy.id.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.239.screenshots.38036afe-a710-4489-b1ac-e51abc56494d_201810161554565555.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.239.screenshots.c50389c5-5fe9-4d2b-82ea-625a646af2e4_201810161554565555.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.239.screenshots.8fa2eee5-087c-4931-9512-aa4d64291c8d_201810161554565555.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.astronomy.id</binary>
</provides>
<languages>
<lang percentage="100">id</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.997.appCenterThumbnail.fa0e5ceb-3c19-4c78-bcd4-67fc1bcd977d_201810181834854545.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.astronomy.id/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.astronomy.pt.desktop</id>
<name>Astronomia</name>
<summary>Aprenda sobre o universo e tudo que contém nele</summary>
<description><p>Existe coisa mais incrível que o espaço sideral? Esse programa vai te apresentar ao cosmos, te ensinar sobre nosso sistema solar e muito mais. Aprenda sobre os planetas, estrelas, galáxias e até mesmo os mistérios dos buracos negros! Entenda o sol e a lua e pense sobre a possibilidade de vida em outros lugares do universo. Você vai querer decolar em um foguete depois que de explorar este programa!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.astronomy.pt.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.240.screenshots.e1ae3402-69a8-4a42-9219-23bf86a781dc_20181016155797088.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.240.screenshots.5fbf03f8-9f34-4b7c-9369-485cf328a0f4_20181016155797088.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.240.screenshots.c6c3f0cb-651b-45e1-8357-8397d40ea493_20181016155797088.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.astronomy.pt</binary>
</provides>
<languages>
<lang percentage="100">pt</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1004.appCenterThumbnail.295f4655-ee6e-4068-ae41-ecef58d43890_201810181835292525.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.astronomy.pt/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.astronomy.vi.desktop</id>
<name>Thiên văn học</name>
<summary>Tìm hiểu tất cả về thế giới sự sống xung quanh bạn</summary>
<description><p>Nghiên cứu sinh học là một sự theo đuổi thú vị bởi điều này giúp chúng ta hiểu được ý nghĩa của sự sống khi bản thân cũng chính là những sinh vật sống. Ứng dụng này đề cập tới mọi thứ từ tế bào và sinh vật nhỏ bé tới thực vật và động vật. Bạn có thể sử dụng ứng dụng này để nghiên cứu nhiều tiểu ngành sinh học, hoặc đơn giản chỉ để có được hiểu biết tốt hơn về bộ môn sinh học nói chung. Dù là bạn muốn nghiên cứu thêm kiến thức để chuẩn bị cho một bài kiểm tra hoặc chỉ đơn gian là muốn tìm hiểu thêm về chủ đề này, hãy tải ứng dụng này ngay hôm nay để bắt đầu!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.astronomy.vi.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.241.screenshots.a4d9e5c2-07bc-47db-974c-a1c7ccb79347_201810161549043838.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.241.screenshots.2d4de611-3d5b-4575-83de-2a10ffa95026_201810161549043838.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.241.screenshots.2188b902-a520-4b50-8759-85a387a48e4d_201810161549043838.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.astronomy.vi</binary>
</provides>
<languages>
<lang percentage="100">vi</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1011.appCenterThumbnail.54ec4688-712f-4b36-b6db-d47bf552df7c_201810181836594141.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.astronomy.vi/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.bengali_curriculum.bn_BD.desktop</id>
<name>জাতীয় পাঠ্যপুস্তক</name>
<summary>সব বিষয়ে জাতীয় পাঠ্যপুস্তক</summary>
<description><p>এই অ্যাপটি থেকে শেখা যাবে প্রথম শ্রেণী থেকে নবম শ্রেণী উপযোগী বাংলা, অঙ্ক, বিজ্ঞান, সমাজ বিজ্ঞান, ধর্ম, ইংরেজি এবং আরও অনেক বিষয়। প্রতিটা বিষয়ের উপর আছে পর্যাপ্ত তথ্য ও অনুশীলন যা শিক্ষার্থীদের বিদ্যালয়ে সফল হতে সাহায্য করবে। আপনি যদি শিক্ষক হন, তবে পুরো শিক্ষাবর্ষ এই অ্যাপটি ব্যবহারের মাধ্যমে শিক্ষার্থীদের নির্দেশনা প্রদান করতে পারবেন।</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.bengali_curriculum.bn_BD.png</icon>
<categories>
<category>Education</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.308.screenshots.a13de1ac-12b7-4c0e-a91a-bb53cbe6d1ca_201810240022994848.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.308.screenshots.2ab78ec9-2f68-4122-90c3-a8fd59e2bcb6_201810240022994848.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.308.screenshots.3660bb9f-59ac-454a-b7b7-f19aebfc4b8f_201810240022994848.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.bengali_curriculum.bn_BD</binary>
</provides>
<languages>
<lang percentage="100">bn</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1486.appCenterThumbnail.3c8d8b48-9d4d-41b6-be64-80f70f96dc99_201810240022454242.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.bengali_curriculum.bn_BD/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.bible.en.desktop</id>
<name>The Holy Bible</name>
<summary>English Bible</summary>
<description><p>The full Old and New Testaments of the King James (1662) version of the Bible.</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.bible.en.png</icon>
<categories>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.215.screenshots.442e4b9e-987c-4f9b-a84f-318e2139e15b_201809170833101313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.215.screenshots.b5c10555-f261-44d1-beec-c192f267eba6_201809170833101313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.215.screenshots.3ed12dc8-070d-457f-ae36-408b4ce765f7_201809170833101313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.215.screenshots.cf8b35fd-6209-4ada-b705-9f4a0f37eb72_201809170833101313.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.bible.en</binary>
</provides>
<languages>
<lang percentage="100">en</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1748.appCenterThumbnail.11389801-9400-421f-a0c9-4af0e7f9d6a7_201901222257552828.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.bible.en/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.bible.sw.desktop</id>
<name>Bibilia ya Kiswahili</name>
<summary>BIBLIA TAKATIFU</summary>
<description><p>Bibilia Takatifu ya agano jipya na agano la kale.</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.bible.sw.png</icon>
<categories>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.219.screenshots.9bc4546d-a43a-4d35-9753-a093b0df384e_201809170810243434.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.219.screenshots.ee926055-df95-4f18-8602-03a7b0e1013e_201809170811521515.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.219.screenshots.11612e6c-c5c2-4d60-ad07-173653241afe_201809170811521515.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.219.screenshots.f8939460-71d7-4010-9ec1-a217aac33349_201809170812053535.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1"/>
<content_rating type="oars-1.1"/>
<provides>
<binary>com.endlessm.bible.sw</binary>
</provides>
<languages>
<lang percentage="100">sw</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.884.appCenterThumbnail.50060a89-c741-4050-ac04-6af238dec043_201809141051475959.png</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.bible.sw/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.bibliotecas_embrapa.pt_BR.desktop</id>
<translation type="gettext">eos-subscriptions-apps</translation>
<name>Bibliotecas Embrapa</name>
<summary>Publicações da Embrapa</summary>
<description><p>Uma coletânea de publicações da Embrapa sobre agricultura familiar, agroindústria, produção de alimentos, produtividade e segurança alimentar.</p></description>
<icon type="cached" height="64" width="64">64x64/com.endlessm.bibliotecas_embrapa.pt_BR.png</icon>
<categories>
<category>Education</category>
</categories>
<project_license>GPL-3.0+</project_license>
<url type="homepage">https://endlessm.com</url>
<project_group>GNOME</project_group>
<screenshots>
<screenshot type="default">
<image type="source">https://d3lapyynmdp1i9.cloudfront.net/screenshots/com.endlessm.bibliotecas_embrapa.pt_BR/C/com.endlessm.bibliotecas_embrapa.pt_br-screenshot1.jpg</image>
</screenshot>
<screenshot>
<image type="source">https://d3lapyynmdp1i9.cloudfront.net/screenshots/com.endlessm.bibliotecas_embrapa.pt_BR/C/com.endlessm.bibliotecas_embrapa.pt_br-screenshot2.jpg</image>
</screenshot>
<screenshot>
<image type="source">https://d3lapyynmdp1i9.cloudfront.net/screenshots/com.endlessm.bibliotecas_embrapa.pt_BR/C/com.endlessm.bibliotecas_embrapa.pt_br-screenshot3.jpg</image>
</screenshot>
</screenshots>
<languages>
<lang percentage="100">ar</lang>
<lang percentage="63">bn</lang>
<lang percentage="100">es</lang>
<lang percentage="100">fr</lang>
<lang percentage="100">hi</lang>
<lang percentage="100">id</lang>
<lang percentage="100">pt_BR</lang>
<lang percentage="100">th</lang>
<lang percentage="100">vi</lang>
<lang percentage="100">zh_CN</lang>
<lang percentage="100">zh_TW</lang>
</languages>
<metadata>
<value key="Endless::HasDiscoveryFeedContent">false</value>
<value key="GnomeSoftware::popular-background">https://d3lapyynmdp1i9.cloudfront.net/thumbnails/com.endlessm.bibliotecas_embrapa.pt_BR/com.endlessm.bibliotecas_embrapa.pt_br-thumb.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.bibliotecas_embrapa.pt_BR/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.biology.en.desktop</id>
<name>Biology</name>
<summary>Learn all about the living world around you</summary>
<description><p>Studying biology is an exciting pursuit because it gives us an understanding of what it means to be a living creature. This app covers everything from cells and tiny organisms to plants and animals. You can use this app to study many sub-disciplines of biology, or simply to gain a better understanding of the subject as a whole. Whether you want to study for a test or just learn more about this subject, download this app today to get started!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.biology.en.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.243.screenshots.a365875f-416d-494a-8ba8-aba014dbde7d_201810181844555050.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.243.screenshots.42ab8005-c754-4802-a28f-ef2cef4d1ac7_201810181844555050.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.243.screenshots.47782c80-066a-419b-b200-fa18218f81a1_201810181844555050.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.biology.en</binary>
</provides>
<languages>
<lang percentage="100">en</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1025.appCenterThumbnail.33fdfb5a-36da-4df5-a5e1-a5b23aa54c2b_201810181844304444.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.biology.en/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.biology.es.desktop</id>
<name>Biología</name>
<summary>Aprende sobre la vida en el mundo que te rodea</summary>
<description><p>El estudio de la biología es emocionante porque te ayuda a entender qué es lo que significa ser un ser vivo. Este programa tiene mucha información, desde artículos sobre las células y los organismos minúsculos hasta de las plantas y animales. Puedes utilizar este programa para estudiar muchas sub-disciplinas de la biología, o simplemente para aprender más sobre la materia. Si quieres estudiar para un examen o simplemente aprender más sobre este tema, ¡descarga este programa!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.biology.es.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.244.screenshots.8b248977-8d60-42e7-8e47-86a0a0a9c2c1_20181018184993088.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.244.screenshots.794e2b04-7110-4eeb-b815-4103fd212215_20181018184993088.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.244.screenshots.0a117f69-5739-4446-bdf1-6ae9769442db_20181018184993088.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.biology.es</binary>
</provides>
<languages>
<lang percentage="100">es</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1032.appCenterThumbnail.d16c85c8-0155-4172-ae59-f999e5e3c2bd_20181018184959022.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.biology.es/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.biology.id.desktop</id>
<name>Biologi</name>
<summary>Belajar mengenai dunia yang hidup di sekitar Anda</summary>
<description><p>Belajar biologi adalah pengejaran yang menarik karena memberikan kita pemahaman tentang apa maknanya menjadi makhluk hidup. Aplikasi ini mencakup segala sesuatu dari sel dan organisme kecil hingga tanaman dan hewan. Anda dapat menggunakan aplikasi ini untuk mempelajari banyak subdisiplin biologi, atau hanya untuk mendapatkan pemahaman yang lebih baik dari subjek ini secara keseluruhan. Entah Anda ingin belajar untuk ujian atau hanya ingin mempelajari lebih lanjut tentang subjek ini, unduhlah aplikasi ini hari ini untuk memulainya!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.biology.id.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.245.screenshots.57c2fd2a-e8a1-4f27-864b-b9707c134c4d_201810181851271717.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.245.screenshots.b2dc067e-6a54-4eac-b0d9-61c555d40289_201810181851271717.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.245.screenshots.ae7aec5d-c38a-4391-bee2-aa988a19ddab_201810181851271717.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.biology.id</binary>
</provides>
<languages>
<lang percentage="100">id</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1039.appCenterThumbnail.692e74f9-bfcb-420e-ad92-d6b250a38c51_201810181851231111.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.biology.id/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.biology.pt.desktop</id>
<name>Biologia</name>
<summary>Aprenda tudo sobre o mundo vivo ao seu redor</summary>
<description><p>Estudar a biologia é um exercício emocionante porque nos dá uma compreensão do que significa ser uma criatura viva. Este programa abrange desde as células e organismos minúsculos à plantas e animais. Você pode usar este programa para estudar muitas sub-disciplinas de biologia, ou simplesmente para obter um melhor entendimento do assunto como um todo. Se você quer estudar para um teste ou apenas saber mais sobre este assunto, baixe este programa hoje mesmo para começar!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.biology.pt.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.246.screenshots.9bee96ae-90d5-450d-a346-2226fc8a9398_201810181856081313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.246.screenshots.5f87ca4c-2b4c-46ad-8343-765c522aa3d6_201810181856081313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.246.screenshots.dedd58ea-8e56-4eb0-b20a-746d4c074a0c_201810181856081313.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.biology.pt</binary>
</provides>
<languages>
<lang percentage="100">pt</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1046.appCenterThumbnail.af89aa2c-1e72-414b-9376-553b7c7110bd_20181018185602077.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.biology.pt/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.biology.th.desktop</id>
<name>ชีววิทยา</name>
<summary>เรียนรู้เกี่ยวกับสิ่งมีชีวิตที่อยู่รอบตัวคุณ</summary>
<description><p>การเรียนชีววิทยาเป็นการแสวงหาความรู้ที่น่าตื่นเต้นเพราะทำให้เราเข้าใจความหมายของสิ่งมีชีวิตมากขึ้น แอปฯ นี้ครอบคลุมทุกอย่าง ตั้งแต่เซลล์และสิ่งมีชีวิตขนาดเล็กไปจนถึงพืชและสัตว์ คุณสามารถใช้แอปฯ นี้ในการศึกษาชีววิทยาในสาขาย่อยต่างๆ หรือเพียงเพื่อทำให้เข้าใจเรื่องชีววิทยาในภาพรวมมากขึ้นก็ได้ ไม่ว่าคุณจะต้องการเรียนเพื่อเตรียมตัวสอบ หรือแค่เรียนเพิ่มเติมเกี่ยวกับหัวข้อนี้ ดาวน์โหลดแอปฯ ตอนนี้แล้วเริ่มเรียนกันเลย!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.biology.th.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.247.screenshots.0ff48dec-9ef9-4010-bda2-ddde303bb9b9_201810181858702222.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.247.screenshots.be9ba658-a97a-41c9-8326-bb48ec0212a2_201810181858702222.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.247.screenshots.7d0e2cb5-e3bf-4c72-8757-13d0ad737ad5_201810181858702222.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.biology.th</binary>
</provides>
<languages>
<lang percentage="100">th</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1053.appCenterThumbnail.a2598361-44a9-4d97-8cae-e4e4e3cf1663_201810181858551616.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.biology.th/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.biology.vi.desktop</id>
<name>Sinh học</name>
<summary>Tìm hiểu tất cả về thế giới sự sống xung quanh bạn</summary>
<description><p>Nghiên cứu sinh học là một sự theo đuổi thú vị bởi điều này giúp chúng ta hiểu được ý nghĩa của sự sống khi bản thân cũng chính là những sinh vật sống. Ứng dụng này đề cập tới mọi thứ từ tế bào và sinh vật nhỏ bé tới thực vật và động vật. Bạn có thể sử dụng ứng dụng này để nghiên cứu nhiều tiểu ngành sinh học, hoặc đơn giản chỉ để có được hiểu biết tốt hơn về bộ môn sinh học nói chung. Dù là bạn muốn nghiên cứu thêm kiến thức để chuẩn bị cho một bài kiểm tra hoặc chỉ đơn gian là muốn tìm hiểu thêm về chủ đề này, hãy tải ứng dụng này ngay hôm nay để bắt đầu!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.biology.vi.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.248.screenshots.69577e56-b35e-4781-8946-9811b69b2d4e_20181018190794022.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.248.screenshots.91dc3b8e-fe23-439f-9bbb-2e3623bdc41a_20181018190794022.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.248.screenshots.41213c3b-1b1a-416c-b796-a1ba185d5367_20181018190794022.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="sex-nudity">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.biology.vi</binary>
</provides>
<languages>
<lang percentage="100">vi</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1060.appCenterThumbnail.e5df4974-0224-4980-bf3b-3f2046638767_201810181906415757.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.biology.vi/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.celebrities.bn_BD.desktop</id>
<name>কীর্তিমান ব্যক্তিত্ব</name>
<summary>আপনার প্রিয় কীর্তিমান ব্যক্তিদের সম্পর্কে আরো জানুন</summary>
<description><p>আপনার প্রিয় মুভি অথবা সঙ্গীত ব্যক্তিত্বের জীবন সম্পর্কে জানতে চান, অথবা গুরুত্বপূর্ণ কোন রাজনৈতিক নেতার পেছনের ইতিহাস বা গঠনকারী বছরগুলো সম্পর্কে আগ্রহী, এই এ্যাপ্লিকেশন আপনাকে পথ দেখিয়ে নিয়ে যাবে আপনার গন্তব্যে। মজা করুন, চমকপ্রদ ও দারুণ সব তথ্য জানুন, এবং বিখ্যাত ব্যক্তিদের সম্পর্কে আপনার জ্ঞান বন্ধুদের সাথে ভাগ করে নিন!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.celebrities.bn_BD.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.249.screenshots.aa76094b-ac1f-480f-9f84-c63c94ba9182_201810181958515454.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.249.screenshots.471e5972-a2e9-4f8a-9784-b9206ca8673f_201810181958515454.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.249.screenshots.f9b9a8d3-e6a3-4d53-9643-73966a0fb0ec_201810181958515454.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="violence-slavery">mild</content_attribute>
<content_attribute id="violence-worship">mild</content_attribute>
<content_attribute id="drugs-alcohol">mild</content_attribute>
<content_attribute id="drugs-narcotics">mild</content_attribute>
<content_attribute id="drugs-tobacco">mild</content_attribute>
<content_attribute id="sex-nudity">mild</content_attribute>
<content_attribute id="sex-homosexuality">mild</content_attribute>
<content_attribute id="sex-prostitution">mild</content_attribute>
<content_attribute id="sex-adultery">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="violence-slavery">mild</content_attribute>
<content_attribute id="violence-worship">mild</content_attribute>
<content_attribute id="drugs-alcohol">mild</content_attribute>
<content_attribute id="drugs-narcotics">mild</content_attribute>
<content_attribute id="drugs-tobacco">mild</content_attribute>
<content_attribute id="sex-nudity">mild</content_attribute>
<content_attribute id="sex-homosexuality">mild</content_attribute>
<content_attribute id="sex-prostitution">mild</content_attribute>
<content_attribute id="sex-adultery">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.celebrities.bn_BD</binary>
</provides>
<languages>
<lang percentage="100">bn</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1116.appCenterThumbnail.c9e8bf81-d1b9-4eb0-88f6-c0431d6ed477_201810181959682222.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.celebrities.bn_BD/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.celebrities.en.desktop</id>
<name>Celebrities</name>
<summary>Learn more about your favorite celebrities</summary>
<description><p>Whether you’re wondering about the life of your favorite movie or pop star, or want to know more about the background and formative years of an important politician, this application can be your guide. Have fun, learn interesting and juicy facts, and share your knowledge of famous people with all of your friends!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.celebrities.en.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.250.screenshots.033dbc62-587c-49d3-92d9-bd9aaad934c8_201810181937371313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.250.screenshots.7a182798-4ad7-4313-8922-1eca2a9ec42c_201810181937371313.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.250.screenshots.a8784bbb-bee3-491d-ae37-89b3b5643d46_201810181937371313.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="violence-slavery">mild</content_attribute>
<content_attribute id="violence-worship">mild</content_attribute>
<content_attribute id="drugs-alcohol">mild</content_attribute>
<content_attribute id="drugs-narcotics">mild</content_attribute>
<content_attribute id="drugs-tobacco">mild</content_attribute>
<content_attribute id="sex-nudity">mild</content_attribute>
<content_attribute id="sex-homosexuality">mild</content_attribute>
<content_attribute id="sex-prostitution">mild</content_attribute>
<content_attribute id="sex-adultery">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="violence-slavery">mild</content_attribute>
<content_attribute id="violence-worship">mild</content_attribute>
<content_attribute id="drugs-alcohol">mild</content_attribute>
<content_attribute id="drugs-narcotics">mild</content_attribute>
<content_attribute id="drugs-tobacco">mild</content_attribute>
<content_attribute id="sex-nudity">mild</content_attribute>
<content_attribute id="sex-homosexuality">mild</content_attribute>
<content_attribute id="sex-prostitution">mild</content_attribute>
<content_attribute id="sex-adultery">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.celebrities.en</binary>
</provides>
<languages>
<lang percentage="100">en</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1072.appCenterThumbnail.474a2ed2-8587-4e18-b13a-36c82f427c93_20181018193785066.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.celebrities.en/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.celebrities.es.desktop</id>
<name>Celebridades</name>
<summary>Información y chisme sobre los más famosos</summary>
<description><p>¿Te fascina la vida de los famosos? Ahora podrás saber más de tus estrellas favoritas y mantenerte al tanto de lo que hacen. Ya sea que te preguntes sobre la vida de tu estrella de cine favorita o de tu músico favorito, o quieras saber más sobre los orígenes y juventud de un político importante, este programa puede ser tu guía. ¡Diviértete, conoce hechos importantes, noticias jugosas y comparte tus conocimientos sobre los famosos con todos tus amigos!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.celebrities.es.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.251.screenshots.92b90246-3594-4ae5-82b3-8680f633a287_201810181939153939.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.251.screenshots.045298d3-2a06-410d-8c90-5347a6d8f757_201810181939153939.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.251.screenshots.67f4486d-56d1-4e88-b17a-347fc23420bb_201810181939153939.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="violence-slavery">mild</content_attribute>
<content_attribute id="violence-worship">mild</content_attribute>
<content_attribute id="drugs-alcohol">mild</content_attribute>
<content_attribute id="drugs-narcotics">mild</content_attribute>
<content_attribute id="drugs-tobacco">mild</content_attribute>
<content_attribute id="sex-nudity">mild</content_attribute>
<content_attribute id="sex-homosexuality">mild</content_attribute>
<content_attribute id="sex-prostitution">mild</content_attribute>
<content_attribute id="sex-adultery">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="violence-slavery">mild</content_attribute>
<content_attribute id="violence-worship">mild</content_attribute>
<content_attribute id="drugs-alcohol">mild</content_attribute>
<content_attribute id="drugs-narcotics">mild</content_attribute>
<content_attribute id="drugs-tobacco">mild</content_attribute>
<content_attribute id="sex-nudity">mild</content_attribute>
<content_attribute id="sex-homosexuality">mild</content_attribute>
<content_attribute id="sex-prostitution">mild</content_attribute>
<content_attribute id="sex-adultery">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.celebrities.es</binary>
</provides>
<languages>
<lang percentage="100">es</lang>
</languages>
<metadata>
<value key="GnomeSoftware::popular-background">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/app.1080.appCenterThumbnail.67788c43-28dc-463e-8025-95cba34169ef_201810181939973131.jpg</value>
</metadata>
<bundle type="flatpak" runtime="com.endlessm.apps.Platform/x86_64/5" sdk="com.endlessm.apps.Sdk/x86_64/5">app/com.endlessm.celebrities.es/x86_64/eos3</bundle>
</component><component type="desktop">
<id>com.endlessm.celebrities.es_GT.desktop</id>
<name>Celebridades</name>
<summary>Información y chisme sobre los más famosos</summary>
<description><p>¿Te fascina la vida de los famosos? Ahora podrás saber más de tus estrellas favoritas y mantenerte al tanto de lo que hacen. Ya sea que te preguntes sobre la vida de tu estrella de cine favorita o de tu músico favorito, o quieras saber más sobre los orígenes y juventud de un político importante, este programa puede ser tu guía. ¡Diviértete, conoce hechos importantes, noticias jugosas y comparte tus conocimientos sobre los famosos con todos tus amigos!</p></description>
<icon height="64" width="64" type="cached">64x64/com.endlessm.celebrities.es_GT.png</icon>
<categories>
<category>Education</category>
<category>Reference</category>
</categories>
<project_license>proprietary</project_license>
<url type="homepage">https://endlessos.com</url>
<screenshots>
<screenshot type="default">
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.252.screenshots.3dfbcee0-f9ae-4a8b-945f-c17a5a26e44b_20181018195859066.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.252.screenshots.5f5215d2-32ca-458a-b7ee-474247d312cc_20181018195859066.png</image>
</screenshot>
<screenshot>
<image type="source">https://com-endless--cloud-soma-prod--shared-portal.s3.amazonaws.com/apps.252.screenshots.0b6a9038-f173-4dc4-aca7-ecca8ba927f1_20181018195859066.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
<content_attribute id="violence-slavery">mild</content_attribute>
<content_attribute id="violence-worship">mild</content_attribute>
<content_attribute id="drugs-alcohol">mild</content_attribute>
<content_attribute id="drugs-narcotics">mild</content_attribute>
<content_attribute id="drugs-tobacco">mild</content_attribute>
<content_attribute id="sex-nudity">mild</content_attribute>
<content_attribute id="sex-homosexuality">mild</content_attribute>
<content_attribute id="sex-prostitution">mild</content_attribute>
<content_attribute id="sex-adultery">mild</content_attribute>
</content_rating>
<content_rating type="oars-1.1">
<content_attribute id="violence-slavery">mild</content_attribute>
<content_attribute id="violence-worship">mild</content_attribute>
<content_attribute id="drugs-alcohol">mild</content_attribute>
<content_attribute id="drugs-narcotics">mild</content_attribute>
<content_attribute id="drugs-tobacco">mild</content_attribute>
<content_attribute id="sex-nudity">mild</content_attribute>
<content_attribute id="sex-homosexuality">mild</content_attribute>
<content_attribute id="sex-prostitution">mild</content_attribute>
<content_attribute id="sex-adultery">mild</content_attribute>
</content_rating>
<provides>
<binary>com.endlessm.celebrities.es_GT</binary>
</provides>
<languages>
<lang percentage="100">es</lang>
</languages>