Changes between Version 26 and Version 27 of AndroidBuildApp


Ignore:
Timestamp:
Mar 31, 2017, 3:39:12 AM (7 years ago)
Author:
Christian Beer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidBuildApp

    v26 v27  
    131131== Example ==
    132132Setup the environment:
    133 [http://boinc.berkeley.edu/trac/browser/boinc-v2/samples/example_app/build_android.sh]
     133[https://github.com/BOINC/boinc/blob/master/samples/example_app/build_android.sh samples/example_app/build_android.sh]
    134134
    135 Android Makefile: [http://boinc.berkeley.edu/trac/browser/boinc-v2/samples/example_app/Makefile_android]
     135Android Makefile: [https://github.com/BOINC/boinc/blob/master/samples/example_app/Makefile_android samples/example_app/Makefile_android]
    136136
    137137An example of how to adapt a BOINC app's Makefile to compile it for Android
    138 can be found in the BOINC sources at:
    139 [https://github.com/novarow/AndroidBOINC/blob/master/native/diffs_android/uppercase/Makefile_android]
     138can be found in the AndroidBOINC sources at:
     139[https://github.com/novarow/AndroidBOINC/blob/master/native/diffs_android/uppercase/Makefile_android native/diffs_android/uppercase/Makefile_android] ('''Note: AndroidBOINC is not supported anymore and out-of-date.''')
    140140
    141 Note that the AndroidBOINC build script sets up the required environment
    142 variables for the standard C++ library as well as the Android SYSROOT.
    143 
    144 -llog refers to the library required to use Logcat from native code.
    145 Logcat is used for debugging purposes and is not required for the app's functionality.
    146