Android中的性能优化

外部链接

在正式环境中关闭日志

1
2
3
4
5
6
7
8
# insert below code to proguard-rules.pro

# 移除日志
-assumenosideeffects class android.util.Log {
public static *** d(...);
public static *** i(...);
public static *** w(...);
}
1
2
3
4
5
6
7
8
9
# insert below code to build.gradle

release {
signingConfig signingConfigs.renrenDebug // 密钥配置
shrinkResources true // 删除不必要的源文件
zipAlignEnabled true // 压缩对齐
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}