码迷,mamicode.com
首页 > 移动开发 > 详细

android studio添加jar包文件

时间:2016-09-02 11:41:08      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:

 

1.添加jar文件

将jar文件复制至app module目录下的libs文件夹下,然后打开app module目录下的build.gradle配置文件,在dependencies项中添加配置命令,这里有

1 一次性引入libs目录下所有jar文件
2 compile fileTree(include: [‘*.jar‘], dir: ‘libs‘)
3 
4 
5 单个逐一引入jar文件
6 compile files(‘libs/universal-image-loader-1.8.6-with-sources.jar‘)

 

2.通过配置添加第三方库

举例:引入ButterKnife第三方库

git:https://github.com/JakeWharton/butterknife

    1>在工程根目录下build.grade文件中添加apt

buildscript {
  repositories {
    mavenCentral()
   }
  dependencies {
    classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.8‘
  }
}

   2>在app目录下的build.grade 引入apt和butterknife配置

 1 apply plugin: ‘android-apt‘
 2 
 3 android {
 4   ...
 5 }
 6 
 7 dependencies {
 8   compile ‘com.jakewharton:butterknife:8.4.0‘
 9   apt ‘com.jakewharton:butterknife-compiler:8.4.0‘
10 }

 

android studio添加jar包文件

标签:

原文地址:http://www.cnblogs.com/ayixi/p/5832559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!