程序员人生 网站导航

android studio 使用gradle 导出jar包,并打包assets目录

栏目:综合技术时间:2015-01-19 08:20:36

最近项目在做1个sdk,供别的开发者使用,所以要求导出jar包。

与eclipse不同,android studio 1.0 没提供导出jar包的图形界面。需要结合gradle来生成jar包。

首先 需要设置module利用的gradle插件为 library 代码长这样:

apply plugin: 'com.android.library'

这样,build的时候,android studio 1.0会在 module目录的build/intermediates/bundles/release/ 子目录(这个目录以后版本可能会变)里生成1个名为classes的jar包。
如果你的项目没用到assets等资源文件,那你直接拷贝出去就能够用了。
如果想拷贝到outputs目录的话,在module的build.gradle里添加以下代码:

task clearJar(type: Delete) { delete 'build/outputs/yourname.jar' } task makeJar(type: Copy) { from('build/intermediates/bundles/release/') into('build/outputs/') include('classes.jar') rename ('classes.jar', 'yourname.jar') } makeJar.dependsOn(clearJar, build)

如果你和我1样,还需要把assets目录打包到jar包的话,请继续往下看。
我用了1个非主流的方式打包assets,应当没甚么后遗症,我们江湖儿女都懂的,hack1下更健康。

其实也没啥神秘的,也不知道算不算hack,就是利用文件依赖来打包assets。代码长这样:

dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') provided files('src/main/assets') compile 'com.android.support:appcompat-v7:21.0.3' }

关键是第3行代码。还有1点1定要注意,需要在assets新建1个名为assets的目录,在这个子目录里放置你需要的文件。这样才可以哦。
还没完,不知道啥缘由,只有minifyEnabled设置为 true才能把assets打包进去。没有去深究,反正我也需要混淆下代码。

好了,android studio 使用gradle 导出jar包,并打包assets目录 ,我说明白了,对吧。

另附 proguard配置:

-libraryjars 'C:Softandroidadtsdkplatformsandroid⑴9android.jar' -optimizations !code/simplification/arithmetic -allowaccessmodification -repackageclasses '' -keepattributes *Annotation* -dontpreverify -dontwarn android.support.** -keep public class * extends android.app.Activity -keep public class * extends android.app.Application -keep public class * extends android.app.Service -keep public class * extends android.content.BroadcastReceiver -keep public class * extends android.content.ContentProvider -keep public class * extends android.view.View { public <init>(android.content.Context); public <init>(android.content.Context,android.util.AttributeSet); public <init>(android.content.Context,android.util.AttributeSet,int); public void set*(...); } -keepclasseswithmembers class * { public <init>(android.content.Context,android.util.AttributeSet); } -keepclasseswithmembers class * { public <init>(android.content.Context,android.util.AttributeSet,int); } -keepclassmembers class * extends android.content.Context { public void *(android.view.View); public void *(android.view.MenuItem); } -keepclassmembers class * extends android.os.Parcelable { static ** CREATOR; } -keepclassmembers class **.R$* { public static <fields>; } -keepclassmembers class * { @android.webkit.JavascriptInterface <methods>; }

其他精彩文章

android学习笔记(41)android选项菜单和子菜单(SubMenu )

android学习笔记(40)Notification的功能与用法

android学习笔记(42)android使用监听器来监听菜单事件

android学习笔记(43)android创建单选菜单和复选菜单

android学习笔记(44)android设置与菜单项关联的Activity

android学习笔记(45)android上下文菜单

更多关于android开发文章


------分隔线----------------------------
------分隔线----------------------------

最新技术推荐