Why has Google failed to get Android development on track?

Why has Google failed to get Android development on track?

Introduction

It's 2015 now, mobile is the new frontier, and we seem to have emerged from the nightmare of the chaotic past - yes, the poor performance of mainstream websites in delivering content to mainstream mobile devices is still vivid today, and every developer should remember the desperate mess at that time. If web development represents all the dirty and bad elements of the 1990s, then mobile development today is the new carrier of the ugly effects of the new era.

Just as IE is the new IE for web developers, Android is now the new IE for mobile developers. Google has used all its resources to push it to the top of the market share, and its position as king of the hill seems unshakable. If you want to expand into the mobile market, ignoring the Android platform is undoubtedly a suicide act from a business perspective.

Android development is weak.

Android development mechanism has always been plagued by problems. Programmers are usually reluctant to develop applications on the Android platform because they need to consider too much - just like Web developers hated IE in the past.

There have been countless blogs on the internet about the endless suffering that many developers have to endure because they are forced to develop for the Android platform. Needless to say, I believe that everyone who has experienced this can understand it.

From installation to environment setup, stupid and over-designed engineering SDK, device fragmentation, and even the documentation cannot reach a unified content, all of this makes me feel headache. I don't want to evoke my personal or everyone's painful memories in today's article. Instead, I hope to explain this situation in other ways. What if I tell you that Android development doesn't have to be so annoying? What if I tell you that there are other ways to achieve it?

Another way, the Python way

Wouldn’t it be exciting if we could complete the overall setup of the environment with a few simple commands?

  1. sudo add-apt-repository ppa:kivy-team/kivy
  2. sudo apt-get update && sudo apt-get upgrade
  3. sudo apt-get install python-kivy

Would you be happy if you no longer had to install and configure a bloated IDE, but could open the code directly in a text editor and modify it (using a more concise and clear language)?

  1.   import kivy
  2. from kivy.uix.widget import Widget
  3. from kivy.app import App
  4.   
  5.   
  6. class HomeScreen(Widget):
  7.   
  8.   
  9. def button_clicked(self):
  10. self.ids.home.counter += 1  
  11. self.ids.label1.text = "you clicked " + str(self.ids.home.counter) + " times!"  
  12.   
  13.   
  14. class MyApp(App):
  15.   
  16.      
  17. def build(self):
  18. return HomeScreen()
  19.   
  20.   
  21. if __name__ == '__main__' :
  22. MyApp().run()

What if, whenever you need to build a graphical user interface, you can do it using a simple and clear DSL?

  1. <HomeScreen>:
  2. BoxLayout:
  3. orientation: 'vertical'  
  4. size: root.width, root.height
  5. id: home
  6. counter: 0  
  7.         
  8. Label:
  9. id: label1
  10. text: 'Hello World!'  
  11.  
  12. Button:
  13. id: button1
  14. text: 'click me!'  
  15. on_press: root.button_clicked()

How would it sound if you could just run your application directly when you need it, without the need for any emulator?

  1. python main.py

What if, when you need to deploy your application, you only need to plug in your mobile device and use the following simple command?

  1. sudo apt-get install python-pip
  2. sudo pip install buildozer
  3. buildozer init
  4. buildozer -v android debug deploy

What if you want to deploy your app to iOS with just the following command?

  1. 1 buildozer -v ios deploy run

This is not just a dream, in fact Kivy and Python can do this today, and thanks to the high-level APIs, they can even do things like access GPS - and like any good API, this is all done in an abstract way.

Summarize

Kivy is a fantastic cross-platform multi-touch GUI programming project. It is exactly what my ideal mobile development tool should be like. Simple and direct, easy to develop and easy to deploy. And don't worry, you can use it to build excellent applications that can run across platforms at the same time.

So why can't Google come up with an equally ideal solution? Keep this in mind:

Any clever fool can solve the problem in a larger, more complex, and more brute-force way. But to come up with a solution the other way around requires a combination of genius and courage. (Einstein)

I believe that one day mobile development tools will have all the advantages of Kivy, but in a native and unadjustable way. And when that day comes, it will become the new king of the hill - it will ascend to the throne not by the full support of giant enterprises, but by the firm support of developers.

<<:  Foreign article analysis: Can you really give up Android and start iOS development?

>>:  Foreign media commented on BlackBerry's launch of Android phones: It's a self-humiliation

Recommend

A complete set of brand planning and promotion!

The 21st century is the Internet age. People'...

Don’t fall into these pitfalls when placing Douyin+ ads!

For Douyin accounts that are in urgent need of in...

Start a course - Artificial Intelligence Core Competencies Phase 7 - NLP Major

Kaikeba - Artificial Intelligence Core Competenci...

18 tips for writing a good beginning and ending for a public account article!

18 tips for writing a good beginning and ending f...

Android Go is here, and the world's "feature phones" will become history

In May 2017, at the I/O 2017 Global Developers Co...

6 core concepts of community operation!

I recently reread Professor Xu Zhibin’s "The...

APP planning and promotion: the birth of an event operation planning program!

For companies, activities are a very important me...

KMC Knowledge and Experience Extraction Online Training Camp, valued at RMB 4999

KMC Knowledge and Experience Extraction Online Tr...

Kuaishou advertising placement and advantages!

After placing Kuaishou ads, many advertisers will...

How to find the rules for short video ads to become popular, 3-step rule!

Is there a scientific method that can quickly dis...

Qutoutiao’s Growth Hacker: Decoding 4 User Growth Strategies Before IPO

On June 8, 2016, Qutoutiao 1.0 was launched. On A...