Difference between revisions of "Android"

From HaskellWiki
Jump to navigation Jump to search
(→‎Related: Added a link to "Cross-compiling GHC")
(Added sections "Introduction" and "How to develop Android software in Haskell")
Line 1: Line 1:
 
{{Stub}}
 
{{Stub}}
   
= Discussions =
+
== 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.
  +
  +
  +
== 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].
  +
  +
  +
== Discussions ==
   
 
* StackOverflow: [http://stackoverflow.com/questions/5151858/running-a-haskell-program-on-the-android-os Running a Haskell program on the Android OS]
 
* StackOverflow: [http://stackoverflow.com/questions/5151858/running-a-haskell-program-on-the-android-os Running a Haskell program on the Android OS]
Line 7: Line 17:
 
* Google+ [https://plus.google.com/101555949501667191720/posts/JaFk1HS5oR7 So who else is interested in getting Haskell running on Android?]
 
* Google+ [https://plus.google.com/101555949501667191720/posts/JaFk1HS5oR7 So who else is interested in getting Haskell running on Android?]
   
  +
= Related =
+
== Related ==
   
 
* [http://hackage.haskell.org/trac/ghc/wiki/Building/CrossCompiling Cross-compiling GHC]
 
* [http://hackage.haskell.org/trac/ghc/wiki/Building/CrossCompiling Cross-compiling GHC]

Revision as of 11:55, 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.


Discussions


Related