Difference between revisions of "Android"

From HaskellWiki
Jump to navigation Jump to search
(→‎How to develop Android software in Haskell: Added a link to the JNI article in Wikipedia)
Line 3: Line 3:
 
== Introduction ==
 
== Introduction ==
   
Android is an operating for mobile phones, based on Linux. Software development is mainly done in Java. See the [http://en.wikipedia.org/wiki/Android_(operating_system) Wikipedia article] for more information.
+
Android is an operating system for mobile phones, based on Linux; software development is mainly done in Java. See the [http://en.wikipedia.org/wiki/Android_(operating_system) Wikipedia article] for more information.
 
   
 
== How to develop Android software in Haskell ==
 
== How to develop Android software in Haskell ==

Revision as of 12:20, 12 September 2013

This article is a stub. You can help by expanding it.

Introduction

Android is an operating system for mobile phones, based on Linux; software development is mainly done in Java. See the Wikipedia article for more information.

How to develop Android software in Haskell

Use the JNI to Haskell binding library foreign-jni; demonstration of the use: android-haskell-activity.

Another option is, to use Thrift, as described in the blog article Thrift and Haskell

Discussions


Related