3.1 = Change Your Package Name :
->in AndroidStudio, navigate to your project and you will see AndroidManifest.xml file
change “com.XXX.ZZZ” to You Packagename

3.2 =
AND
->in AndroidStudio,Below the project Folder there will a other tab named Gradle scripts, click the arrow beside the Cradle Scripts
->open the "build.gradle(Module:withProjectName)"
In that replace your package name with the old one
For example:
change
applicationId "com.XXX.ZZZ"
To
applicationId "Your Packagename"

3.3=
AND
->in AndroidStudio, navigate to your project and you will see “src” folder,inside that folder there will be a “org.cocos2d.cpp” folder,inside that folder there will be a AppActivity file
change “import com.XXX.ZZZ.R;” to You PackageName

2.1 = in AndroidStudio, navigate to your project and you will see app folder,inside that folder there will be a res folder,inside that folder there will be, value folder in that there will be a string.xml file
->open string.xml

->Make changes to fields according to your requirement here
2.2 = For example: your app name is Sky fighter and Currently It is having name “NewGame” in string.xml then
change
<string name="app_name">Your App Name</string>
to
<string name="app_name">Sky fighter</string>

2.3 & 2.4 =
Same As Above Change “admob_id” , “intersttial_id” , “base64_encoded_key”
