Android程式碼混淆
這是在工程中的proguard-project.txt中發現的
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "build.properties", and override values to adapt the script to your
# project structure.
# Project target.
target=android-15
proguard.config=proguard.cfg
Android程式碼混淆,如何過濾掉反射的R檔案及第三方包?
解決方案:在Proguard.cfg方件中新增以下設定:
- 過濾R檔案的混淆:
-keep class **.R$* { *; }
- 過濾第三方包的混淆:
-keep class packagename.** {*;}(其中packagename為第三方包的包名)
Android匯入第三方jar包,proguard混淆指令碼(遮蔽警告,不混淆第三方包)
最近1個專案中 需要匯入移動MM的第三方計費包,混淆時用到了如下指令碼,可遮蔽警告,不混淆第三方包指定內容。
非常有效
proguard.cfg 檔案
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-ignorewarnings //這1句是遮蔽警告,指令碼中把這行註釋去掉
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
//這1句是匯入第三方的類庫,防止混淆時候讀取包內容出錯,指令碼中把這行註釋去掉
-libraryjars libs/mmbilling.jar
-dontwarn //dontwarn去掉警告
-dontskipnonpubliclibraryclassmembers
-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.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.android.vending.licensing.ILicensingService
-keepclasseswithmembernames class * {
native <methods>;
}
-keepclasseswithmembernames class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembernames class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
//這4句是不混淆第三方包中的指定內容,指令碼中把這行註釋去掉 -keep class com.ccit.** {*; }
-keep class ccit.** { *; }
-keep class com.aspire.**
-keep class mm.vending.**
相關文章
- Android程式碼混淆&元件化混淆方案Android元件化
- android 混淆規則作用,Android程式碼混淆詳解Android
- Android 程式碼混淆規則Android
- Android Studio 程式碼混淆Android
- Android 專案程式碼混淆Android
- Flutter 程式碼混淆 混淆Dart程式碼FlutterDart
- 程式碼安全之程式碼混淆及加固(Android)?Android
- Android程式碼混淆的實踐Android
- 讀懂 Android 中的程式碼混淆Android
- Android反編譯和程式碼混淆Android編譯
- Android Studio實現程式碼混淆Android
- 【程式碼混淆】react-native 程式碼混淆React
- Android Studio 程式碼混淆注意問題Android
- Android程式碼混淆配置(Proguard檔案解析)Android
- js程式碼混淆JS
- Android App程式碼混淆終極解決方案AndroidAPP
- Android 配置 Ant 指令碼之程式碼混淆和優化Android指令碼優化
- ios加固,ios程式碼混淆,ios程式碼混淆工具, iOS原始碼混淆使用說明詳解iOS原始碼
- Android 程式碼混淆語法講解及常用模板Android
- Android 高階混淆和程式碼保護技術Android
- 鴻蒙程式碼配置混淆鴻蒙
- iOS安全/程式碼混淆iOS
- Eclipse與Android原始碼中ProGuard工具的使用(程式碼混淆)EclipseAndroid原始碼
- Python程式碼混淆工具,Python原始碼保密、加密、混淆Python原始碼加密
- 程式碼混淆工具ipaguard:如何使用ipaguard保護和混淆iOS應用程式程式碼iOS
- 程式碼混淆與反混淆學習-第二彈
- powershell程式碼混淆繞過
- 前端程式碼安全與混淆前端
- iOS 初探程式碼混淆(OC)iOS
- 程式碼混淆的規則
- Android混淆Android
- 聊聊如何進行程式碼混淆行程
- iOS應用加固--程式碼混淆iOS
- 教你5步搞定程式碼混淆
- Python 程式碼混淆工具概述Python
- SpringBoot程式碼混淆與反混淆加密工具詳解Spring Boot加密
- android 解碼混淆過的堆疊資訊Android
- 逆向破解js程式碼加密,程式碼混淆不是難事JS加密