Bonjour,
J'ai un problème au niveau de MainActivity.java
A chaque fois que je teste le jeux, au lieu d'afficher les pubs d'Admob, il affiche le message d'erreur qui doit être afficher si les pubs ne sont pas chargées.
ci-dessous le contenu de MainActivity.java :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
 
package com.HopefulTech;
 
import org.cocos2d.layers.CCScene;
import org.cocos2d.nodes.CCDirector;
import org.cocos2d.opengl.CCGLSurfaceView;
 
import com.google.android.gms.ads.MobileAds;
import com.google.android.gms.ads.AdListener;
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 android.app.Activity;
import android.content.SharedPreferences;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.support.v4.view.ViewPager.LayoutParams;
import android.util.DisplayMetrics;
import android.view.KeyEvent;
import android.widget.RelativeLayout;
import android.widget.Toast;
 
public class MainActivity extends Activity {
 
	private CCGLSurfaceView mGLSurfaceView;
 
	//<!-- Admob Ads Using Google Play Services SDK -->
	private static final String AD_UNIT_ID = "ca-app-pub-3940256099942544/6300978111";
	private static final String AD_INTERSTITIAL_UNIT_ID = "ca-app-pub-3940256099942544/1033173712";
 
 
	/** The Admob ad. */
	private InterstitialAd interstitialAd;
	public AdView adView;
 
	public static MainActivity app;
 
	public void onCreate(Bundle savedInstanceState)
	{
		app = this;
 
		super.onCreate(savedInstanceState);
 
		// set view
		mGLSurfaceView = new CCGLSurfaceView(this);
 
				//Ads ----------------
		// Create the adView
 		RelativeLayout layout = new RelativeLayout(this);
 		layout.setLayoutParams(new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
 
		MobileAds.initialize(this,"ca-app-pub-3940256099942544~3347511713");
 
 		//<!-- Ads Using Google Play Services SDK -->
 		adView = new AdView(this);
 	    adView.setAdSize(AdSize.SMART_BANNER);
 	    adView.setAdUnitId(AD_UNIT_ID);
 
 		// Add the adView to it
 		RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
 				LayoutParams.WRAP_CONTENT,
 				LayoutParams.WRAP_CONTENT);
 		params.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, RelativeLayout.TRUE);
 		params.addRule(RelativeLayout.CENTER_HORIZONTAL, RelativeLayout.TRUE);
 
 		adView.setLayoutParams(params);
 
 		layout.addView(mGLSurfaceView);
 		layout.addView(adView);
 
 		setContentView(layout);
 		//New AdRequest 
 		AdRequest adRequest = new AdRequest.Builder().build();
 		adView.loadAd(adRequest);
 		//-----------------------------------------------------Interstitial Add
 		// Create an Interstitial ad.
 	    interstitialAd = new InterstitialAd(this);
 	    interstitialAd.setAdUnitId(AD_INTERSTITIAL_UNIT_ID);
		interstitialAd.setAdListener(new AdListener() {
 		      @Override
 		      public void onAdLoaded() {
 		  	    interstitialAd.show();
 		      }
 
 		      @Override
 		      public void onAdFailedToLoad(int errorCode) {
 		    	  Toast.makeText(getApplicationContext(), "Interstitial Ads loading failed", Toast.LENGTH_SHORT).show();
 		      }
 		});
 		 // Load the interstitial ad.
 	    showInterstitialAds();
 
 		//----------------------
		// set director
		CCDirector director = CCDirector.sharedDirector();
		director.attachInView(mGLSurfaceView);
		director.setAnimationInterval(1/60);
 
		// get display info
		DisplayMetrics displayMetrics = new DisplayMetrics();
		getWindowManager().getDefaultDisplay().getMetrics(displayMetrics);
		G.display_w = displayMetrics.widthPixels;
		G.display_h = displayMetrics.heightPixels;
		G.scale = Math.max(G.display_w/1280.0f, G.display_h/800.0f);
		G.width = G.display_w / G.scale;
		G.height = G.display_h / G.scale;
 
		// get data
		SharedPreferences sp = CCDirector.sharedDirector().getActivity().getSharedPreferences("GameInfo", 0);
		G.music = sp.getBoolean("music", true);
		G.sound = sp.getBoolean("sound", true);
 
		// create sound
		G.soundMenu = MediaPlayer.create(this, R.raw.menu);
		G.soundMenu.setLooping(true);
		G.soundGame = MediaPlayer.create(this, R.raw.game);
		G.soundGame.setLooping(true);
		G.soundCollide = MediaPlayer.create(this, R.raw.collide);
		G.soundJump = MediaPlayer.create(this, R.raw.jump);
		G.soundLongJump = MediaPlayer.create(this, R.raw.long_jump);
		G.soundSpeedDown = MediaPlayer.create(this, R.raw.speed_down);
		G.soundSpeedUp = MediaPlayer.create(this, R.raw.speed_up);
		G.soundDirection = MediaPlayer.create(this, R.raw.direction_sign);
		G.soundClick = MediaPlayer.create(this, R.raw.menu_click);
		G.soundCollect = MediaPlayer.create(this, R.raw.collect);
		G.bgSound = G.soundMenu;
 
		// show menu
        CCScene scene = CCScene.node();
        scene.addChild(new MenuLayer(true));
        director.runWithScene(scene);
    }  
 
    @Override
    public void onPause()
    {
    	if (adView != null) {
		      adView.pause();
		    }
 
        super.onPause();
        G.bgSound.pause();
        CCDirector.sharedDirector().onPause();
    }
 
    @Override
    public void onResume()
    {
        super.onResume();
 
        if (adView != null) {
	        adView.resume();
	      }
 
        if( G.music ) G.bgSound.start();
 
        CCDirector.sharedDirector().onResume();
    }
 
    @Override
    public void onDestroy()
    {
    	// Destroy the AdView.
	    if (adView != null) {
	      adView.destroy();
	    }
 
        super.onDestroy();
        G.bgSound.pause();
        CCDirector.sharedDirector().end();
    }
 
    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event)
    {
    	if( keyCode == KeyEvent.KEYCODE_BACK )
    	{
    		CCDirector.sharedDirector().onKeyDown(event);
    		return true;
    	}
		return super.onKeyDown(keyCode, event);
    }
 
    public void showInterstitialAds()
	{
		runOnUiThread(new Runnable() {
		    public void run() {
		    	 AdRequest interstitialAdRequest = new AdRequest.Builder().build();
		    	 interstitialAd.loadAd(interstitialAdRequest);
		    }
		});
	}
}
Merci pour votre aide

Cordialement
Abel