Created: 29/10/2014
By: ittus
Email: vietnamvodich2100@gmail.com
Thank you for purchasing my application. If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact vietnamvodich2100@gmail. Thanks so much!
Android projects are the projects that eventually get built into an .apk file that you install onto a device. They contain things such as application source code and resource files. Some are generated for you by default, while others should be created if required. The following directories and files comprise an Android project:
src/
Contains stub Activity file, which is stored at src/your/package/namespace/ActivityName.java. All other source code files go here as well.
bin/
Output directory of the build. This is where you can find the final .apk file and other compiled resources.
assets/
Store raw asset files. Files that you save here are compiled into an .apk file as-is, and the original filename is preserved. In this game, this directory stores fonts, images and maps of every levels
res/
Contains application resources, such as drawable files, layout files, and string values. Details below
AndroidManifest.xml
The control file that describes the nature of the application and each of its components. For instance, it describes: certain qualities about the activities, services, intent receivers, and content providers; what permissions are requested; what external libraries are needed; what device features are required, what API Levels are supported or required; and others
Drawable resource are stored in res/drawable(hdpi,ldpi,mdpi,xhdpi,etc.) folder and some in assets folder
If you want to change icon of game, please replace ic_launcher.png in each drawable folder with similar image-size pictures
All String Resource are store in res/values/string.xml files
If you want to change the Application'name, you can change Chess Game in string app_name to anything you want.
I have integrated Admob Full Screen and Banner ads. This ads will display after player finish any level, on win screen or game over screen
Be sure import google-play-services_lib_origin in your IDE
Then replace the advertise ID in res/values/ads.xml
by your advertise IDBackground image is stored in res/drawable/bg.png file
You can change the background image to any other image. Please keep the file name so that application can work properly
Title image is stored in res/drawable/gametitle.png file
You can freely change,edit this title.
Once again, thank you so much for purchasing this theme. As I said at the beginning, I'd be glad to help you if you have any questions relating to this application. No guarantees, but I'll do my best to assist.
ittus