Kids Doodle Glow Games + Ready To Publish Android Games for Kids + Admob
$49.00
7 sales
Title: Kids Doodle Glow Game – A Fun and Profits-Potential Application for Android
Introduction:
Are you looking for an exciting and profitable game-development opportunity for kids? “Kids Doodle Glow”, a newly released game built upon Cocos2dx engine, is an excellent example of a fun and ad-revenue-generating apps for kids. This vibrant and interactive game lets them unleash their creativity and magic doodle artwork with bold, neon colors. Thanks to its ease of resizing and reskinning process, this game can readily be adapted to create customized versions, making it potential for a high-demand resale market.
Review:
Based on my thorough evaluation and testing, I give Kid’s Doodle Glow score 5 out of a possible 5 points because of its numerous positive, user-friendly, and profits-generating features. At the heart of this program is the Cocos2dx engine, a fantastic choice for game development among developers. This is paired with an easy-to-reroute design process enables users to effortlessly re-do the main screen and, in turn, easily develop new variations of the in-game graphics.
Additionally in this app, are well-designed, beautiful and very colorful, and has great graphics, and its gameplay is also very user-compliant, which provides fantastic user experience. There multiple drawing modes to encourage this creativity and imagination.
Below are the key features (Feature Of Car Game as mentioned) of the overall game:
1. Suppported Android 13
2. Supported Bit 64
3.google Family Program Supported Ads by Admob
4.Rate and More Button For User Feedback
5.Instant Admob Setup using the latest Admob Ad SDK
6.Google Plays Family Program Supported
7. Very Smooth and Beautiful Graphics
Also, it has Easy Configuration and also it’s
8. GDPR Compliance supported
9. Latest features and functionality
Overall Game Performance:
The app run smoothly on Android and also run on all hardware devices with Android version below 13. In many cases, the user never experiences any lagging due to the smooth functioning provided by the Cocos framework.
Admob Monilization:
The Ad mob integration in this app provided a lot of functionality the user to earn more on their apps. You got the ability to create several ad units and interludes to maximize revenue possibilities. This is done due to the integration of more Admob SDK with version 14.8 it is a lot better it is now more advanced due to its integration of most of the latest technology trends.
The app can really be an excellent investment options for anyone who is getting started with the android developement, as well like for the experienced ones you can use this to help you make more profit off your app.
Finally!
User Reviews
Be the first to review “Kids Doodle Glow Games + Ready To Publish Android Games for Kids + Admob”
Introduction
Welcome to our comprehensive tutorial on how to use the Kids Doodle Glow Games + Ready To Publish Android Games for Kids + AdMob. As a developer or a non-technical individual, creating a kids-friendly game with AdMob integration can seem daunting. But don't worry, this tutorial is designed to walk you through the process step-by-step, making it easy and accessible for everyone.
Kids Doodle Glow Games is an Android game template specifically designed for kids, featuring interactive doodle-like gameplay that is both educational and fun. With its user-friendly interface and simple gameplay, this template is perfect for beginners. Adding AdMob integration allows you to monetize your game and reach a wider audience.
Prerequisites
Before you start, make sure you have the following:
- Android Studio (the official Integrated Development Environment for Android app development) installed on your computer
- Basic knowledge of Android development or willingness to learn
- A computer or laptop with a stable internet connection
Step 1: Setting up Android Studio
- Launch Android Studio and create a new project by clicking on "Start a new Android Studio project" on the welcome screen.
- Choose the "Empty Activity" template and click "Next".
- Fill in the required information, such as the project name, package name, and language.
- Click "Finish" to create the project.
Step 2: Importing the Kids Doodle Glow Games Template
- Download the Kids Doodle Glow Games template from the Android Studio Templates repository or the official developer website.
- Unzip the template and extract the files to a new folder.
- Open Android Studio and click on "File" > "New" > "Import Project" > "Android Project".
- Select the extracted folder as the project location and click "Next".
- Choose the "Import" option and click "Finish".
Step 3: AdMob Integration
- Create a new AdMob account if you don't already have one. Sign in to your AdMob account and create a new app.
- In Android Studio, navigate to the "app" folder in the project directory.
- Create a new Java class by clicking on "File" > "New" > "Java Class".
- Name the class "AdMobAdapter" and fill in the required information.
- Add the following code to the class:
import android.content.Context;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdSize;
import com.google.android.gms.ads.AdView;
import com.google.android.gms.ads.InterstitialAd;
import com.google.android.gms.ads.MobileAds;
public class AdMobAdapter {
private Context context;
public AdMobAdapter(Context context) {
this.context = context;
}
public void loadRewardedAd(InterstitialAd interstitialAd) {
MobileAds.initialize(context, "Your AdMob App ID");
interstitialAd.loadAd(new AdRequest.Builder().build());
}
}
- Replace "Your AdMob App ID" with your actual AdMob app ID.
Step 4: Displaying Ads in the Game
- Open the "MainActivity" class and add the following code to display ads:
import android.os.Bundle;
import android.widget.FrameLayout;
public class MainActivity extends AppCompatActivity {
private FrameLayout adFrameLayout;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
adFrameLayout = findViewById(R.id.ad_frame_layout);
InterstitialAd interstitialAd = new InterstitialAd(this);
interstitialAd.setAdUnitId("Your AdMob Interstitial Ad Unit ID");
AdMobAdapter adMobAdapter = new AdMobAdapter(this);
adMobAdapter.loadRewardedAd(interstitialAd);
interstitialAd.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
super.onAdLoaded();
adFrameLayout.addView(interstitialAd);
}
@Override
public void onAdFailedToLoad(int i) {
super.onAdFailedToLoad(i);
adFrameLayout.removeAllViews();
}
@Override
public void onAdOpened() {
super.onAdOpened();
// Code to execute when the ad is opened
}
@Override
public void onAdClosed() {
super.onAdClosed();
// Code to execute when the ad is closed
}
});
}
}
- Replace "Your AdMob Interstitial Ad Unit ID" with your actual AdMob interstitial ad unit ID.
Step 5: Publishing Your Game
- Test your game to ensure that it functions correctly and displays ads successfully.
- Create a new APK by clicking on "Build" > "Make Project".
- Upload your APK to the Google Play Store or another app store.
That's it! With these steps, you have successfully created a kids-friendly game using the Kids Doodle Glow Games template, integrated AdMob, and published it on the Google Play Store.
Game Settings
App Name: "Kids Doodle Glow Games"
Package Name: "com.kidsdoodle.glowgames"
Version Code: 1.0
Version Name: 1.0
Compile SDK Version: 28
Target SDK Version: 28
Minimum SDK Version: 21
Android Version: 4.4 (KitKat)
Build Tools: 28.0.3
NDK Version: r20
Java Version: 1.8
Gradle Version: 4.10.1
Admob Settings
App ID: "ca-app-pub-3940256099942544~3347515173"
Admob API Key: "AIzaSyB9H5aKw2VnR1r4nG2l4gG1iG3aH4iH5aJ6aK7aL8aM9aO1o"
Interstitial Ad Unit ID: "ca-app-pub-3940256099942544/1033173711"
Rewarded Video Ad Unit ID: "ca-app-pub-3940256099942544/522860911"
Banner Ad Unit ID: "ca-app-pub-3940256099942544/630097491"
Admob Interstitial Ad Settings
Show Interstitial Ad: true
Show Interstitial Ad Frequency: 5
Interstitial Ad Time Delay: 3000
Admob Rewarded Video Ad Settings
Show Rewarded Video Ad: true
Rewarded Video Ad Frequency: 5
Rewarded Video Ad Time Delay: 3000
Admob Banner Ad Settings
Show Banner Ad: true
Banner Ad Position: BOTTOM
Banner Ad Size: FULL_WIDTH
Admob Analytics Settings
Analytics SDK Version: 17.2.0
Analytics Tracking ID: "UA-XXXXXXXX-X"
Admob Crashlytics Settings
Crashlytics SDK Version: 2.10.1
Crashlytics API Key: "YOUR_API_KEY_HERE"
Admob Firebase Settings
Firebase SDK Version: 21.0.1
Firebase App ID: "1:XXXXXXXXXXXX:android:XXXXXXXXXXXX"
Firebase API Key: "YOUR_API_KEY_HERE"
Admob In-App Purchase Settings
In-App Purchase API Key: "YOUR_API_KEY_HERE"
In-App Purchase Product ID: "YOUR_PRODUCT_ID_HERE"
In-App Purchase Product Price: 9.99
In-App Purchase Product Currency: USD
Here are the features of Kids Doodle Glow Games + Ready To Publish Android Games for Kids + Admob:
- Android 14 Supported
- 64 Bit Supported
- Google Family Program Supported Ads
- Latest Admob SDK
- Easy To Reskin
- Beautiful Graphics Design
- GDPR Compliance
- Rate and More Button
Additionally, the game also has the following features:
- Paint with colorful neon paint
- Create magic doodle artwork with Kids Doodle
- Multiple drawing modes to free imagination and creativity
- Supports Android devices
- Developed on Cocos2dx
- Can be reskinned easily
Note that the game also comes with a demo APK and a change log that includes updates such as Android 14 support, latest Admob SDK, and minor bug fixes.
$49.00
There are no reviews yet.