Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Android Google Operating Systems

Project 'Fuchsia': Google is Quietly Working on a Successor To Android (bloomberg.com) 122

A day after the European Commission fined Google over Android, more details about Fuchsia, a new operating system the company has been working on for several years has emerged. From the report: But members of the Fuchsia team have discussed a grander plan that is being reported here for the first time: Creating a single operating system capable of running all the company's in-house gadgets, like Pixel phones and smart speakers, as well as third-party devices that now rely on Android and another system called Chrome OS, according to people familiar with the conversations. According to one of the people, engineers have said they want to embed Fuchsia on connected home devices, such as voice-controlled speakers, within three years, then move on to larger machines such as laptops. Ultimately the team aspires to swap in their system for Android, the software that powers more than three quarters of the world's smartphones, said the people, who asked not to be identified discussing internal matters. The aim is for this to happen in the next half decade, one person said.

But Pichai and Hiroshi Lockheimer, his deputy who runs Android and Chrome, have yet to sign off on any road map for Fuchsia, these people said. The executives have to move gingerly on any plan to overhaul Android because the software supports dozens of hardware partners, thousands of developers -- and billions of mobile-ad dollars. [...] Still, Fuchsia is more than a basement skunkworks effort. Pichai has voiced his support for the project internally, said people familiar with the effort. Fuchsia now has more than 100 people working on it, including venerated software staff such as Matias Duarte, a design executive who led several pioneering projects at Google and elsewhere. Duarte is only working part-time on the project, said one person familiar with the company.

This discussion has been archived. No new comments can be posted.

Project 'Fuchsia': Google is Quietly Working on a Successor To Android

Comments Filter:
  • by Anonymous Coward

    Either that's the reason for the switch or to get out of GPL constraints.

    • It's politics (Score:4, Insightful)

      by OrangeTide ( 124937 ) on Thursday July 19, 2018 @12:51PM (#56975080) Homepage Journal

      There are no practical Linux kernel security concerns that wouldn't also apply to something like Fuchsia. Any complex OS written by a small team will potentially have as many if not more security issues as Linux.

      Advantages of the Linux kernel is a lot of eyeballs, mature codebase, reasonably good architectures, very wide hardware support, and known to scale up to very large systems.

      Disadvantages of Linux is GPL and dealing with a large community of opinionated people. It can be difficult to get big architectural changes in unless a lot of time is spent convincing the top people on LKML.

      Fuchsia is probably a better choice than forking Linux. It's smaller and does less so it will be easier to manage by a small team.

      • Any complex OS written by a small team will potentially have as many if not more security issues as Linux.

        A microkernel OS written by a multi-billion company will potentially have more security issues as monolithic and bloated Linux, considering that Linux kernel (except for Google and Red) has no QA and regression testing?

        Advantages of the Linux kernel is a lot of eyeballs, mature codebase, reasonably good architectures, very wide hardware support, and known to scale up to very large systems.

        Yeah, top 50 p [cvedetails.com]

        • by Anonymous Coward

          You've heard of Windows, right? Not micro kernel but what difference does that make?

        • You heretic! Linux has no bugs thanks to the magic eyeballs!

        • A microkernel OS written by a multi-billion company will potentially have more security issues as monolithic and bloated Linux, considering that Linux kernel (except for Google and Red) has no QA and regression testing?

          As someone who has worked for a multi-billion dollar company on a microkernel the answer is Yes.

          Also it's not strictly true that Linux has no QA and no regression testing, it's just not centralized and the level of testing between kernel components is not standardized. But I get your point.

          Yeah, top 50 products with security vulnerabilities [cvedetails.com] Linux kernel alone having the most bugs.

          It's been my experience that vulns are not disclosed when there is a company in charge that can pay a bounty. Having personally fixed serious issues in services on QNX and VxWorks I don't think they are immune to security

          • Also it's not strictly true that Linux has no QA and no regression testing, it's just not centralized and the level of testing between kernel components is not standardized.

            Linux kernel 4.17.7(!) is broken on 32-bit x86 [lwn.net] and even this doesn't stop Greg KH from spitting the usual nonsense, "All users of the 4.17 kernel series must upgrade".

            • That sort of nonsense is hardly unique to the open source world. You can find annoying examples of throwing users under the bus from Apple, glibc project, and more.

              But I'd like to note you overlooked my statement about de-centralization. I do regression tests on Linux every single commit as part of my job. As do many other companies. Unfortunately we don't really share our test infrastructure with the open source community, they end up having to make due with what resources they can muster on their own.

              • QA is done differently than "someone testing his code". This is not a true QA. The fact is a fact, even the LTS X.Y.Z versions of vanilla Linux kernels are more like to early betas. As I wrote above, the only truly stable kernels that you can rely on are kernels maintained by Red Hat and Google (maybe SUSE a little bit), the rest are garbage of different degree brokenness. Red Hat maintains a stable kernel driver ABI for 10 years and more in its every major OS version, and RHEL (with its derivatives) is the
                • QA is done differently than "someone testing his code". This is not a true QA.

                  Without diving too deeply down the no true scotsman fallacy, there are many different and industry accepted ways to approach software testing.

                  At my company both white box and black box is done methodically. Test plans can be written by specialists known as QA engineers, but developers are also responsible for specifying test plans based on SW architecture, requirements, and any industry standards we are required to meet.

                  Many shops use QA staff for running ad hoc testing and to do test regressions. Where I w

      • Re: (Score:2, Insightful)

        by Anonymous Coward

        Biggest advantage for linux is that as a dev you can actually submit your changes to them and have them included.
        There is no such process with Android.
        For example their build system being broken for no reason on various versions of linux.
        I have the patch. But where do I send it? Nowhere, that's where.

        • I've not had any trouble submitting Android patches. But I also don't have problems with the build system, I always use it from within a chroot. Trying to support the hundred or so distros out there is not worth anyone's time.

      • Re:It's politics (Score:5, Interesting)

        by rahvin112 ( 446269 ) on Thursday July 19, 2018 @03:00PM (#56975868)

        And like every attempt to reinvent the wheel with yet another micro-kernel it will be a total failure. They think by narrowing it down it will be easier to support but they will have to scale it up from phones to laptops to desktops and in doing so they will need to reinvent everything that Linux has already done.

        Linux is where Google should be investing their dollars because they get more bang for their buck if they actually try to get their changes into the vanilla kernel. Googles always had a NIH syndrome. They are constantly reinventing the wheel and doing the same programming over and over again.

        • Scaling phones up to tablets then to laptops is the story of Android as well. 10 years ago it was a light-weight OS for small touch displays. It struggled to do things like multiple windows, multiple displays, and keyboards that have been common on Linux desktops (X11). Feels like they're trying to repeat history.

          They are constantly reinventing the wheel and doing the same programming over and over again.

          Well it is a lot more fun to make stuff from scratch.

      • There's no politics involved, but only licenses and market lock.
        They could've gone with some other kernel, leaner and with a more permissive license so they don't have to deal will steering committees and mailing lists.
        Any *BSD would be great but they chose not to do it.
        Google wants 2 things.
        1st total control over the code.
        They are going to release a 20k or 40k loc microkernel as foss, just for the sake of saying we support foss, they have a nongpl license which means they can add whatever they want inside

      • Also, there's disparity of hardware. It's possible that Fuchsia will run on a single architecture, with well-defined specs. In that case, a lot of software and sources of bugs, can be avoided.

        • Fuchsia already runs on 3 CPU architectures that I know of. Maybe only one of those is POR, but you can grab their tree and play with it today if you want.

  • by Anonymous Coward

    I never knew about this project several years ago

  • I haven't followed this too closely, but is it known if Fuchsia is Linux based?
    • Re:Fuchsia (Score:4, Informative)

      by Desler ( 1608317 ) on Thursday July 19, 2018 @12:16PM (#56974814)

      It is known that it is not based on Linux. It uses a microkernel called Zircon.

      • It is known that it is not based on Linux. It uses a microkernel called Zircon.

        The real shame is that they discontinued to project that the Zircon microkernel was being used for, a great roboassistant called Mr. Zirkon. [tumblr.com]

        He had great features like:
        * Voice interface
        * Internal power source
        * 100% homicidal

        Frankly, I don't understand why they discontinued the project!

    • Fuchsia appears to be under a more permissive license, so it cannot be based on Linux as the GPL wouldn't allow it.

    • by perpenso ( 1613749 ) on Thursday July 19, 2018 @12:29PM (#56974928)
      Fuchsia is a replacement for Linux. A different design with a different source code base and a different license.

      As both Android and Chrome are only hosted on Linux both could replace Linux with Fuchsia when the later gains sufficient functionality. 3/4 of Android developers would neither notice nor care. Of the remaining 1/4 some percentage is only using Posix and not anything uniquely Linux based, so **if** Fuchsia provides Posix support they will not care are either.
      • by tlhIngan ( 30335 ) <slashdot.worf@net> on Thursday July 19, 2018 @01:03PM (#56975170)

        Fuchsia is a replacement for Linux. A different design with a different source code base and a different license.

        As both Android and Chrome are only hosted on Linux both could replace Linux with Fuchsia when the later gains sufficient functionality. 3/4 of Android developers would neither notice nor care. Of the remaining 1/4 some percentage is only using Posix and not anything uniquely Linux based, so **if** Fuchsia provides Posix support they will not care are either.

        Correct, Fuchsia is a kernel. Practically every modern phone has a copy of its predecessor - because it's already in the Android source tree. Android BSP developers know it as "LK" (little kernel) which is used to host the Fastboot bootloader application (the one that draws the screen that lets you select if you want to enter recovery mode, upgrade a package, or other thing. ClockWorkMod and others often install replacement bootloaders based on LK as well).

        Fuchsia simply aims to add in the bits that LK is missing to become a proper full function kernel.

        • Correct, Fuchsia is a kernel.

          Not quite.
            Technically Zircon is Fuchsia's kernel.

          https://github.com/littlekerne... [github.com]

        • This is completely inaccurate. Fuchsia is a new kernel, a micro-kernel to be exact, developed by Google because they always have to reinvent the wheel every time they develop anything because the average age of their developers is 24 and they don't have the wisdom to stop re-inventing the wheel.

          • No, Zircon is the kernel, Fucshia is the OS. They will absolutely be cribbing from Linux, as much as they need and can get away with.

            This entire movie is in response to the GPL and Oracle.

      • so **if** Fuchsia provides Posix support they will not care are either.

        Fuchsia is meant to be POSIX compatible (at least to the extent which allows to compile and run the source code meant for Linux/*BSD without any modifications). The POSIX standard is quite huge and heavy but it's not necessary to fully implement it to be able to run most of the existing code.

      • Fuchsia is a replacement for Linux.

        In short, Google aspires to be the new Microsoft, including the full evil part. You should worried about your private data, very worried.

        • Fuchsia is a replacement for Linux.

          In short, Google aspires to be the new Microsoft, including the full evil part. You should worried about your private data, very worried.

          The Linux kernel hosting Android or ChromOS adds **zero** protection for your private data. Its replacement changes nothing in this regard.

          • Fuchsia is a replacement for Linux.

            In short, Google aspires to be the new Microsoft, including the full evil part. You should worried about your private data, very worried.

            The Linux kernel hosting Android or ChromOS adds **zero** protection for your private data. Its replacement changes nothing in this regard.

            It is not about security though I do seriously doubt Google's ability to secure a complex system as well as the Linux community does. The GPL copyright license provides at least some check on Google's abuse of its market power. Lose that and Google's descent to full evil will greatly accelerate, including abusing your private data in any way that suits it. Be worried, and don't continue in your clueless daze. This agenda is not exactly subtle.

            • It is not about security though I do seriously doubt Google's ability to secure a complex system as well as the Linux community does.

              Google contributes and signs off on Linux kernel patches. Google is a major part of the Linux community.

              The GPL copyright license provides at least some check on Google's abuse of its market power.

              Fuchsia is open source. The GPL adds nothing in this case.

              ... including abusing your private data in any way that suits it ...

              Again, that takes place at the applications level, not the OS level, not the kernel level, and Linux provides no barrier whatsoever in Android or ChromeOS today.

              • It is not about security though I do seriously doubt Google's ability to secure a complex system as well as the Linux community does.

                Google contributes and signs off on Linux kernel patches. Google is a major part of the Linux community.

                Google contributes 1/3rd the changes vs Intel, 1/2 of Red Hat, and less that Suse even, a miniscule company by comparison. I say, not pulling their weight.

                The GPL copyright license provides at least some check on Google's abuse of its market power.

                Fuchsia is open source. The GPL adds nothing in this case.

                Just shows the depth of your ignorance. Android is "visible source". You can see it, but Google does not give a shit if you want to change it. Google does not give a shit about what Android users want from it, only about monetizing their eyeballs. Fuschia will be like that. A huge step down from the vibrant and inclusive Linux kernel community.

                ... including abusing your private data in any way that suits it ...

                Again, that takes place at the applications level, not the OS level, not the kernel level, and Linux provides no barrier whatsoever in Android or ChromeOS today.

                The kernel is part of every application.

    • They claim it's not. Of course it is. They may be avoiding copying chunks of code directly or avoiding copying functionality too closely. But they're copying as much as they need and can get away with. And why wouldn't they? The entire industry is built upon copying code and ideas from others. Fuchsia is simply a response to the GPL and Oracle's lawsuit. It serves no practical purpose that a fork of Linux wouldn't be able to provide.

      But hey - people were dumb/eager enough to believe Compaq developed

  • by Anonymous Coward

    good luck with that, its like no one has ever tried to do this before and come to realize that different products/use cases have different requirements.

    • It's like they looked long and hard at Android, found the part that sucked least then decided to reimplement that.

      On the other hand they barely use Linux anyway, preferring instead to reimplement everything poorly three or four times before they reach marginal utility. Yay API churn!

  • From EU perspective (Score:5, Interesting)

    by yuvcifjt ( 4161545 ) on Thursday July 19, 2018 @12:17PM (#56974830)

    Whether they call it Android / ChromeOS / Fuchsia or how it works generally doesn't matter.

    But if their product is the most widely used (they have a monopoly), they can't force and stipulate anti-trust / anti-competent behaviour over OEMs (handset manufacturers) - just like Microsoft used to do.

    Namely,
    1. if the OEM wants access to app store, they can't force them to also bundle other Google apps exclusively;
    2. they shouldn't bribe network operators and OEMs to install Google apps exclusively;
    3. if a handset manufacturer wants to ship a custom Android build, Google shouldn't threaten them from denying access to the app store market, or to any other Google apps.

    I would have thoughts nerds would be pretty happy about this, as it means more competition and a more open and free market place, such that others have a chance to create competing apps and services.

    • by djinn6 ( 1868030 )
      Phone makers are even worse than Google. Look at all of the shitty homegrown apps they force on people, or how infrequently they provide security updates (with the hope that you'll give in and splurge on their latest new gadget). Letting Google dictate what they can do provides a better phone in the end. As for the competition, only other option is Apple.

      It might be a win against monopoly, but it's still a loss for consumers.
    • Comment removed based on user account deletion
      • So let's not do anything to Google because Microsoft suck. Great plan.

      • by slack_justyb ( 862874 ) on Thursday July 19, 2018 @05:05PM (#56976706)

        Google provides AOSP without restrictions. You do not have to bundle Google's app store with AOSP

        AOSP is dead. You literally cannot build anything useful with it. Pretty much any hardware post 2011 requires binary blobs with commercial fees to make AOSP even bootable. You can literally ask anyone who has done core Android development this, AOSP is dead.

        you do not need to license the Play Store.

        Play store isn't what this is about. Google Play Services. Long story, short: Everything useful for a functioning phone is in Google Play Services. Slightly longer version: Yes you can call down to do things, but the c libs that handle that in AOSP is literally written to make doing so a lesson in how painful you can make an API. Additionally, much like systemd developers, any interface you use in code is subject to inevitable change or complete abandonment in the next patch. Quite literally you could build an app that calls the C for GPS and in three months, they'll change the interface to something completely different with matching confusing name and your app just gets to segfault. This is why Google always threw a fit when device makers wouldn't update their image, which they fixed with Google Play Services. Addendum: If you've built an app using Android Studio recently, you most likely are making a call to Google Play Services. They've literally made the toolchain to force your app into their ecosystem.

        Microsoft even has an app called Bing that, when installed on Android, replaces the Google search infrastructure completely.

        No, that's totally not how it works. It intercepts the call but ultimately Google's callback has to be fulfilled or else it cancels the request for hardware access. So while yes, Bing is fulfilling the request, Google has to know about it too "for security purposes". So yeah, when you use Bing, you're just using Bing and Google. You literally cannot opt-out without recompiling your image.

        it easier to access the same website all useful mobile phones would default to anyway because they already have a monopoly there

        No one is disputing the search giant's monopoly on the web. What they are disputing is that Google has moved all of the previous functionality of their OS into a closed off and highly regulated set of libraries. And they did that to tighten control over their OS. Now if Google made the OS and made the hardware and they were the only ones in town selling Android, who cares? But Google is literally fucking with third parties here. That's the deal here. Apple sells their phones direct to the public, so if they make a change and people hate it, their voting dollars moving away directly affect them, Apple. Now if Google makes a change and people hate it, the public voting dollars indirectly affect Google, but directly messes with the profits of other companies. That's where the anti-competitive nature comes into play. Google knows that if a vendor doesn't agree with them, they can literally twist the API enough to screw the vendor over. It's not like the vendor can sit there and redo an entire access API between releases. Now had Google done that from start, then we'd be in a different story and I'd just say, well they got what they deserve. But no, Google has slowly killed off "open" and "free" Android and did so when vendors were too deep to escape.

        Now here's the argument point and this is the thing you know we could debate and I don't think we'd ever come to a "correct" answer on. Google says that they've done this, that they've become this way, to prevent fragmentation. I don't buy that excuse because they knew that fragmentation is the name of the FOSS game. So it's an open debate if preventing fragmentation = being an evil monopolistic company (which it shouldn't be a surprise to anyone that I feel Google is pure evil now.) But do not, do not for one moment think that AOSP is some s

        • Very insightful reply, thank you!

          Particularly this paragraph...

          No one is disputing the search giant's monopoly on the web. What they are disputing is that Google has moved all of the previous functionality of their OS into a closed off and highly regulated set of libraries. And they did that to tighten control over their OS. Now if Google made the OS and made the hardware and they were the only ones in town selling Android, who cares? But Google is literally fucking with third parties here. That's the deal here. Apple sells their phones direct to the public, so if they make a change and people hate it, their voting dollars moving away directly affect them, Apple. Now if Google makes a change and people hate it, the public voting dollars indirectly affect Google, but directly messes with the profits of other companies. That's where the anti-competitive nature comes into play. Google knows that if a vendor doesn't agree with them, they can literally twist the API enough to screw the vendor over. It's not like the vendor can sit there and redo an entire access API between releases. Now had Google done that from start, then we'd be in a different story and I'd just say, well they got what they deserve. But no, Google has slowly killed off "open" and "free" Android and did so when vendors were too deep to escape.

      • Nice exercise in whataboutism. Both Google and Microsoft are corrupt criminal racketeers, the gap has been closing between them ever since Google went IPO (or arguably before that). Let's not niggle over which is worse, they both need attitude readustment.

    • From EU perspective

      Nobody thinks that the underlying OS has any relevance to business decisions about bundling software.

    • Apple effectively does all of these things and monopolizes on the order of 87% of the industry's profit [investors.com].

      The EU has attacked the little guy struggling to solidify an identity that can rise from the industry's gutters where even a few dollars of extra cost could kill a phone to compete. Without a solid identity, Android doesn't stand a chance to ever balance the profit equation and profit is all that matters to investors. Apple is laughing its way to the bank at this decision.

      I personally think Fuchsia will n

        • Apple could easily blow this out of the water by reducing their app store commission to one that provably covers cost of managing the app store only. The app store is not a significant source of Apple profit. The greater than 50% profit per phone sold is where most of Apple's profits come from.

          They would do this because they can not give up their silo. The security and control over the experience that the silo provides is the source of their profit per phone sold. Without it, people wouldn't want to buy iPh

    • I wonder, which arrogant Googler with mod points[1] modded your post "offtopic"?

      [1] Mod points awarded because of reading/posting Slashdot regularly instead of working, which tenured Googlers really hate.

  • Creating a single operating system capable of running all the company's in-house gadgets...

    Google are doing this even though they've [miserably] failed to create a single unified messaging application!

    How about Gmail, that continues to suck big time?

  • Privacy? (Score:2, Insightful)

    by Jason1729 ( 561790 )
    I guess android just doesn't collect enough user data and is not quite invasive enough to the user's privacy.

    They have to start again from the ground up to truly siphon every possible scrap of personal inormation.
  • More details? (Score:4, Interesting)

    by Tx ( 96709 ) on Thursday July 19, 2018 @12:24PM (#56974886) Journal

    I read the article, and an awful lot of the paragraphs are like "Fuchsia could ..." and "There are some signs ..." etc. I guess it's interesting to know how many people are working on it, that was the main actual "detail" I got from the article, most of the rest was just more speculation.

  • Java Based (Score:5, Funny)

    by Anonymous Coward on Thursday July 19, 2018 @12:31PM (#56974950)

    It's 100% Java based. It runs a Java VM, running a Java VM, inside a Java VM, running on a Java VM.

    it has 8 layers of indirection, each layer runs inside it's own core, which runs on a cpu optimized for java.

    everything is written in java, from the hardware on up.

    more indirection == more speed, and more security.

    Once the phone boots, it can never be shutdown. When assembly of the phone is complete, the phones are booted, so when they get of the container ship, they have finished booting.

    If the battery dies, you get a new phone, which will be pre-activated and pre-booted.

    There is no local storage, everything is in the cloud.

    There is no root access, everything is in 7 layers of sandboxes.

    this will be the golden age of technology.

  • They had to, so they could start naming after colors, given the lukewarm reception to Android release Stinkweed-N-Grasshopper Donut.

  • Oh, fuck sia.

    Step one will be: have everyone involved learn to spell that word correctly, because currently, no one does [xkcd.com]

  • The aim is for this to happen in the next half decade, one person said.

    WTF is wrong with you? Why can't you say 5 years?

  • NOBODY is going to rewrite their apps for this new OS.
    They were reluctant for BB10 and Windows phone OS 7(?) back when market shares were up in the air.

    Now there are 2 phone OS markets. That's it!

  • by simpz ( 978228 ) on Thursday July 19, 2018 @02:11PM (#56975594)

    Google used to be a company that embrassed free software. As employees have leaked they are now more obsessed than ever about competitors not just developing interesting things and then see if they sell. Maybe this was inevitable.

    Android is already not free just releases tossed over the wall from Google. There is no way I can be part of Android development. Fuchsia just allows total lock down of the last open piece the kernel. Therefore better control. Some even say it will only allow network booting with caching on device, so really locked down.

    Most of Android nastiness aren't the kernel's fault, e.g bloat, upgrade issues...
    Even with Google's resources they will never have as functional a kernel as Linux. The Linux kernel has things like SELinux, iptables, great filesystem support, device drivers for everything. Great for tinkerers, not so useful to Google (they will only implement the few bits they really need). There is no danger Fuchsia will get all this with basically in house not fully open development.

    • The Linux kernel has things like SELinux, iptables, great filesystem support, device drivers for everything. Great for tinkerers, not so useful to Google

      Android makes extensive use of selinux. If you don't want XYZ filesystem support you don't include support for that in your dist. It's not like these things are inextricably hardcoded into Linux.

      And selinux isn't "great for tinkers". It's the fundamental access control system of Linux (in production devices, maybe not for desktop users).

      • Yes but the point was it will be hard for Fuchsia to provide these functions.

        Also Android is so much more useful with Linux. As in it can be deployed in embedded application, industrial applications, due to Linux having so much flexibility. That is likely impossible for Fuchsia, mainly due to not able to have the breadth of device drivers.

        • it will be hard for Fuchsia to provide these functions

          That is likely impossible for Fuchsia,

          Google has a lot of employees and a lot of money.

    • Google used to be a company that embrassed free software.

      This is an awesomely relevant typo.

    • Some even say it will only allow network booting with caching on device, so really locked down.

      Well, that would sure make the buying decision very easy.

  • by RhettLivingston ( 544140 ) on Thursday July 19, 2018 @04:34PM (#56976496) Journal

    Replacing Android would be silly. This sounds like a well-thought plan to launch a third OS into the market - one that has a better chance against iOS at the high end.

    Develop a new OS, shift your devices to it starting with those furthest away from the smartphones, and when the time is right you split Android off, sell that division to a consortium of the Android device makers, and never look back. That time will likely be right before launching a new set of smartphones using whatever they decide to call Fuchsia and doing so without ever offering Fuchsia to any other company. This is why they must leave Android. They must do so to avoid breaking their own rules.

    The key will be whether Fuchsia can achieve real world functional positives that can't be matched by iOS without a similar rewrite. It needs to do something like provide for a leap in power efficiency, security, memory efficiency, or AI integration.

  • Amazon quietly working on a search engine. Take that, Google assholes!

  • It's written in C: https://fuchsia.googlesource.c... [googlesource.com] Google hired a bunch of former BeOS developers to work on it. (It's something new though, not related to BeOS)

An authority is a person who can tell you more about something than you really care to know.

Working...