Difference between revisions of "Android"

From HaskellWiki
Jump to navigation Jump to search
(Added sections "Introduction" and "How to develop Android software in Haskell")
(→‎How to develop Android software in Haskell: Added a link to "Thrift and Haskell")
Line 8: Line 8:
 
== How to develop Android software in Haskell ==
 
== How to develop Android software in Haskell ==
   
Use the JNI to Haskell binding library [https://github.com/neurocyte/foreign-jni foreign-jni]; demonstration of the use: [https://github.com/neurocyte/android-haskell-activity android-haskell-activity].
+
Use the JNI to Haskell binding library [https://github.com/neurocyte/foreign-jni foreign-jni]; demonstration of the use: [https://github.com/neurocyte/android-haskell-activity android-haskell-activity].
   
  +
Another option is, to use Thrift, as described in the blog article [http://mortenib.wordpress.com/2009/10/29/thrift-and-haskell/ Thrift and Haskell]
   
 
== Discussions ==
 
== Discussions ==

Revision as of 11:59, 10 May 2013

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

Introduction

Android is an operating 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