Top Quality Products

DesertHunter – Android Game with AdMob

$18.00

Added to wishlistRemoved from wishlist 0
Add to compare

3 sales

DesertHunter – Android Game with AdMob

Title: A Simple yet Engaging Endless Shooter: DesertHunter Review

Introduction:

DesertHunter is a straightforward and entertaining endless shooting game for Android devices. As the pilot of a Tempest bomber aircraft, your mission is to hunt down enemy ships in the desert region. With a simple objective of achieving a high score and killing as many enemies as possible, DesertHunter offers a quick and engaging gaming experience.

Gameplay:

The game is a continue bullet-firing game where you must defend your aircraft from an onslaught of enemy ships. Your goal is to maintain your score and kill as many enemies as you can to challenge your friends and earn a top spot on the leaderboards. The gameplay is straightforward, making it accessible to players of all ages and skill levels.

Features:

DesertHunter boasts several notable features, including:

  1. Made with Unity: The game uses the popular Unity game engine, ensuring a smooth and responsive gaming experience.
  2. AdMob Banner integrated: The game features a banner ad from AdMob, providing an additional revenue stream for the developers.
  3. AdMob Interstitial integrated: DesertHunter also features interstitial ads from AdMob, adding to the game’s monetization capabilities.
  4. Social sharing integrated: Players can share their high scores on social media platforms, allowing them to show off their gaming skills.
  5. Responsive UI: The game’s user interface is designed to be responsive, ensuring an optimal gaming experience across various Android devices.
  6. Simple graphic: The game’s graphics are straightforward, using simple shapes and colors to create a visually appealing environment.
  7. Custom Game LOGO Icon: DesertHunter features a custom logo icon that adds a touch of personality to the game.
  8. Clean C# scripts: The game’s scripts are clean and well-organized, making it easy to navigate and understand.
  9. Background music and sounds: DesertHunter features background music and sound effects that enhance the overall gaming experience.
  10. Documentation: The game comes with comprehensive documentation, making it easy for developers to customize and extend the game.

Credit:

DesertHunter acknowledges the use of pre-made assets, including character art from freegameassets.blogspot.com and music from opengameart.org.

Rating:

Overall, I would give DesertHunter a score of 4.5 out of 5 stars. While the game is engaging and fun to play, the graphics are somewhat simplistic and the game lacks the polish of more developed titles. Nevertheless, DesertHunter is an excellent choice for players seeking a quick and entertaining gaming experience.

Conclusion:

DesertHunter is a well-crafted Android game that offers a straightforward and engaging gaming experience. With its AdMob integration and social sharing features, the game provides a decent revenue stream for the developers. While the graphics could be improved, the game’s responsive UI and clean scripts make it an enjoyable and accessible experience for players of all ages. If you’re looking for a quick and entertaining endless shooter, DesertHunter is definitely worth checking out.

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 “DesertHunter – Android Game with AdMob”

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

Introduction to DesertHunter - Android Game with AdMob

Welcome to the tutorial on how to use the DesertHunter Android game with AdMob. In this tutorial, we will guide you through the process of integrating AdMob into your DesertHunter game, allowing you to monetize your game with ads and increase your revenue.

DesertHunter is a popular Android game where you play as a desert hunter, navigating through treacherous terrain, collecting resources, and battling fierce enemies. With AdMob, you can display ads in your game, providing a revenue stream and helping to offset the costs of game development.

In this tutorial, we will cover the following topics:

  1. Setting up AdMob and creating a new ad unit
  2. Adding AdMob to your DesertHunter game
  3. Implementing AdMob ad views in your game
  4. Testing and troubleshooting AdMob ads
  5. Optimizing AdMob ads for maximum revenue

By the end of this tutorial, you will have successfully integrated AdMob into your DesertHunter game and be ready to start monetizing your game.

Step 1: Setting up AdMob and creating a new ad unit

To get started, you need to set up an AdMob account and create a new ad unit. Follow these steps:

  1. Go to the AdMob website (https://admob.google.com/) and sign in with your Google account.
  2. Click on the "Create a new app" button and enter your app's details, including the app name, package name, and app store URL.
  3. Select "Android" as the platform and "DesertHunter" as the app name.
  4. Click on the "Create" button to create the app.
  5. In the AdMob dashboard, click on the "Apps" tab and select the "DesertHunter" app.
  6. Click on the "Monetize" tab and select "AdMob ads" as the ad network.
  7. Click on the "Create ad unit" button and select "Banner" as the ad format.
  8. Choose the ad placement (e.g., "Top banner") and set the ad unit name (e.g., "DesertHunter_Banner").
  9. Click on the "Create" button to create the ad unit.

Step 2: Adding AdMob to your DesertHunter game

To add AdMob to your DesertHunter game, you need to add the AdMob SDK to your Android project. Follow these steps:

  1. Open your Android Studio project and navigate to the "app" directory.
  2. Create a new folder called "libs" and add the AdMob SDK JAR file to it.
  3. Right-click on the "libs" folder and select "Properties".
  4. In the "Properties" window, select "Java Build Path" and click on the "Order and Export" tab.
  5. Check the box next to the AdMob SDK JAR file and click "OK".

Step 3: Implementing AdMob ad views in your game

To display AdMob ads in your DesertHunter game, you need to implement AdMob ad views in your game. Follow these steps:

  1. Create a new Java class called "AdView.java" and add the following code:
    
    import android.content.Context;
    import android.widget.FrameLayout;
    import com.google.android.gms.ads.AdRequest;
    import com.google.android.gms.ads.AdSize;
    import com.google.android.gms.ads.AdView;

public class AdView extends FrameLayout { private AdView adView;

public AdView(Context context) {
    super(context);
    adView = new AdView(context);
    adView.setAdSize(AdSize.BANNER);
    adView.setAdUnitId("YOUR_AD_UNIT_ID");
    adView.loadAd(new AdRequest.Builder().build());
    addView(adView);
}

}

Replace "YOUR_AD_UNIT_ID" with the actual ad unit ID from the AdMob dashboard.

2. Create a new XML layout file called "ad_layout.xml" and add the following code:
```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="wrap_content"
    android:orientation="vertical">

    <com.example.adview.AdView
        android:id="@+id/ad_view"
        android:layout_width="match_parent"
        android:layout_height="50dp" />

</LinearLayout>

Replace "com.example.adview" with the actual package name of your AdView class.

  1. In your game's main activity, inflate the ad layout and add the AdView instance:

    public class DesertHunterActivity extends AppCompatActivity {
    private AdView adView;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.ad_layout);
    
        adView = (AdView) findViewById(R.id.ad_view);
    }
    }

    Step 4: Testing and troubleshooting AdMob ads

To test and troubleshoot AdMob ads, follow these steps:

  1. Run your game on a physical device or emulator.
  2. Verify that the ad is displayed correctly and loads properly.
  3. Check the AdMob dashboard for ad impressions and clicks.
  4. Troubleshoot any issues that arise, such as ad blocking or errors.

Step 5: Optimizing AdMob ads for maximum revenue

To optimize AdMob ads for maximum revenue, follow these steps:

  1. Check the AdMob dashboard for ad performance metrics, such as CTR (click-through rate) and eCPM (effective cost per thousand impressions).
  2. Adjust ad placements and ad formats to optimize ad performance.
  3. Experiment with different ad creative assets, such as images and videos.
  4. Consider using AdMob's advanced features, such as rewarded videos and interstitial ads.

By following these steps, you can successfully integrate AdMob into your DesertHunter game and start monetizing your game. Remember to regularly check the AdMob dashboard for ad performance metrics and adjust your ad strategy accordingly to optimize revenue.

Settings Example

AdMob App Id

In your manifest.xml file, set the AdMob app id:

<string name="ADMOB_APP_ID">ca-app-pub-3940256099942544/6300974914</string>

AdMob Interstitial Banner

In your androidManifest.xml file, add the interstitial ad banner:

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

And in your Activity file, setup the interstitial ad:

AdRequest adRequest = new AdRequest.Builder().build();
InterstitialAd interstitial = new InterstitialAd(getActivity(), "ca-app-pub-3940256099942544/6300974914");
interstitial.loadAd(adRequest);

Rewarded Video

In your androidManifest.xml file, add the Rewarded Video:

<activity
    android:name="com.google.android.gms.ads.rewardvideo.RewardBasedVideoActivty"
    android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
    android:theme="@style/Themes.AppCompat.Light.NoActionBar" />

And in your Activity file, set up the Rewarded Video:

private RewardedVideoAd rewaredVideoAd;

if (rewardedVideoAd.isLoaded()) {
  rewardedVideoAd.show(); // Show the Rewarded Video
} else {
  rewardedVideoAd.loadAd("ca-app-pub-3940256099942544/5343968744",new AdRequest.Builder().build());
}

AdMob Request Settings

In your Activity file, set up AdMob request settings:

private AdView adView;

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

adView.loadAd(adRequest);

Note: Replace ca-app-pub-3940256099942544/6300974914, ca-app-pub-3940256099942544/5343968744 with your actual AdMob app Id and ad unit Id

Here is the summary of featured in DesertHunter - Android Game with AdMob:

Features:

  • Made with Unity
  • AdMob Banner integrated for display ads
  • AdMob Interstitial integrated for full-screen ads
  • Social sharing integrated to share high scores with friends
  • Responsive UI for flexible design
  • Simple graphics with a focus on ease of use
  • Custom Game LOGO Icon to give the game a distinct look
  • Clean and optimized C# scripts
  • Background music and sound effects to enhance gameplay

Credits:

  • Character Art from Freegameassets.blogspot.com
  • Background music from OpenGameArt.org (DX Rave)
DesertHunter – Android Game with AdMob
DesertHunter – Android Game with AdMob

$18.00

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