Mobile Development

Choosing the best programming language for mobile app development

When considering the programming languages, frameworks, and SDKs for mobile apps, you have to consider the frontend (UI) development environment but also be aware of the backend (server-side) development environment. The developers who are coding the frontend are often not the ones who are coding the backend, but they do usually work with each other (they are in enterprises anyway).

In this article, we’ll review the best iOS and Android programming languages and development frameworks for developing mobile apps and mobile backends.

Types of mobile apps

From a coding perspective, developers can choose to create one of three types of mobile apps:

  • Native mobile apps are apps that are written in a language that’s natively supported by the device OS vendor. The underlying platform APIs are available 100% to the app code and the OS provides the UI component library. The build process converts this code into an executable app with native bytecode of the OS.
  • Cross-platform mobile apps are apps that are written in one language and can run on all the platforms. With cross-platform mobile apps, the language in which you write your app may not be the native language of the underlying device OS. This implies that the code might be contained, bridged, or cross-compiled to the bytecode that can execute directly on the OS with the help of some support libraries.
  • Mobile web apps are a lightweight paradigm where you open a URL in your device’s browser, but they look and feel like a regular mobile app. Mobile websites are not delivered as an installed app on the device, but they are an important paradigm to consider while building for a mobile device. Developers can use two web site programming paradigms to create mobile web apps:
    • Responsive web programming is a style of web site programming where the web site layout organizes itself to suit the device’s form factor. So instead of having to browse horizontally, the content “snaps” in place to fit the width of the device. These web sites can also be used from a desktop. Learn about the latest responsive design ideas on IBM Developer.
    • Progressive web programming creates progressive web apps that are normal websites that appear like a traditional mobile app when navigated to from a browser on a mobile device. They deliver an almost app-like experience. Progressive web apps have have the ability to add a link to the home screen (so that you get an app icon), and they also have the ability to run offline when not connected to the internet by caching the content locally on the device.

Developing mobile apps for the iOS platform

The iOS platform is a proprietary platform made by Apple. The iOS platform consists is available for phone devices (iPhone) and tablet devices (iPad). You can develop apps for the iOS platform, and then target the same app to both an iPhone and an iPad. While developing the app, you have to account for the real estate constraints that are available on each of the devices. iOS apps can be installed on your iPhone or iPad from the Apple app store.

For building apps for iOS, you must have an Apple developer account and the Xcode IDE on a Mac computer. You cannot effectively build and debug on a Windows machine alone. Xcode comes with all the required Apple development toolkit: SDKs, a code editor, compile/build tools, simulators, and a debugger. You will have to use either CocoaPods or Carthage as the package managers to bring in 3rd party SDKs or deliver an SDK that you write.

Apps can be built for iOS devices either by using the native iOS SDK with Objective-C and Swift or with the various cross platform technologies that are written against the SDK of that framework, but targeted for iOS.

Objective-C

Objective-C was the first language supported by Apple for developing iOS mobile apps. It is an objected-oriented (OO) language that derives the language syntax from C and the OO-ness from SmallTalk.

One of the common criticisms of the language is that its syntax seems clunky being verbose and the square brackets are hard to debug. It’s a stable and mature language, however, as it has had several years of wide usage.

Since Apple introduced Swift, the popularity of Objective-C has declined considerably for new iOS mobile development.

Swift

Apple introduced Swift in 2014 as a language specification, and made it available for mobile app development on Xcode in 2015. After a major overhaul of the Swift language in 2016 (v 3.0), Swift has surpassed Objective-C as the language to write native iOS apps.

Though Swift and Objective-C can coexist, that is libraries written in Objective-C and Objective-C utilities can be used in Swift, Apple is making it very obvious that Swift is the new default choice for developing iOS apps. Swift is an easier, simpler, and a more compact language compared to Objective-C. Objective-C developers should not have any trouble moving over to Swift.

Developing mobile apps for the Android platform

Android is an open source platform that is primarily developed and promoted by Google. Google promotes its own mobile device brand, Pixel (and the earlier brand, Nexus). However, there are large number of manufacturers like Samsung, Huawei, Xiaomi, and Oppo that sell their own branded phones and tablets that are powered by Android and derivatives of the Android OS like CyanogenMod and MIUI. Android devices come in a large number of form factors, from phones to tablets, because of a variety of manufacturers with multiple models that address different user preferences.

For building Android apps, you need the Android development toolkit that comes with the required SDK, debuggers, and emulators. For an IDE, the Android Studio is by far the most popular, but there are other equally popular IDEs like Apache Netbeans and IntelliJ IDEA. You can have the development environment on any OS (Mac, Windows or Linux). Android uses Gradle for the build system, and Android Studio comes with Code templates and other performance assessment and enhancement tools.

Third party libraries are added to the app using a Gradle package directive. A large number of 3rd party Android SDKs are distributed by using a package manager called maven, popularly known as mavencentral. The apps built for Android are distributed in the default Google Play store that is managed by Google.

Apps can be built for Android devices either by using the native Android SDK with Java and Kotlin or with the various cross-platform technologies that are written against the SDK of that framework but targeted for Android.

Java

Java was the default language to write Android apps since the Android platform was introduced in 2008. Java is an object-oriented programming language that was originally developed by Sun Microsystems in 1995 (now, it is owned by Oracle). It was a very popular language as a pure object-oriented language (as compared to C++) and was quickly adopted by the Android platform.

Java compiles to “bytecode” that is interpreted at runtime by the underlying Java Virtual Machine (JVM) that’s running on the OS. You write the mobile apps in Java and program against the Android SDK. The critics of Java say that Java needs a lot of “boilerplate” code to do a simple task, and the concepts like exceptions are difficult to understand. Thus far, this is the most widely used language for Android app development.

And yet, as of 2019, Kotlin is now the preferred language for Android development, as per Google.

Kotlin

In 2017 Google announced that it will support Kotlin as an alternative first-class language for Android programming. Kotlin is interoperable with Java, and all Java libraries can be called from Kotlin. Loosely speaking, Kotlin is a tidier form of Java. The learning curve from Java to Kotlin is smooth. At an execution level, Kotlin compiles to Java Bytecode.

Developing mobile apps for both the iOS and Android platforms

With native app building approaches, you have to maintain one code base per platform. The code repository size is proportional to the platforms that need to be supported. You often need to develop for both the platforms, but you don’t need the native language capabilities. Luckily, there are technologies that allow you to write in one language or framework and target the app for both the platforms, which means that developers that are not familiar with Java and Swift but are experts in other technologies like Web or C# can use their skills to develop apps for Android and iOS.

Various open source communities or companies have come up with frameworks that have an affinity to their developer base to develop for Android and iOS. These frameworks come with their own ecosystem of tools and IDEs that make it convenient for the developers familiar with those frameworks.

For example, Xamarin tooling is geared towards using Microsoft Visual Studio and Apache Cordova is geared towards using the web IDEs like VSCode. However, you still need the Android and iOS development environment tools installed (as I explained in the Android and iOS sections earlier) so that the cross-platform tooling can leverage the native SDKs and packaging. Sometimes the frameworks come with their own simulators, but mostly they end up using the simulator of the underlying native Android or iOS development environments.

The following cross-platform frameworks rely on maven or NuGet for distributing third-party plugins and SDKs. Some developers list their plugins for purchase as well.

HTML5 and Apache Cordova

Apache Cordova started out as a project called PhoneGap from Adobe. With Apache Cordova you can run HTML and JavaScript (JS) code in a captive browser instance called the Webview. By using a webview, you can write code once and then execute it anywhere. One of the criticisms of the cross-platform approach is that the response can be sluggish owing to the JavaScript code being executed in the webview.

The HTML code is packaged along with the app itself and installed on the mobile device. This opens up the possibility for using a wide variety of web UI frameworks like Jquery, React JS, Bootstrap, Angular JS, or Vue. There are also other layered frameworks around it like Ionic that ultimately run on Cordova. Apart from the UI libraries, there is a concept of plugins that allow the JS code to access native device capabilities like the camera, contact list, or location. There is a large ecosystem of third party plugins available.

The most popular package manager is npm.

The IDEs that are popular among the developer community are Visual Studio Code, and Eclipse. Ionic, which comes as a wrapper on top of Apache Cordova, and currently uses Angular JS, also has its own IDE called Ionic Creator that’s available for a purchase. However, you can still develop an Ionic Angular JS app using any other IDE as mentioned earlier.

C# and Xamarin

C# is an object-oriented programming language that was developed by Microsoft. The Xamarin framework (acquired by Microsoft) allows you to program in C# against the .NET framework. The .NET framework is implemented on the iOS platform using an open source implementation called mono.

The popular IDEs for writing C# and Xamarin code is Visual Studio Code by Microsoft. The C# code is cross-compiled and runs natively on the iOS or Android device. This allows for a no-lag execution that comes very close to native development. There are special extensions called Xamarin.iOS and Xamarin.Android that you can use to access iOS and Android native capabilities that can be called from C#. For iOS, you need XCode on a Mac machine to build the installable iOS app.

JavaScript and React Native

React Native was released in 2015 by Facebook.

React Native uses JavaScript as a programming language for writing mobile apps. There is no HTML used in writing React Native apps. This code is then interpreted at runtime and executed using a “bridge” for accessing the device’s native SDK capabilities. React Native apps use the platform native UI library to render the UI components, which makes the UI truly native.

React Native has become very popular because the learning curve for JavaScript is very low.

Dart and Flutter

Though Dart first was made public by Google in 2011, 2017 was the first stable release. Dart is an object-oriented programming language. You use Google’s Flutter framework to write mobile apps for iOS.

The most popular IDEs are Android Studio, IntelliJ, and Visual Studio Code (VSCode). One of the unique capabilities of Flutter is that it comes with its own UI widget framework library that is based on Google Material design as well as iOS-like UI widgets.

Developing mobile apps for the Web platform

Though not an installed app in the true sense, it’s important to consider the UIs that are delivered by navigating to a web URL (web sites). Delivering web sites has some value for certain use cases, such as an app for incidental or short-lived event, or for capturing small amounts of information like name and address without forcing a user to install an app. With the advent of progressive web apps (PWAs) the user experience for apps and websites are indistinguishable. These mobile-optimized websites are written using web technologies (HTML, JavaScript, and CSS) and typically a UI framework.

Mobile-optimized websites

Using any of the frameworks like Material, Bootstrap, or Foundation, you can deliver a responsive web site. Responsive web design has layouts that adapt to the available real-estate by giving a native experience. For example a website might be a 5-column layout in a laptop browser, but that website will render in a 2-column layout when viewed from a browser on a mobile device in portrait mode. The two primary differences between a mobile-optimized website and viewing a regular website on a mobile phone is that you should not have to zoom in to view the content and there is no horizontal scrolling.

Progressive web apps (PWAs)

Progressive web apps are actually web sites that render like a native app. The browsers have also evolved to detect that it’s a PWA and will remove the surrounding browser to give the web content the full device real estate. When you add a shortcut for this web site, it creates an icon on the mobile home screen, so that you can launch it just like a regular app. The browser also caches specified content locally on the device so that you have a fast and reliable load time and a progressive offline experience as well. This is achieved by using:

  • A service worker that works in the background to pre-cache the content
  • Responsive design for optimal rendering
  • A web app manifest to notify the browser that it’s installable

Conclusion

The mobile platforms may not see a drastic change other than Apple and Google enhancing new features to their platforms. But the cross-platform landscape has seen a lot of churn. You can expect every year there will be a new favorite framework. It’s important to choose the app development language and development approach based on the team skills and app requirements.

To be successful in mobile app development, developers must keep up with the changes in the tools and platforms because mobile development is an ever evolving technology space with AI and machine learning coming to the mobile devices.