Android Studio导出jar包
生活随笔
收集整理的這篇文章主要介紹了
Android Studio导出jar包
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Eclipse直接有個Export,可以直接導(dǎo)出jar包。AS相對Eclipse變化很大,編譯腳本變成了Gradle,各種導(dǎo)包操作都有差異。
下面是AS導(dǎo)出jar的過程:
第一步,修改app下的build.grade。
apply plugin: 'com.android.application'修改為
apply plugin: 'com.android.library'第二步,增加一些配置。
task makeJar(type: Copy) { delete 'build/libs/uzAMap.jar' from('build/intermediates/bundles/release/') into('build/libs/') include('classes.jar') rename ('classes.jar', 'uzAMap.jar') } makeJar.dependsOn(build)第三步,去除applicationId
defaultConfig {applicationId "com.apicloud.amap"minSdkVersion 14targetSdkVersion 21 }改為
defaultConfig {minSdkVersion 14targetSdkVersion 21 }第四步,進(jìn)入Terminal,執(zhí)行腳本。
gradlew makeJar完整的build.gradle
apply plugin: 'com.android.library'android {compileSdkVersion 23buildToolsVersion "26.0.2"defaultConfig {applicationId "com.apicloud.amap"minSdkVersion 14targetSdkVersion 21}buildTypes {release {minifyEnabled falseproguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'}} }dependencies {compile 'com.android.support:support-v4:23.4.0'compile files('libs/AMap_3DMap_V3.3.2_20160525.jar')compile files('libs/AMap_Location_V2.4.1_H5.jar')compile files('libs/AMap_Search_V3.2.1_20160308.jar')compile files('libs/apiEngine v1.1.0.jar')compile files('libs/xUtils-2.6.1.jar') }task makeJar(type: Copy) {delete 'build/libs/uzAMap.jar'from('build/intermediates/bundles/release/')into('build/libs/')include('classes.jar')rename ('classes.jar', 'uzAMap.jar') } makeJar.dependsOn(build)本文轉(zhuǎn)自TBHacker博客園博客,原文鏈接:http://www.cnblogs.com/jiqing9006/p/7762256.html如需轉(zhuǎn)載請自行聯(lián)系原作者
總結(jié)
以上是生活随笔為你收集整理的Android Studio导出jar包的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 基于词典的情感分析实验
- 下一篇: 如何将PDF转成高清JPG图片