Jump to content

Package name editing

From Battle Cats Game Modding Wiki
Revision as of 19:23, 5 September 2025 by Fieryhenry (talk | contribs) (Created page with "Category:Game metadata edits The package name of the game should be modified so that it doesn't conflict with the unmodified game version. == Android == === With decoded resources === If you decoded resources when extracting the APK, then you can just modify the AndroidManifest.xml file with a text editor. You should modify the <code>package</code> attribute as part of the top level <code><manifest></code> tag. <syntaxhighlight lang="x...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


The package name of the game should be modified so that it doesn't conflict with the unmodified game version.

Android

With decoded resources

If you decoded resources when extracting the APK, then you can just modify the AndroidManifest.xml file with a text editor.

You should modify the package attribute as part of the top level <manifest> tag.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="package.name.here" >
    ...
</manifest>