Changes between Version 69 and Version 70 of AndroidPort


Ignore:
Timestamp:
Jan 6, 2012, 3:01:18 AM (12 years ago)
Author:
Anders Feder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidPort

    v69 v70  
    105105
    106106= Implementation =
    107 The [http://en.wikipedia.org/wiki/Dalvik_(software) Android VM] allows applications to call methods implemented in native code through [http://docs.oracle.com/javase/7/docs/technotes/guides/jni/index.html JNI]. This means we have to produce a native shared library which implements the core game functions as a set of methods that can be called from a "shell" application running in the standard Android VM. The library and application can then be packaged and distributed together.
     107The [http://en.wikipedia.org/wiki/Dalvik_(software) Android VM] allows applications to call methods implemented in native code through [http://docs.oracle.com/javase/7/docs/technotes/guides/jni/index.html JNI]. This means we have to produce a native shared library which implements the core game functions as a set of methods that can be called from a "shim" application running in the standard Android VM. The library and application can then be packaged and distributed together.
    108108
    109109== Setting up your workstation ==
     
    140140}}}
    141141== Setting up an Android project ==
     142All data that is to be compiled and packaged into the Android application must be assembled in an Android ''project''.
     143
    142144We'll use the template provided by SDL.