apk加壳

转载自:http://blog.csdn.net/jiangwei0910410003/article/details/48415225


找了好久,终于找到一篇很使用的了。


再稍微整理下流程:

开发环境:eclipse

项目所需工程:

1)源工程

2)壳工程

3)生成加密apk的工具工程


1. 生成需要加密的源apk文件,例如:smarterstore.apk


2. 生成壳apk文件:smarterstore_protected.apk


2.1 拷贝源工程res下所有文件到壳工程中,

2.2 拷贝源工程manifest.xml中的权限和activity、service、broadcast等配置到壳工程中,另外配置application;

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    android:name="com.victor.smartoreprotected.ProxyApplication" >

    <meta-data android:name="APPLICATION_CLASS_NAME" android:value="com.victor.smarterstore.application.MyApplication"/>
    <activity android:name="com.victor.smartoreprotected.MainActivity" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
 
    注意:不需要拷贝libs文件
    2.3 生成smarterstore_protected.apk文件
 
3.修改加密工具
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值