<table><tr><td style="">alexeymin added a comment.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D13198">View Revision</a></tr></table><br /><div><div><p><a href="http://doc.qt.io/qt-5/deployment-android.html" class="remarkup-link" target="_blank" rel="noreferrer">http://doc.qt.io/qt-5/deployment-android.html</a> at the bottom of the page there is an example of usage scenario for <tt style="background: #ebebeb; font-size: 13px;">qmake</tt> project:</p>

<blockquote style="border-left: 3px solid #a7b5bf; color: #464c5c; font-style: italic; margin: 4px 0 12px 0; padding: 4px 12px; background-color: #f8f9fc;"><p>ANDROID_EXTRA_LIBS: A list of external libraries that will be copied into your application's library folder and loaded on start-up. This can be used, for instance, to enable OpenSSL in your application. Simply set the paths to the required libssl.so and libcrypto.so libraries here and OpenSSL should be enabled automatically.</p></blockquote>

<p>In Qt Creator you can manually specify extra libs in project build settings: <br />
<a href="https://phabricator.kde.org/F5878332" style="background-color: #e7e7e7;
          border-color: #e7e7e7;
          border-radius: 3px;
          padding: 0 4px;
          font-weight: bold;
          color: black;text-decoration: none;">F5878332: qt creator project android settings extra libs.png</a><br />
After that, the following is added to *.pro file for qmake:</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
    ANDROID_EXTRA_LIBS = \
        $$PWD/android/arm-linux-androideabi-4.9/libcrypto.so \
        $$PWD/android/arm-linux-androideabi-4.9/libssl.so
}</pre></div>

<p>With this variable qmake generates a proper JSON file for <tt style="background: #ebebeb; font-size: 13px;">androiddeplyoqt</tt>, containing <tt style="background: #ebebeb; font-size: 13px;">"android-extra-libs"</tt> with full path to specified libs, and so they are included in result APK.</p>

<p>Step above work for qmake project. For cmake, using ECM Android toolchain file you have no way to specify dependencies manually, without this patch.</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R240 Extra CMake Modules</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D13198">https://phabricator.kde.org/D13198</a></div></div><br /><div><strong>To: </strong>alexeymin, apol<br /><strong>Cc: </strong>kde-buildsystem, kde-frameworks-devel, michaelh, ngraham, bruns<br /></div>