Difference between revisions of "Android"

From HaskellWiki
Jump to navigation Jump to search
Line 10: Line 10:
   
 
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]
 
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]
  +
  +
There is
  +
[https://github.com/ajhc/demo-android-ndk NativeActivity demo application]
  +
using [http://ajhc.metasepi.org/ Ajhc Haskell compiler].
   
 
== Discussions ==
 
== Discussions ==

Revision as of 15:03, 7 October 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

There is NativeActivity demo application using Ajhc Haskell compiler.

Discussions


Related