Bomberman Android is Sport expertise
A) File Construction
src/
Comprises stub Exercise file, which is saved at src/your/package deal/namespace/ActivityName.java. All different supply code information go right here as effectively.
bin/
Output listing of the construct. That is the place you could find the ultimate .apk file and different compiled assets.
belongings/
Retailer uncooked asset information. Recordsdata that you just save listed here are compiled into an .apk file as-is, and the unique filename is preserved. On this recreation, this listing shops fonts, photographs and maps of each ranges
res/
Comprises utility assets, akin to drawable information, structure information, and string values. Particulars beneath
- anim/ – For XML information which can be compiled into animation objects
- drawable/ – For bitmap information (PNG, JPEG, or GIF), 9-Patch picture information, and XML information that describe Drawable shapes or Drawable objects that include a number of states (regular, pressed, or targeted).
- structure/ – XML information which can be compiled into display screen layouts (or a part of a display screen).
- menu/ – For XML information that outline utility menus
- uncooked/ – For arbitrary uncooked asset information. Saving asset information right here as an alternative of within the belongings/ listing solely differs in the way in which that you just entry them. These information are processed by aapt and should be referenced from the appliance utilizing a useful resource identifier within the R class. On this utility, that is place for media, akin to MP3 or Ogg information
- values/ – For XML information which can be compiled into many sorts of useful resource. In contrast to different assets within the res/ listing, assets written to XML information on this folder aren’t referenced by the file identify. As an alternative, the XML factor sort controls how the assets is outlined inside them are positioned into the R class.
AndroidManifest.xml
The management file that describes the character of the appliance and every of its elements. As an example, it describes: sure qualities in regards to the actions, companies, intent receivers, and content material suppliers; what permissions are requested; what exterior libraries are wanted; what gadget options are required, what API Ranges are supported or required; and others.
B) Drawable Useful resource
Drawable useful resource are saved in res/drawable(hdpi,ldpi,mdpi,xhdpi,and so on.) folder and a few in belongings folder
If you wish to change icon of recreation, please substitute ic_launcher.png in every drawablefolder with related image-size footage
C) String Assets
All String Useful resource are retailer in res/values/string.xml information
If you wish to change the Software’identify, you possibly can change Bom Offline to something you need.
D) Sounds
I’ve included three sounds with on this utility in res/uncooked folder
If you would like to vary the any sound, you possibly can copy and paste your sound to uncooked folder. Simply bear in mind to maintain file’s identify related with unique file identify
E) Admob
I’ve built-in Admob Full Display screen advertisements. This advertisements will show earlier than participant go to any stage, on win display screen or recreation over display screen.
Make sure import google-play-services_lib_origin in your IDE
Then substitute the promote ID in res/values/advertisements.xml
by your promote ID
Hyperlink Obtain :
1. Apk File
2. Supply Code
1 | <pre style="border-image-outset: initial; border-image-repeat: initial; border-image-slice: initial; border-image-source: initial; border-image-width: initial; border: 0px; font-family: 'andale mono', 'lucida console', monospace; font-stretch: normal; margin-bottom: 1.5em; margin-top: 1.5em; padding: 0px; vertical-align: baseline;"><pre style="border: 0px; font-family: 'andale mono', 'lucida console', monospace; font-stretch: normal; margin-bottom: 1.5em; margin-top: 1.5em; padding: 0px; vertical-align: baseline;"><pre style="border: 0px; font-family: 'andale mono', 'lucida console', monospace; font-stretch: normal; margin-bottom: 1.5em; margin-top: 1.5em; padding: 0px; vertical-align: baseline;"> |