Top Quality Products

Bubble Shooter Wild – Bubble Shooter Game Android Studio Project with AdMob Ads + Ready to Publish

$16.00

Added to wishlistRemoved from wishlist 0
Add to compare

10 sales

Bubble Shooter Wild – Bubble Shooter Game Android Studio Project with AdMob Ads + Ready to Publish

Introduction

Bubble Shooter Wild is a captivating and engaging bubble shooter game that challenges players to match bubbles of the same color to clear the screen. With 300 levels, daily bonus rewards, and power-ups, this game is a must-play for fans of the genre. Developed with Android Studio, this game is ready to publish and includes AdMob Ads integration, making it an excellent choice for game developers.

Gameplay

The gameplay is simple yet addictive. Players are presented with a grid of colored bubbles, and their goal is to shoot and match bubbles of the same color to clear the screen. As players progress through the levels, the challenges increase, with new obstacles and obstacles to overcome. The power-ups and daily bonus rewards add an extra layer of excitement and motivation to the game.

Graphics and Sound

The game’s graphics and sound design are top-notch, with bright and colorful visuals that will appeal to players of all ages. The sound effects and music are also well-done, creating a immersive and engaging atmosphere.

Features

  • 300 levels of challenging gameplay
  • Daily bonus rewards to keep players engaged
  • Power-ups to help players overcome obstacles
  • AdMob Ads integration for revenue generation
  • Ready to publish in Google Play
  • Easy to edit and reskin
  • Full documentation included

File Includes

The file includes the following:

  • Android Studio Project
  • Documentation File
  • Demo Apk

Requirements

The game requires Android Studio to run and develop.

Conclusion

Bubble Shooter Wild is an excellent bubble shooter game that offers engaging gameplay, stunning graphics, and addictive features. With AdMob Ads integration and 300 levels of gameplay, this game is a must-play for fans of the genre. The file includes everything needed to get started, making it an excellent choice for game developers looking to create a high-quality game.

Rating: 5/5 stars

I would highly recommend Bubble Shooter Wild to any game developer looking to create a fun and engaging game. The game’s graphics, sound design, and addictive gameplay make it a standout in the genre, and the AdMob Ads integration provides a clear revenue stream. Overall, I am impressed with the quality and polish of the game, and I would rate it 5/5 stars.

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 “Bubble Shooter Wild – Bubble Shooter Game Android Studio Project with AdMob Ads + Ready to Publish”

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

Introduction

Bubble Shooter Wild is a popular bubble-shooter game that has been well-received by players of all ages. In this tutorial, we will show you how to use the Android Studio project for Bubble Shooter Wild with AdMob ads integrated. This tutorial assumes you have some basic knowledge of Android development and are familiar with the Android Studio interface.

By the end of this tutorial, you will have a fully functional Android app with AdMob ads implemented, ready to be published on the Google Play Store. We will walk you through the following steps:

  1. Importing the Android Studio project for Bubble Shooter Wild
  2. Configuring AdMob ads
  3. Testing the app with ads
  4. Preparing the app for publishing on the Google Play Store

Step 1: Importing the Android Studio Project

To start, download the Android Studio project for Bubble Shooter Wild from this GitHub repository. Once downloaded, extract the files to a directory of your choice.

Open Android Studio and navigate to "File" > "Open..." and select the project folder. You will be prompted to choose the Gradle build script. Make sure to select the build.gradle file.

Wait for Android Studio to index the project, this might take a few seconds. Once completed, you will see the project's directory structure and files listed on the left-hand side of the window.

Step 2: Configuring AdMob Ads

Before we start, please create a Google AdMob account and enable the game center if you haven't done so already. Go to the Google AdMob dashboard and follow these steps:

  1. Create a new app or select an existing one
  2. Add the required information for your app, such as package name, app ID, and so on
  3. Set up an ad unit by clicking on the "Ad units" tab
  4. Click on "New ad unit" and select "Reward" or "Interstitial" (for interstitial ads)

Copy the AdMob App ID and AdMob ad unit ID, as you will need them in the next steps.

Configuring the AdMob settings in Android Studio:

  1. Open the build.gradle file
  2. Add the AdMob library to your app's dependencies by adding the following code:
    dependencies {
    implementation 'com.google.android.gms:play-services-ads:21.1.1'
    }
  3. Update the AdMob settings by adding the following code in the defaultConfig block:

    defaultConfig {
    applicationId "com.pivotal.codelab.bubble Shooter Wild"
    multiDexEnabled true
    versionName "1.0"
    versionCode 1
    
    // AdMob App ID and Ad unit ID
    Admob_app_id = "Your-Admob-App-Id"
    Admob_ad_unit_id = "Your-Admob-Ad-Unit-Id"
    }
  4. Save the changes

Step 3: Testing the App with Ads

  1. Open the emulator or run the app on a physical device
  2. Tap on the play button to start the game
  3. During the gameplay, you will notice that the ads are being displayed in the intervals set by the AdMob library
  4. Try playing the game and observe the ads

Step 4: Preparing the App for Publishing

To publish your app, follow these steps:

  1. Export the app's APK by navigating to "Build" > "Build Bundle(s)" > "Export..."
  2. Upload the APK file to the Google Play Console
  3. Fill out the app's description, screenshots, and icon
  4. Set up pricing and availability
  5. Review the app's APK for any issues before publishing

By following this tutorial, you should now have a fully functional Bubble Shooter Wild app with AdMob ads integrated, ready to be published on the Google Play Store. Good luck!

Here is the complete settings example:

AdMob App ID In the build.gradle file, add the following line in the android block:

defaultConfig {
   ...
    applicationId "com.example.bubble_shooter_wild"
   ...
}

Replace "com.example.bubble_shooter_wild" with your own app ID.

AdMob Ad Unit ID In the strings.xml file, add the following line:

<string name="admob_app_id">ca-app-pub-3940256099942544~3347511717</string>

Replace "ca-app-pub-3940256099942544~3347511717" with your own AdMob ad unit ID.

AdMob Banner Ad In the activity_main.xml file, add the following code:

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

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

</LinearLayout>

AdMob Interstitial Ad In the MainActivity.java file, add the following code:

private InterstitialAd interstitialAd;

//...

interstitialAd = new InterstitialAd(this);
interstitialAd.setAdUnitId("@string/admob_app_id");
interstitialAd.loadAd(new AdRequest.Builder().build());

AdMob Reward Video Ad In the MainActivity.java file, add the following code:

private RewardItem rewardItem;
private RewardVideoAd rewardVideoAd;

//...

rewardItem = new RewardItem("reward_item", "Reward Item", 100);
rewardVideoAd = new RewardVideoAd(this, rewardItem);
rewardVideoAd.loadAd(new AdRequest.Builder().build());

AdMob Request Settings In the MainActivity.java file, add the following code:

AdRequest adRequest = new AdRequest.Builder()
   .addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
   .build();

This sets the test device ID for the emulator. You can remove this line in production.

Here are the features about this Bubble Shooter Wild - Bubble Shooter Game Android Studio Project with AdMob Ads + Ready to Publish:

  1. Android Studio Project Included: The project is included in Android Studio, making it easy to work with.
  2. Ready to Publish in Google Play: The game is ready to be published on Google Play, saving time and effort.
  3. Easy to Edit and Reskin: The project is easy to edit and reskin, allowing for customization and modification.
  4. AdMob Integration (Banner and Interstitial): The game integrates AdMob ads, providing a revenue stream.
  5. 300 Levels Included: The game comes with 300 levels, providing a comprehensive and engaging gameplay experience.
  6. Power-ups feature: The game includes power-ups that can be used to help players progress through the game.
  7. Daily bonus feature: The game offers daily bonuses, encouraging players to play regularly.
  8. API 34 Support: The project supports API 34, ensuring compatibility with the latest Android versions.
  9. Amazing Graphics and Sounds: The game features impressive graphics and sounds, providing an immersive experience.
  10. 64bit Support: The project supports 64-bit architecture, ensuring compatibility with a wide range of devices.
  11. Full Documentation: The project comes with full documentation, making it easy to understand and modify.
  12. Universal (Phone & Tablet): The game is designed to work on both phones and tablets.
  13. On/Off Button for Sounds and Music: The game allows players to toggle sounds and music on or off.

Additionally, the project includes:

  • Reskin Service: The option to reskin the game with new graphics, sounds, characters, and icons.
  • Contact information: Email (segadroid.studio@outlook.com), Skype, and Telegram IDs for communication and inquiries.
  • File includes: Android Studio Project, Documentation File, and Demo Apk.
Bubble Shooter Wild – Bubble Shooter Game Android Studio Project with AdMob Ads + Ready to Publish
Bubble Shooter Wild – Bubble Shooter Game Android Studio Project with AdMob Ads + Ready to Publish

$16.00

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