Android 12: Android Studio imports third-party class libraries, jar packages, and so libraries

Source: Internet
Author: User

Third-party class library source code

The XMPP code of a netizen from ADT to as, found that it used a third-party class library, source code in the Lib, directly in as in the import project, the third-party class library is not automatically imported into, it seems to need to do their own hands.

The directory structure of the project is as follows:

XMPP$ lsapp    build.gradle  gradlew      import-summary.txt  XMPP.imlbuild  gradle        gradlew.bat  local.properties    settings.gradle

Copy the third-party source qqemoji-lib to this directory, modify the Settings.gradle to add this lib:

include‘:app‘,‘:qqEmoji-lib‘

Modify the Build.gradle under the app to add in dependencies:

dependencies {    compile project(‘:qqEmoji-lib‘)    ...

Create a new Build.gradle file under Qqemoji-lib, with the following reference:

Apply plugin:' Android-library 'Android{compilesdkversion  buildtoolsversion "21.1. 2" Defaultconfig {minsdkver Sion 8 targetsdkversion  }Sourcesets{main {manifest.srcfile ' androidmanifest.xml ' java.srcdirs = [' src ']  Resources.srcdirs = [' src '] aidl.srcdirs = [' src '] renderscript.srcdirs = [' src '] res.srcdirs = [' res ']}}}dependencies{compile ' com.android.support:appcompat-v7:19.1.0 ' //compile ' com.android.support:support-v4 : 19.1.0 '}

The configuration content of Gradle is referred to the last second link.

At this point the structure of the project is shown:

At this point compile, pass, import success!

Third-party class library jar packages

This is much simpler, just copy the jar package to app/libs and add the jar dependency in the Build.gradle under the app. As follows:

dependencies {    ‘com.android.support:support-v4:19.1.0‘    files(‘libs/libammsdk.jar‘)    files(‘libs/universal-image-loader-1.8.6-with-sources.jar‘)    files(‘libs/YoumiSdk_v5.00_2015-01-08.jar‘)}
Third party so library

In general, we do not need extra work to call a third-party so library, just put it in the specified directory and load it in the Java file.
For example, I quoted the previous "first NDK program" compiled in the libfirstlib.so, put it under the app/src/main/jnilibs/armeabi/, in the source of reference:

    static {      System.loadLibrary("FirstLib");     }  

Can. Programs Run as:

Reference:
Http://www.cnblogs.com/neozhu/p/3458759.html
Http://www.open-open.com/lib/view/open1415793464648.html

Android 12: Android Studio imports third-party class libraries, jar packages, and so libraries

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.