Changes between Version 77 and Version 78 of Getting-Started/Android


Ignore:
Timestamp:
Aug 16, 2019 6:32:09 AM (5 years ago)
Author:
nanang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/Android

    v77 v78  
    3838 
    3939=== Building for other architectures === 
    40     * Make sure to cleanup all existing binary and intermediate files, e.g: 
     40 * Make sure to cleanup all existing binary and intermediate files, e.g: 
    4141      {{{ 
    4242$ cd /path/to/your/pjsip/dir 
     
    5353      }}} 
    5454 
    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:  
    5656   {{{ 
    5757   TARGET_ABI=arm64-v8a ./configure-android --use-ndk-cflags 
    5858   }}} 
    5959   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]. 
    6062 
    6163=== Notes ===