ThinRPlugin

项目地址: mogujie/ThinRPlugin 简介:去除 Android 中的 R.class,减小 Apk 包大小
  • Other languages: [简体中文] (README.zh-cn.md) .

ThinR plugin introduce


This tool will remove all the class in R.java except the styleable class and replace the referance into the constant value. So you can reduce the dex files number and apk size.

The plugin has been used on the mogujie app, the apk size is reduced by 1MB (the original apk size of 40MB), the number of DEX reduced by 3.

ThinR plugin principle

In the R.java of android project , except the class styleable , all the class fields are int object and will never change the value in the run-time.

So in the compile-time we mark all the fields' name and their values,then use the asm tool to scan all the class files to replace the name into the value.

HOW TO USE


Add the dependency in the build.gralde of the project

 classpath   'com.mogujie.gradle:ThinRPlugin:0.0.3'

Add the following code in the inner gradle file of the module :

 apply plugin: 'thinR' thinR {     // In order not to affect the daily development of compilation speed, debug version can not delete R   skipThinRDebug = true }

If you are using Proguard, please keep the R class in the confusion file.

-keepclassmembers class **.R$* {     public static ;}-keep class **.R {*;}-keep class **.R$* {*;}-keep class **.R$*-keep class **.R

if you are using ButterKnife either, please keep the R2 class in the confusion file.

-keepclassmembers class **.R2$* {     public static ;}-keep class **.R2 {*;}-keep class **.R2$* {*;}-keep class **.R2$*-keep class **.R2

更多相关文章

  1. Android 改变AlertDialog的大小
  2. Google Maps API Key申请方法及地址
  3. 修改android桌面图标默认大小
  4. Android中获取屏幕相关信息(屏幕大小,状态栏、标题栏高度)
  5. Android EditText输入限制最大字符长度 和 限制只能输入数字和字
  6. Android】获取Mac地址
  7. android 获取mac地址
  8. android 开发工具下载地址

随机推荐

  1. 【eoeAndroid社区索引】android 条形码的
  2. 25个你应该阅读的Android网站
  3. Android(安卓)使用 MPAndroidChart 实现
  4. Android(安卓)简单记事本
  5. Android仿照淘宝,京东,当当购物平台
  6. Android(安卓)Screen Monitor使用
  7. android Launcher Demo小结
  8. Android动画循环弹动cycleInterpolator
  9. Android中Activity共享变量的另一方法:App
  10. 字符串,数组api实例演示