Developing Apps for Firefox OS Concepts, Techniques and Practical Solutions

Total Page:16

File Type:pdf, Size:1020Kb

Developing Apps for Firefox OS Concepts, Techniques and Practical Solutions Developing Apps for Firefox OS Concepts, Techniques and Practical Solutions Michael Romer This book is for sale at http://leanpub.com/firefox-os This version was published on 2013-08-15 This is a Leanpub book. Leanpub empowers authors and publishers with the Lean Publishing process. Lean Publishing is the act of publishing an in-progress ebook using lightweight tools and many iterations to get reader feedback, pivot until you have the right book and build traction once you do. ©2013 by Michael Romer, Grevingstrasse 35, 48151 Münster, Germany, [email protected] - All rights reserved. Also By Michael Romer Webentwicklung mit Zend Framework 2 Web Development with Zend Framework 2 Persistenz in PHP mit Doctrine 2 ORM PHP Data Persistence with Doctrine 2 ORM Contents 1 Introduction (available) .................................... 1 1.1 Firefox OS at a glance ................................... 1 1.2 Open Web Apps ...................................... 2 1.3 Web Runtime ....................................... 2 1.4 Firefox Marketplace .................................... 3 1.5 WebAPIs .......................................... 3 1.6 Web Activities ....................................... 3 1.7 Firefox OS Boilerplate ................................... 3 2 A basic development environment (available) ....................... 4 2.1 The browser now is the mobile apps developer’s best friend .............. 4 2.2 Firefox OS Simulator ................................... 4 2.3 Firefox OS hardware devices ............................... 4 2.4 Mortar & FxOSstub .................................... 5 3 Hello, Firefox OS! (available) ................................. 6 3.1 Building the first app ................................... 6 3.2 Firefox OS architecture: Gonk, Gecko & Gaia ...................... 8 3.3 Security .......................................... 10 4 The Manifest file (available) ................................. 11 4.1 Meta information about an app .............................. 11 4.2 App settings ........................................ 12 4.3 Developer settings ..................................... 14 4.4 Permission settings .................................... 14 5 WebAPIs by example (partly available) ........................... 16 5.1 The Grumpy Phone app (using Vibration API & Proximity API) . 16 5.2 More Web APIs (TODO) ................................. 20 6 Web Activities by example (partly available) ........................ 25 6.1 Introduction ........................................ 25 6.2 The Funny Faces app (Pick Activity) ........................... 25 6.3 More Web Activities (TODO) ............................... 31 CONTENTS 7 Programming the Firefox OS Web Runtime (partly available) .............. 32 7.1 HTML & CSS (TODO) .................................. 32 7.2 JavaScript (partly available) ............................... 32 7.3 Firefox UI Build Blocks & Transitions (partly available) . 34 7.4 Single Page Apps (partly available) ............................ 35 7.5 HTML5 canvas (TODO) ................................. 36 7.6 Working offline (TODO) ................................. 36 7.7 jQuery Mobile UI framework (TODO) .......................... 36 7.8 WebGL (TODO) ...................................... 36 8 Distributing apps (partly available) ............................. 37 8.1 Introduction (TODO) ................................... 37 8.2 Distributing via a website (TODO) ............................ 37 8.3 Submitting to a Marketplace (available) ......................... 37 8.4 App updates on a Marketplace (available) ........................ 38 9 Modifying the Firefox OS core UI Gaia (TODO) ...................... 39 1 Introduction (available) We live in crazy times. Not long ago everybody moved to the Web mainly for its killer feature to easily access applications-no downloads, no installs, no updates, no hassle. People more and more moved away from native Windows or Mac applications and into the browser using apps running online directly in the browser. They did so on their PCs and laptops, but then Apple came with its iPhone and later the iPad. Surprisingly, with the iPhone and iPad, locally installed apps had a very successful comeback. Its hard to tell why exactly this happened, but there are definitely good reasons, e.g.: • Apple opened up its App Store with a payment system built-in. In fact, the Web still lacks of a standard solution to make it as easy as in an app store to pay for media or applications. In fact, with a typicall app store, it couldn’t be much easier anymore to buy digital products. This is the main reason for publishers and developers to hop onto the native apps wave-they can easily monetize their digital products. • New apps can be discovered easily using the App Store. • Its easy to launch an app (via a home screen icon) and to switch between running apps. • Native apps mostly offer great usability and feel snappy. They are built from the ground up for the touch interfaces of smartphones and tablets. • Apps can do things which web apps cannot. Mainly because web apps running in a browser are not allowed or simply technically cannot access important device features such as camera, proximity sensor and the like. • Push notifications offer a great way to receive messages from the web in a convenient short message (SMS) fashion. • Native apps mainly always still work well while being offline. • And lastly: Apps are en-vogue. However, in fact, there is no reason why an app needs to be built with proprietary technology. With Firefox OS, Mozilla now brings open web technologies to mobile app development, challenging proprietary platforms from Apple (iOS) or Google (Android). Firefox OS essentially is completely based on open standards and is a new competitor to the established mobile platforms. If one believes in the web, Firefox OS is an interesting new mobile platform which huge potential. 1.1 Firefox OS at a glance On first sight, Firefox OS looks like just another operating system for mobile phones. However, what it makes special is that its apps are developed using standard web technologies like HTML5, CSS and Introduction (available) 2 JavaScript. Mozilla, the creator of the famous Firefox browser-and now also of Firefox OS-calls these kinds of apps “Open Web Apps”. This is a fundamentally different approach compared to Apple with iOS and Objectiv-C or Google with Android and Java. 1.2 Open Web Apps Open Web Apps come in two different flavors: Hosted apps and packaged apps. While hosted apps run on a server on the web, packages apps bring all the app’s code with them in an installer-like fashion. Obviously, both types have its pros and cons, but by definition, both types are “real” Firefox OS apps. 1.3 Web Runtime Open Web Apps run in a so-called Web Runtime. A Web Runtime essentially is a browser-like runtime environment for web apps while the browser itself is invisible during execution-no typical browser frame, toolbar, etc. One may remember Mozilla Prism¹ and Adobe Air-both conceptually web runtimes as well. Prism is not an active project anymore. A web runtime to power open web apps is available in Firefox OS, but also on Windows, Mac as well as Android. 1.3.1 Hosted apps Hosted apps can simply be existing websites that also work well on small screen sizes and touch interfaces. If an existing websites is built in a fluid manner, e.g. by using responsive web design techniques, they may work on a Firefox OS mobile device “as-is”. This is especially true, if a website already has an “app-like” UI, e.g. if jQuery Mobile is used. Also with hosted apps, updating the app simply means updating the website-the workflows are very much the same compared to regular web site development. On the flip side, hosted apps mostly don’t work without Internet connection. Thanks to the HTML5 Appcache Specification this issue can partly be solved elegantly, as we will see later in the book. A bit more painful is the fact, that hosted apps cannot access all the APIs offered by Firefox OS, meaning they cannot access several device features. The reason for this mainly is security, as hosted apps cannot fully be security cleared beforehand. This may or may not be an issue depending on the application itself. Hosted apps are deployed on a remote server. The only component installed locally on the mobile device is the app’s Manifest. 1.3.2 Packaged apps Packaged apps are much more like apps on Android or iOS as they are self-contained and don’t need a website running on a remote host to function. Of course, they may also consume remote ¹https://mozillalabs.com/en-US/prism/ Introduction (available) 3 web services, however, this is not required. A packaged app works standalone by default, therefore often does not need constant Internet connectivity. As packaged apps can be reviewed for security issues beforehand, they may access more APIs compared to hosted apps. This makes packaged apps particular interesting. As with hosted apps, there is a flip side. Packaged app updates must be distributed to all devices with the app installed. This, obviously, is harder than updating a website. Technically, a packaged app simply is a zip file with some additional metadata. This means, a packaged app is installed completely on the device with its code and assets as well the Manifest file. 1.4 Firefox Marketplace The Firefox Marketplace is a place get new apps for a Firefox OS device. By design, there might be other stores distributing Firefox Apps, very much like in the Android ecosystem while Apple runs the
Recommended publications
  • Trusted Root.Ai
    SSL Certs Code Signing A Leader in Online Security Doc Signing & Authentication Solutions for over 10 years Digital IDs GlobalSign Trusted Root™ Global acceptance and trust for your Microsoft CA or Inhouse CA In recent years many enterprises and major organizations have established ubiquitous to be used without support issues. The time and cost associated their own Enterprise Certificate Authority (CA) such as the Microsoft CA with with an Embedding Program massively outweigh any advantage that would the primary goal of enhancing security for an ever increasing number of be associated with implementing an Enterprise CA solution. diverse web based business processes. For an enterprise to establish their Today, there is no need for such CAs to have their Root Certificate directly own Enterprise CA it must self-sign a CA Root Certificate, which is then used to embedded in browsers to create the necessary feeling of trust. GlobalSign has issue digital certificates to employees, extranet users and even machines and made available a simple solution for CAs to chain themselves under services. Such certificates can then be used to digitally sign and encrypt GlobalSign's embedded Root Certificate: Trusted Root™. communications and also to control access to web resources. However this self-signed Root CA Certificate is not automatically trusted by main-stream As a leading WebTrust accredited Certification Authority, GlobalSign has operating systems (such as Microsoft Windows), browsers (such as Microsoft maintained its own pioneering Root Embedding program GlobalSign Ready Internet Explorer, Mozilla Firefox) or email clients (such as Microsoft Outlook). for over 10 years and now the GlobalSign Root CA Certificate is trusted by This inability to trust causes warning messages to be displayed, resulting in a practically all mainstream browsers and applications.
    [Show full text]
  • Android Firefox Remove Recommendations by Pocket
    Android Firefox Remove Recommendations By Pocket Ramiform Win usually overate some deoxyribose or hepatising divergently. Biannual Mikel pulp nor'-west or conglobating suppositionally when Percy is unofficial. Is Washington always stenotropic and dimensional when mantle some ventilation very seventhly and reflectively? Google Mail Checker is extension for chrome to know the status of the number of unread messages in Google Mail inbox. If you choose to upgrade, Pocket will create a permanent copy of everything in your library. University of North Carolina shuts down athletic programs through Thursday. This is particularly surprising since it was Firefox that made browser extensions mainstream. Not all VPNs have an extension for Firefox though, and some of them work differently. When I launched App Center, it just brought up a small Live Update screen, then listed a BIOS update, so I clicked that, it installed, and restarted. When you open a new tab, Pocket recommends a list of articles based on the most popular items saved that day. The next command should remove two directories. While the Safari browser does come standard on all Apple devices able to connect to the internet, an update might be needed every once in awhile. Instead, it basically learns as you use it. When it easy and remove firefox recommendations by pocket considers to emulate various changes. Then, click Save to save your changes. And the respect is just as prevalent as the accolades and ability. Change the mode from Novice to Advanced. Vysor puts your Android on your desktop. It can download and organize files, torrents and video in fast mode.
    [Show full text]
  • Secure Access 6.5 Supported Platforms Guide
    Platform Guide SA Supported Platforms Service Package Version 6.5 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408 745 2000 or 888 JUNIPER www.juniper.net September 1, 2009 Contents Introduction..........................................................................................................................1 SA Hardware Requirements ...............................................................................................1 Platform Support .................................................................................................................1 Qualified Platform........................................................................................................1 Compatible Platform....................................................................................................1 Multiple Language Support .........................................................................................2 Web and File Browsing ...............................................................................................3 Client-side Java Applets..............................................................................................4 Secure Terminal Access .............................................................................................5 Java-Secure Application Manager (J-SAM) ................................................................6 Windows version of Secure Application Manager (W-SAM).......................................7 Network Connect.........................................................................................................8
    [Show full text]
  • Firefox Quantum Remove Recommended by Pocket From
    Firefox Quantum Remove Recommended By Pocket From Lamellar Gary restitutes: he ligatured his recognisance bearishly and dully. Desireless Redford suburbanized very monotonously while Silvester remains dysteleological and unconfined. Skin-deep Algernon never dislodged so westerly or stanchion any floppiness war. Stack traces are now shown for exceptions inside your console. Press to restore system options as which process starts it'll remove by the jailbreak. It is enabled by default in development versions of Firefox, but average in release versions. We have always bear the result in scratchpad and by pocket. Earn an issue that ff is by firefox quantum. You for tweetdeck, or login to network failures due to open source ip address bar at your activity. Ask a question and give support. Who cares about the features? 2012 after Mozilla detected a security flaw and recommended downgrading to. Access the feature for android firefox remove by now called extensions available for recommended by ad blockers work unencumbered by ad is a set to. This will open large number of your browser extensions that pisses me of money if you can either automatically updated their next app integrated into detail of. Dec 01 2017 Firefox Quantum's interface is still extremely customizable thanks to. Where is the back latch on Firefox? Mozilla Firefox or simply Firefox is that free quote open-source web browser developed by the. It will not collect data in private browser windows, and when Mozilla shares the results of its research, it will do so in a way that minimizes the risk of users being identified, Boyd said.
    [Show full text]
  • Firefox OS Overview Ewa Janczukowicz
    Firefox OS Overview Ewa Janczukowicz To cite this version: Ewa Janczukowicz. Firefox OS Overview. [Research Report] Télécom Bretagne. 2013, pp.28. hal- 00961321 HAL Id: hal-00961321 https://hal.archives-ouvertes.fr/hal-00961321 Submitted on 24 Apr 2014 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Collection des rapports de recherche de Télécom Bretagne RR-2013-04-RSM Firefox OS Overview Ewa JANCZUKOWICZ (Télécom Bretagne) This work is part of the project " Étude des APIs Mozilla Firefox OS" supported by Orange Labs / TC PASS (CRE API MOZILLA FIREFOX OS - CTNG13025) ACKNOWLEGMENTS Above all, I would like to thank Ahmed Bouabdallah and Arnaud Braud for their assistance, support and guidance throughout the contract. I am very grateful to Gaël Fromentoux and Stéphane Tuffin for giving me the possibility of working on the Firefox OS project. I would like to show my gratitude to Jean-Marie Bonnin, to all members of Orange NCA/ARC team and RSM department for their help and guidance. RR-2013-04-RSM 1 RR-2013-04-RSM 2 SUMMARY Firefox OS is an operating system for mobile devices such as smartphones and tablets.
    [Show full text]
  • Download Android Os for Phone Open Source Mobile OS Alternatives to Android
    download android os for phone Open Source Mobile OS Alternatives To Android. It’s no exaggeration to say that open source operating systems rule the world of mobile devices. Android is still an open-source project, after all. But, due to the bundle of proprietary software that comes along with Android on consumer devices, many people don’t consider it an open source operating system. So, what are the alternatives to Android? iOS? Maybe, but I am primarily interested in open-source alternatives to Android. I am going to list not one, not two, but several alternatives, Linux-based mobile OSes . Top Open Source alternatives to Android (and iOS) Let’s see what open source mobile operating systems are available. Just to mention, the list is not in any hierarchical or chronological order . 1. Plasma Mobile. A few years back, KDE announced its open source mobile OS, Plasma Mobile. Plasma Mobile is the mobile version of the desktop Plasma user interface, and aims to provide convergence for KDE users. It is being actively developed, and you can even find PinePhone running on Manjaro ARM while using KDE Plasma Mobile UI if you want to get your hands on a smartphone. 2. postmarketOS. PostmarketOS (pmOS for short) is a touch-optimized, pre-configured Alpine Linux with its own packages, which can be installed on smartphones. The idea is to enable a 10-year life cycle for smartphones. You probably already know that, after a few years, Android and iOS stop providing updates for older smartphones. At the same time, you can run Linux on older computers easily.
    [Show full text]
  • Internal Message
    Earlier today, Mozilla Corporation CEO and Mozilla Foundation Chairwoman Mitchell Baker sent the following message to Mozilla employees. We are making significant changes at Mozilla Corporation today. Pre-COVID, our plan for 2020 was a year of change: building a better internet by accelerating product value in Firefox, increasing innovation, and adjusting our finances to ensure financial stability over the long term. We started with immediate cost-saving measures such as pausing our hiring, reducing our wellness stipend and cancelling our All-Hands. But COVID-19 has accelerated the need and magnified the depth for these changes. Our pre-COVID plan is no longer workable. We have talked about the need for change — including the likelihood of layoffs — since the spring. Today these changes become real. We are also restructuring to put a crisper focus on new product development and go to market activities. In the long run, I am confident that the new organizational structure will serve our product and market impact goals well, but we will talk in detail about this in a bit. But, before that is the painful part. Yes — we need to reduce the size of our workforce. This is hard to internalize and I desperately wish there was some other way to set Mozilla up for success in building a better internet. I desperately wish that all those who choose Mozilla as an employer could stay as long as interest and skills connect. Unfortunately, we can’t make that happen today. We are reducing the size of the MoCo workforce by approximately 250 roles, including closing our current operations in Taipei, Taiwan.
    [Show full text]
  • Security Now! #785 - 09-22-20 Formal Verification
    Security Now! #785 - 09-22-20 Formal Verification This week on Security Now! This week we look at an important security update to Android for Firefox. We bid a fond farewell to Firefox Send and Notes, we look at the promise and growing popularity of the disastrously-named DuckDuckGo Internet search service, we dig into what's behind last Friday's Emergency Directive 20-04 from the DHS/CISA. We'll also take a look at the recent privacy and security improvements incorporated into Android 11 and iOS 14. We have a bit of errata, closing the loop feedback, and SpinRite news. Then we're going to take a look at the need for Formal Verification of our complex security protocols going forward in the context of another critical failure of a massively widespread system. Browser News Update to Firefox 79 for Android An important LAN attack bug was recently fixed in Firefox 79 for Android. Firefox locates other devices on the same LAN to share or receive content. An example might be sharing video streams with a Roku player. To accomplish this, Firefox uses the Simple Service Discovery Protocol, SSDP. And if that sounds familiar to you it's because we've often spoken of it and its mixed-blessing capabilities, limitations, and security shortfalls. Although it was originally intended to be a freestanding protocol, its adoption by the infamous Universal Plug n' Play (UPnP) system moved it into the UPnP specification. It's a simple text-based protocol based on HTTP over UDP. The system uses LAN-wide multicast addressing.
    [Show full text]
  • Firefox Hacks Is Ideal for Power Users Who Want to Maximize The
    Firefox Hacks By Nigel McFarlane Publisher: O'Reilly Pub Date: March 2005 ISBN: 0-596-00928-3 Pages: 398 Table of • Contents • Index • Reviews Reader Firefox Hacks is ideal for power users who want to maximize the • Reviews effectiveness of Firefox, the next-generation web browser that is quickly • Errata gaining in popularity. This highly-focused book offers all the valuable tips • Academic and tools you need to enjoy a superior and safer browsing experience. Learn how to customize its deployment, appearance, features, and functionality. Firefox Hacks By Nigel McFarlane Publisher: O'Reilly Pub Date: March 2005 ISBN: 0-596-00928-3 Pages: 398 Table of • Contents • Index • Reviews Reader • Reviews • Errata • Academic Copyright Credits About the Author Contributors Acknowledgments Preface Why Firefox Hacks? How to Use This Book How This Book Is Organized Conventions Used in This Book Using Code Examples Safari® Enabled How to Contact Us Got a Hack? Chapter 1. Firefox Basics Section 1.1. Hacks 1-10 Section 1.2. Get Oriented Hack 1. Ten Ways to Display a Web Page Hack 2. Ten Ways to Navigate to a Web Page Hack 3. Find Stuff Hack 4. Identify and Use Toolbar Icons Hack 5. Use Keyboard Shortcuts Hack 6. Make Firefox Look Different Hack 7. Stop Once-Only Dialogs Safely Hack 8. Flush and Clear Absolutely Everything Hack 9. Make Firefox Go Fast Hack 10. Start Up from the Command Line Chapter 2. Security Section 2.1. Hacks 11-21 Hack 11. Drop Miscellaneous Security Blocks Hack 12. Raise Security to Protect Dummies Hack 13. Stop All Secret Network Activity Hack 14.
    [Show full text]
  • DSA Position Paper
    Mozilla position paper on the EU Digital Services Act May 2021 Executive summary Introduction Key legislative recommendations Very Large Online Platforms (article 25) Risk assessment and risk mitigation (articles 26-27) Third-party auditing (article 28) Recommender systems (article 29) Transparency of online advertising (article 30) Data access and scrutiny (article 31) Codes of Conduct (article 35) Oversight (Chapter IV, sections 1-3) Conclusion Executive summary Mozilla welcomes the European Commission’s legislative proposal for a Digital Services Act. We were heavily involved in the policy discourse that preceded the DSA’s publication, and are encouraged that many of our recommendations were incorporated into the draft law. While the general policy approach of the DSA has merit, we nonetheless believe that many areas require clarification and further elaboration in order to be effective, and in order to protect the interests of individuals and challenger companies. In this position paper we set out our perspectives and key recommendations for how lawmakers in the European Parliament and the EU Council could improve the DSA during its mark-up Mozilla EU Policy, Rue du Trône 51, Brussels 1050, Belgium | [email protected] stage. Our position can be summarised as follows: ● Asymmetric obligations for the largest platforms ○ We welcome the DSA’s approach of making very large platforms subject to enhanced regulation compared to the rest of the industry, but we suggest tweaks to the scope and definitions. ○ The definition of these so-called Very Large Online Platforms (VLOPs) shouldn’t be based solely on quantitative criteria, but possibly qualitative (taking into account risk) as well, in anticipation of certain extraordinary edge cases where a service that meets that quantitative VLOP standard is in reality very low risk in nature.
    [Show full text]
  • Firefox Manual Old Version Downloads the Firefox Manual - a Beginner's Guide
    firefox manual old version downloads The Firefox Manual - A Beginner's Guide. The first version of Firefox was released in 2004 and since then, some 230 million people world-wide (or 20% of the 1.2 billion strong Internet population) are using Firefox as their primary web browser. The next graph illustrates the Firefox development process at Mozilla. A core set of 400 developers are responsible for the code that runs Firefox while the rest is a community driven effort. For instance, there are around five hundred people, outside the core developers, who localize Firefox into over 60 languages. Taking that community effort to the next level, 25 writers (some of them from Mozilla) collaborated over two days to produce an online 110 pages long Firefox Manual. It’s a visual guide (with plenty of screenshots) to help you learn everything about Firefox browser from using tabs to downloading files to using themes & plugins. The manual is under “free documentation” and also available for download as a PDF ebook. As power users, you probably know most things that are mentioned in the Firefox manual but you may still want to pass a link of this manual to someone who has just switched (or is planning to make a switch) to Firefox. Learn the Basics: get started. Learn all you need to know to get started with Firefox. Keyboard shortcuts - Perform common Firefox tasks quickly. This is a list of Firefox keyboard shortcuts for working with tabs, bookmarks, searching the web, playing media files and more. Bookmarks in Firefox. Bookmarks are links to web pages that make it easy to get back to your favorite places.
    [Show full text]
  • Copyrighted Material
    28_77877 bindex.qxp 12/5/05 9:24 PM Page 307 Index Numbers Ash Grabber, car mount and 802.11, 60 description, 193 1.5 PSP, reverting to drilling holes, 199–201 1.5 Update program, running, 231–232 extensions, 202–203 2.0 use again, 234 lid reattachment, 209–210 background image, setting, 224–226 smoothing holes drilled, 201 backups, 223 aspect ratio, 162 buffer overflow, 219–221 ATRAC files charge, 228 audio books, 152 configuration, 233–234 audio specks, 8 exploit, running, 228–231 firmware version, 149 exploit background image, 223–224 synchronization and, 279 files needed, 221 audio repairing, 233 brain and, 157 UMD discs, 221 cabling, connecting, 155–156 updator directory, 221–223 cabling, text and, 153 WAB Version Changer, 235–236 CD bit rate versus MP3, 152 2.0 PSP, reverting to 1.5 PSP default quality settings, 156 1.5 Update program, running, 231–232 equalizer settings, 150 2.0 use again, 234 iTunes, PSP control and, 159 background image, setting, 224–226 iTunes AAC music, 149 backups, 223 media locations on Memory Stick, 128 buffer overflows, 219–221 music downloads, 149 charge, 228 NAS devices, 159–160 configuration, 233–234 Podcasts, 158 exploit, running, 228–231 recording, 155 exploit background image, 223–224 specifications, 8 files needed, 221 synchronization and, 279–280 repairing, 233 transferring to PSP, 156–158 UMD discs, 221 troubleshooting, 299 updater directory, 221–223 troubleshooting play, 296 WAB Version Changer, 235–236 WinAmp media player, 159 3GP conversion program, 131 audio books availability, 152 A bit rates,
    [Show full text]