Changes between Version 77 and Version 78 of Getting-Started/Android
- Timestamp:
- Aug 16, 2019 6:32:09 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Getting-Started/Android
v77 v78 38 38 39 39 === Building for other architectures === 40 40 * Make sure to cleanup all existing binary and intermediate files, e.g: 41 41 {{{ 42 42 $ cd /path/to/your/pjsip/dir … … 53 53 }}} 54 54 55 * Specify the target arch in {{{TARGET_ABI}}} and run it with {{{--use-ndk-cflags}}}, for example:55 * Specify the target arch in {{{TARGET_ABI}}} and run it with {{{--use-ndk-cflags}}}, for example: 56 56 {{{ 57 57 TARGET_ABI=arm64-v8a ./configure-android --use-ndk-cflags 58 58 }}} 59 59 Also you should adjust [https://developer.android.com/ndk/guides/abis.html#gc Application.mk] and [https://developer.android.com/ndk/guides/abis.html#am library packaging path] (see also #1803). 60 61 * If your app is intended to run on older Android devices, you may need to set {{{APP_PLATFORM}}} to {{{android-20}}} or lower, please check [#failloadlib this issue]. 60 62 61 63 === Notes ===