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

android studio使用gradle自定义导出jar文件

时间:2016-04-18 18:51:53      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

在android studio中导出jar文件并不像在eclipse那样简单,不过也不是太复杂。需要用到gradle脚本来导出jar文件。

我们不希望导出的jar文件带有R.class和BuildConfig.class这样的类,所以我们需要编写gradle脚本来实现自定义jar文件内容。

先打开module项目下的build.gradle文件,在android{}标签下编写task命令,如下是我的gradle文件:

apply plugin: ‘com.android.application‘

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.example.testapp"
        minSdkVersion 14
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile(‘proguard-android.txt‘), ‘proguard-rules.pro‘
        }
    }

}

task buildMyJar(type: Jar, dependsOn: [‘build‘]) {
    //导出的jar文件名称
    archiveName = ‘TestApp.jar‘
    //从哪个目录打包jar
    from(‘build/intermediates/classes/debug‘)
    //导出的jar文件的存放目录(未指定则默认存放在build/libs下)
    destinationDir = file(‘build/libs‘)
    //去掉不要的类
    exclude(‘com/example/testapp/BuildConfig.class‘)
    exclude(‘com/example/testapp/BuildConfig\$*.class‘)
    exclude(‘**/R.class‘)
    exclude(‘**/R\$*.class‘)
    //需要打包的类
    include(‘com/example/testapp/*.class‘)
}

dependencies {
    compile fileTree(dir: ‘libs‘, include: [‘*.jar‘])
    testCompile ‘junit:junit:4.12‘
    compile ‘com.android.support:appcompat-v7:23.1.1‘
    compile ‘com.android.support:design:23.1.1‘
    compile ‘com.google.android.gms:play-services-appindexing:8.1.0‘
}

写好gradle脚本后点击“sync now”

打开android studio右侧的Gradle面板,选择项目名——>other——>buildMyJar(task名称)

技术分享

双击后运行该脚本,就会在build/libs目录下生成jar文件。用jd-gui打开该jar文件可以看到里面的class文件没有包含R.class之类的文件

技术分享

 

 

技术分享

android studio使用gradle自定义导出jar文件

标签:

原文地址:http://www.cnblogs.com/SusieBlog/p/5405265.html

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