Top Quality Products

Unicorn Make Up And Salon Game For Kids + Ready For Publish + Admob

$20.00

Added to wishlistRemoved from wishlist 0
Add to compare

13 sales

Unicorn Make Up And Salon Game For Kids + Ready For Publish + Admob

Introduction

Are you looking for a fun and engaging game for kids that combines make-up and dress-up with beautiful graphics? Look no further! The Unicorn Make Up And Salon Game For Kids + Ready For Publish + Admob is an amazing kids and girls game that is sure to delight. With its stunning graphics, numerous cosmetic items, and easy-to-use interface, this game is a must-have for any child who loves make-up and fashion.

Review

The Unicorn Make Up And Salon Game For Kids + Ready For Publish + Admob is an incredibly well-designed game that is sure to captivate kids of all ages. The game features beautiful graphics with numerous cosmetic items, including eye shadow, eyeless, hair, horn, shoes, tail, and best dress-up collection. The game is developed using the popular Cocos2dx engine, making it easy to reskin and publish on the Play Store.

Main Features

Some of the key features of this game include:

  • Android 12+ supported
  • 64-bit supported
  • Google Family Program supported ads
  • Latest Admob SDK
  • Easy to reskin
  • HD graphics
  • Beautiful graphics design
  • Make-up and dress-up levels
  • Change color to used of slider
  • GDPR
  • Rate and more button
  • Share your design to your friends

Monetization

The game is monetized through Admob banner and interstitial ads, making it easy to earn revenue from the game.

Requirements

To run this game, you will need Android Studio.

Demo

[Insert image of the game]

Talk With Us

If you have any questions or need any assistance, feel free to contact us through Skype, Email, or Envato.

Change Log

  • Android 12 supported
  • Update all libraries
  • Latest Admob SDK
  • 64-bit supported
  • Other issues fixed

Conclusion

The Unicorn Make Up And Salon Game For Kids + Ready For Publish + Admob is an amazing game that is sure to delight kids of all ages. With its stunning graphics, numerous cosmetic items, and easy-to-use interface, this game is a must-have for any child who loves make-up and fashion. And with its easy-to-use monetization options, you can earn revenue from the game. Don’t forget to review us and share your feedback!

Rating: 0/5

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “Unicorn Make Up And Salon Game For Kids + Ready For Publish + Admob”

Your email address will not be published. Required fields are marked *

Introduction

Welcome to this comprehensive tutorial on how to use the Unicorn Make Up And Salon Game For Kids + Ready For Publish + AdMob. This popular mobile game is designed to provide hours of fun for kids while teaching them the basics of makeup and pampering. In this tutorial, we will guide you through the process of implementing the game, adding ad revenue using AdMob, and publishing it on app stores.

Prerequisites

Before we begin, make sure you have:

  1. A computer or laptop with a stable internet connection.
  2. The Android Studio Integrated Development Environment (IDE) installed on your computer.
  3. Java programming knowledge (optional).
  4. A basic understanding of mobile game development.
  5. The Unicorn Make Up And Salon Game For Kids project files ( downloadable from the game's repository).

Step 1: Setting up the project

  1. Download the Unicorn Make Up And Salon Game For Kids project files from the game's repository.
  2. Extract the files to a folder of your choice.
  3. Open Android Studio and create a new project by selecting "Empty Activity" under "Start a new Android Studio project".
  4. Enter the project name, company domain, and package name as required.
  5. Choose a location to store the project files and select "Next".
  6. Select "Empty Activity" again and click "Finish" to create the project.

Step 2: Adding the game to the project

  1. Copy the extracted game project files (e.g. UnicornMakeupAndSalonGame folder) and paste it into the newly created Android Studio project folder.
  2. Open the app module in Android Studio and replace the existing files with the game project files.
  3. Make sure to overwrite any existing files.

Step 3: Adding AdMob integration

  1. Create an AdMob account and sign in to the Google Play Console.
  2. Select "Add a new project" and follow the steps to create a new ad unit.
  3. You will receive a unique ad unit ID, which we will use later.
  4. Open the MainActivity.java file and add the following code to integrate AdMob:
    
    import com.google.android.gms.ads.AdRequest;
    import com.google.android.gms.ads.AdView;
    import com.google.android.gms.ads.InterstitialAd;
    import com.google.android.gms.ads.MobileAds;

public class MainActivity extends AppCompatActivity { // AdMob ad unit IDs private static final String BANNER_AD_UNIT_ID = "YOUR_BANNER_AD_UNIT_ID"; private static final String INTERSTITIAL_AD_UNIT_ID = "YOUR_INTERSTITIAL_AD_UNIT_ID"; private AdView mAdView; private InterstitialAd mInterstitialAd;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Initialize AdMob
    MobileAds.initialize(this, new OnInitListener() {
        @Override
        public void onInitFinished() {
            // Load banner ad
            mAdView = findViewById(R.id.adView);
            AdRequest adRequest = new AdRequest.Builder().build();
            mAdView.loadAd(adRequest);

            // Load interstitial ad
            mInterstitialAd = new InterstitialAd(MainActivity.this);
            mInterstitialAd.setAdUnitId(INTERSTITIAL_AD_UNIT_ID);
            AdRequest interstitialAdRequest = new AdRequest.Builder().build();
            mInterstitialAd.loadAd(interstitialAdRequest);
        }
    });
}

}

Replace `YOUR_BANNER_AD_UNIT_ID` and `YOUR_INTERSTITIAL_AD_UNIT_ID` with your actual AdMob ad unit IDs.
5. Add the `AdView` and `InterstitialAd` layouts to the `activity_main.xml` file:
```xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <!-- Other game UI components here -->

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <com.google.android.gms.ads.AdView
            android:id="@+id/adView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            adSize="BANNER"
            adUnitId="YOUR_BANNER_AD_UNIT_ID"/>

    </LinearLayout>

    <!-- Other game UI components here -->

    <Button
        android:id="@+id/play_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Play"/>

</LinearLayout>

Step 4: Adding AdMob advertisements

  1. Open the AndroidManifest.xml file and add the AdMob advertising ID:
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.your.game.name">
    <!--... -->
    <application
        <!--... -->
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name">
            <!--... -->
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <!-- Add AdMob advertising ID -->
        <meta-data
            android:name="com.google.android.gms.ads.APPLICATION_ID"
            android:value="YOUR_ADMOB_APP_ID"/>
    </application>
    </manifest>

    Replace YOUR_ADMOB_APP_ID with your actual AdMob app ID.

Step 5: Publishing the game

  1. Run the game on an emulator or physical device to ensure it is working correctly with AdMob.
  2. Create a new release configuration in Android Studio by clicking on the "Build" menu and selecting "Release Build...".
  3. Follow the prompts to sign the game with a certificate and generate a signed APK file.
  4. Create a new app listing in the Google Play Console by clicking on the "Release" tab and selecting "Create Release".
  5. Upload the signed APK file to the Google Play Console and fill out the required information for the app listing.
  6. Set up the app's pricing, distribution, and other metadata as required.
  7. Click "Publish" to release the game to the world!

Conclusion

This tutorial has covered the complete process of implementing the Unicorn Make Up And Salon Game For Kids, adding AdMob integration, and publishing it on the Google Play Store. By following these steps, you should now be able to create a version of the game that monetizes its ad revenue through AdMob.

Here is an example of settings for the Unicorn Make Up And Salon Game For Kids + Ready For Publish + Admob:

General Settings

In the "build.gradle" file:

android {
   ...
    defaultConfig {
        applicationId "com.yourcompany.unicormakeup"
        versionCode 1
        versionName "1.0"
    }
}

AdMob Settings

In the "build.gradle" file:

dependencies {
    implementation 'com.google.android.gms:play-services-ads:20.0.0'
}

In the "values/strings.xml" file:

<string name="admob_app_id">YOUR_ADMOB_APP_ID</string>
<string name="admob_banner_ad_unit_id">YOUR_ADMOB_BANNER_AD_UNIT_ID</string>
<string name="admob_interstitial_ad_unit_id">YOUR_ADMOB_INTERSTITIAL_AD_UNIT_ID</string>

In the "activity_main.xml" file:

<!-- Add the AdMob Banner Ad -->
<com.google.android.gms.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    ads:adSize="BANNER"
    ads:adUnitId="@string/admob_banner_ad_unit_id"
    tools:ignore="MissingConstraintLayout" />

<!-- Add the AdMob Interstitial Ad -->
<LinearLayout
    android:id="@+id/interstitial_linear_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/interstitial_text_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Interstitial Ad" />

</LinearLayout>

Unicorn Make Up And Salon Game For Kids Settings

In the "ActivityMain.java" file:

// Initialize the game settings
private UnicornMakeUpAndSalonGame game = new UnicornMakeUpAndSalonGame(this);

// Load the game levels
game.loadLevels();

// Initialize the game UI
LinearLayout gameLayout = findViewById(R.id.game_layout);
gameLayout.addView(game.getGamePanel());

AndroidManifest.xml Settings

Add the following permissions to the "AndroidManifest.xml" file:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

Also, add the AdMob activity to the "AndroidManifest.xml" file:

<activity
    android:name="com.google.android.gms.ads.AdActivity"
    android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
    android:theme="@android:style/Theme.Translucent" />

Here are the features of the Unicorn Make Up and Salon Game For Kids + Ready For Publish + Admob:

  1. Best Unicorn Make Up and DressUp Games For Kids: It's a amazing kids and girls game with beautiful graphics images and a large collection of dresses to change.
  2. Cosmetic items: The game includes a wide range of cosmetic items such as eye shadow, eyeless, hair, horn, shoes, tail, and dresses.
  3. HD Graphics: The game has high-definition graphics that make it visually appealing.
  4. Beautiful Graphics Design: The game's design is beautiful and easy to navigate.
  5. Make up and DressUp Levels: The game has multiple levels of makeup and dress-up for the kids to play.
  6. Change Color To Used of Slider: Players can change the color of the slider to create a custom look.
  7. GDPR: The game complies with General Data Protection Regulation (GDPR) guidelines.
  8. Rate and More Button: The game has a rate and more button that allows players to give feedback and access more features.
  9. Share your design to your friends: Players can share their design with their friends through social media or messaging apps.
  10. Admob banner and Interstitial Ads: The game earns revenue through Admob banner and interstitial ads.
  11. Android 12+ Supported: The game is compatible with Android 12 and above devices.
  12. 64 Bit Supported: The game is compatible with 64-bit devices.
  13. Google Family Program Supported Ads: The game uses Admob ads that are compliant with the Google Family Program.
  14. Latest Admob SDK: The game uses the latest Admob SDK for optimized ad performance.
  15. Easy To Reskin: The game is easy to reskin and can be customized to fit your brand.
  16. Easy to publish: The game can be easily published on the Play Store after replacing the main screen and title.

Note that each feature is listed on a separate line.

Unicorn Make Up And Salon Game For Kids + Ready For Publish + Admob
Unicorn Make Up And Salon Game For Kids + Ready For Publish + Admob

$20.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0