日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Android >内容正文

Android

Android Studio导出jar包

發(fā)布時間:2023/12/9 Android 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Android Studio导出jar包 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

Eclipse直接有個Export,可以直接導出jar包。AS相對Eclipse變化很大,編譯腳本變成了Gradle,各種導包操作都有差異。

下面是AS導出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 }

第四步,進入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)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。