Changes between Version 26 and Version 27 of AndroidBuildApp
- Timestamp:
- Mar 31, 2017, 3:39:12 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AndroidBuildApp
v26 v27 131 131 == Example == 132 132 Setup 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] 134 134 135 Android Makefile: [http ://boinc.berkeley.edu/trac/browser/boinc-v2/samples/example_app/Makefile_android]135 Android Makefile: [https://github.com/BOINC/boinc/blob/master/samples/example_app/Makefile_android samples/example_app/Makefile_android] 136 136 137 137 An 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 ]138 can 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.''') 140 140 141 Note that the AndroidBOINC build script sets up the required environment142 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