湿求了鸭 发表于 2021-6-21 23:08

Earn to Die 2 (战车撞僵尸2)手动过校验+去广告+修改货币

前几天无意间在play商城看到的,看了一下下面演示视频,好家伙这不就是战车撞僵尸吗?{:1_918:}开开心心下载下来,一打开就有广告{:1_935:},我熟悉的打开MT管理器想去广告:lol,提取出来安装包,结果什么都没修改再安装打开就显示,
接下来肯定是搜索classes还有resources了,什么都没有,最后搜索全部文件在这个so里面找到了

下面不用说了拖入ida pro,搜索“Please download the game from Google Play”,来到这里,很明显这三处很可疑,把前面的CBZ跳转全部NOP掉,保存再回填so,签名安装成功进入游戏:victory:

接下来是修改货币,搜索“StoryStartMoney”,由于游戏一开始就送20块钱看到这个14不用想改成6个F就完事了{:301_997:},保存再回填so,签名安装成功进入游戏

然后是去广告了,由于广告类型太多了(大概有七种不同平台的广告:rggrg ),我直接贴出已经修改好了的AndroidManifest.xml了
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.notdoppler.earntodie2"
    platformBuildVersionCode="28"
    platformBuildVersionName="9"
    android:versionCode="1004032"
    android:versionName="1.4.32"
    android:installLocation="auto"
    android:compileSdkVersion="28"
    android:compileSdkVersionCodename="9">
    <uses-sdk
      android:minSdkVersion="19"
      android:targetSdkVersion="29" />
    <uses-feature android:glEsVersion="0x00020000" />
    <!-- 修改或删除您的USB存储设备中的内容 -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <!-- 查看网络连接 -->
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="com.android.vending.BILLING" />
    <!-- 拥有完全的网络访问权限 -->
    <uses-permission android:name="android.permission.INTERNET" />
    <!-- 查看WLAN连接 -->
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <!-- 防止手机休眠 -->
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" />
    <application
      android:theme="@style/ETD2Theme"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:name="com.notdoppler.earntodie2.ETD2Application"
      android:debuggable="true"
      android:allowBackup="false"
      android:supportsRtl="true"
      android:networkSecurityConfig="@xml/network_security_config"
      android:appComponentFactory="androidx.core.app.CoreComponentFactory">
      <meta-data
            android:name="android.app.lib_name"
            android:value="EarnToDie2" />
      <meta-data
            android:name="com.google.android.gms.games.APP_ID"
            android:value="@string/app_id" />
      <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />
      <meta-data
            android:name="android.security.net.config"
            android:resource="@xml/network_security_config" />
      <uses-library
            android:name="org.apache.http.legacy"
            android:required="false" />
      <activity
            android:label="@string/app_name"
            android:name="com.notdoppler.earntodie2.AppActivity"
            android:screenOrientation="sensorLandscape"
            android:configChanges="keyboardHidden|orientation|screenSize">
            <intent-filter>
                <action
                  android:name="android.intent.action.MAIN" />
                <action
                  android:name="android.intent.action.VIEW" />
                <category
                  android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
      </activity>
      <receiver
            android:name="org.cocos2dx.cpp.ScheduledNotification" />
      <receiver
            android:name="com.appsflyer.SingleInstallBroadcastReceiver"
            android:exported="true">
            <intent-filter>
                <action
                  android:name="com.android.vending.INSTALL_REFERRER" />
            </intent-filter>
      </receiver>
      <provider
            android:name="androidx.core.content.FileProvider"
            android:exported="false"
            android:authorities="com.notdoppler.earntodie2.provider"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths" />
      </provider>
      <receiver
            android:name="com.google.android.gms.analytics.AnalyticsReceiver"
            android:enabled="true"
            android:exported="false" />
      <service
            android:name="com.google.android.gms.analytics.AnalyticsService"
            android:enabled="true"
            android:exported="false" />
      <service
            android:name="com.google.android.gms.analytics.AnalyticsJobService"
            android:permission="android.permission.BIND_JOB_SERVICE"
            android:enabled="true"
            android:exported="false" />
      <activity
            android:theme="@android:style/Theme.Translucent.NoTitleBar"
            android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity"
            android:exported="false"
            android:excludeFromRecents="true" />
      <service
            android:name="com.google.android.gms.auth.api.signin.RevocationBoundService"
            android:permission="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION"
            android:exported="true" />
      <activity
            android:theme="@android:style/Theme.Translucent.NoTitleBar"
            android:name="com.google.android.gms.common.api.GoogleApiActivity"
            android:exported="false" />
      <meta-data
            android:name="com.google.android.play.billingclient.version"
            android:value="3.0.0" />
      <activity
            android:theme="@android:style/Theme.Translucent.NoTitleBar"
            android:name="com.android.billingclient.api.ProxyBillingActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize" />
      <provider
            android:name="com.flurry.android.agent.FlurryContentProvider"
            android:exported="false"
            android:authorities="com.notdoppler.earntodie2.FlurryContentProvider" />
      <provider
            android:name="com.squareup.picasso.PicassoProvider"
            android:exported="false"
            android:authorities="com.notdoppler.earntodie2.com.squareup.picasso" />
    </application>
</manifest>

湿求了鸭 发表于 2021-6-22 22:56

away99 发表于 2021-6-22 21:39
有个问题,我改了上十亿的钱玩到第六关就不够用了,后面的花费几乎成指数级增长。。。。还是改内购合适,改 ...

虽然我只提供了修改钱的方法,但你想内购你可以自己搜“Purchase Failed”还有“money_doubler_already”,这些关键文字都在/assets/locales/里面{:1_908:},还可以修改距离,速度,油之类的自己摸索{:1_893:}

侃遍天下无二人 发表于 2021-6-22 00:16

本帖最后由 侃遍天下无二人 于 2021-6-22 00:18 编辑

啊这,我初高中玩得还听多,楼主不找个flash版的在电脑上玩吗,独立播放器还是能用的

最后一步建议标一下哪些节点被你去掉或替换了

CCQc 发表于 2021-6-22 02:10

感谢分享思路。根据楼主分享修改一下,看看效果如何?

大大连连 发表于 2021-6-22 06:48

腿毛哥哥 发表于 2021-6-22 07:28

感谢楼主发帖,请继续保持这种精品帖子,留言支持。

没光环的上帝 发表于 2021-6-22 07:52

学习了,感谢楼主的分享

野小子SAS 发表于 2021-6-22 08:04

看着不错啊

wennen2004 发表于 2021-6-22 08:52

感谢分享,有成品马???(小白问

zxxiaopi 发表于 2021-6-22 08:57

感谢分享

huaishion 发表于 2021-6-22 09:06

只是修改了xml文件吗,修改了哪些东西?
页: [1] 2 3 4 5 6
查看完整版本: Earn to Die 2 (战车撞僵尸2)手动过校验+去广告+修改货币