Appodeal ad not showing

What would be the point of that ?

I’m done for the night.

You need to publish your app before you can monetize it with AppoDeal.  So I’d do that.

Let me ask you a question, “What is the point of me or anyone else here answering forums questions (yours included)?”  

Ok but can you answer my question please ?

You wanna help

What question?

This one?

The point is that you do it for the love of doing it and to learn.  If you can’t muster the energy to do it for those reasons alone, you shouldn’t be making games.

Not quite.  I want to help people learn, because they want to learn, and learn without thought of profit.

What I don’t want to do is spend my time answering basic questions for anyone who is essentially using my time to make themselves money.

No this question .

If you really think there is no reason to work on games and apps unless you make a profit, then I have decided I no longer want to help you with this.

I have some fundamental beliefs about app/game development:  

  • A young person (just getting into this) shouldn’t be thinking about profit at all.
  • Young or old, If one wants to make games, you should be able to do so with no thought of profit.
  • If one is doing this in a professional capacity, then you should be willing to spend money and this includes paying people for their time.

I do this professionally, but I primarily make money from apps I make for others (i.e. contracting):

Most of my own works are entirely free and done purely to learn or experiment with an idea.

Most of your works ? What about the ones that aren’t free ?

@brandont264

You don’t necessarily have to have your app published on the App Store to get test ads when you are using testMode=true.
 
HOWEVER, like I mentioned in my very first reply to you, please make sure your package id you registered at Appodeal is \ *exactly * the same as the one you are using when you build your app with Corona. 
 

First of all make sure the package id of your app (Example: com.company.appname) in your Appodeal dashboard is exactly the same as what you’re using in your Corona app.

Otherwise you will not receive any test ads.

Just to be complete.

A “Bundle ID” is created in Apple’s developer portal when you create your app. This is a step you have to do before you can set up your app in iTunes Connect. Your Bundle ID should be in the form of com.yourcompanyname.yourappname. From there you have to create a provisioning profile and download it for Corona to use. Then you use that same Bundle ID at Appodeal when setting up the app with them.  

This guide will cover that process: https://docs.coronalabs.com/guide/distribution/iOSBuild/index.html

For Android you have a Package ID. This package ID should be the same as the Bundle ID in following the com.yourcompanyname.yourappname form. In the Android case, this is done though the Corona build dialog.  See this screen shot. The Package Name is the “Package Field”.

Whatever you type into the Package field is what you have to use in the Appodeal portal.

Rob

Thanks rob .

Do I really need to do the example ed showed me or can I do it the way you guys showed ?

You can do anything you want…

… but if you haven’t even verified your credentials are working with a known working example, then you have no idea if the problem is your credentials or your code.

I told you to use your credentials in the known working example because that is what a professional would do when testing.  Work from a known position and verify individual parts of the problem.

Okay I’ll try it now .

Thanks.  

This gives anyone helping you a starting point too.  

IF IT WORKS -  If you test with a known working example and your credentials check out, then they can move on to additional debug steps related to your program.

IF IT DOESN’T WORK -  If the credentials don’t work, then having access to a known working example gives the helper(s) the ability to suggest exact debug steps.

I was trying to link my admob account and appodeal account and I’ve been stuck on this screen for about 2 hours now .

No ads show at allll 

main.lua :

local appodeal = require( "plugin.appodeal" ) appodeal.init( adListener, { appKey="09e6c681ff134a85e448de94d693efa0fbbe231bca7d0e40", testMode=true} ) local function adListener( event ) if ( event.phase == "init" ) then -- Successful initialization -- Show a banner ad elseif ( event.phase == "failed" ) then -- The ad failed to load print( event.type ) print( event.isError ) print( event.response ) end end local composer = require( "composer" ) composer.gotoScene("start")

start.lua:

local appodeal = require( "plugin.appodeal" ) function scene:show(event) local sceneGroup = self.view local phase = event.phase if ( phase == "will" ) then print("show started") elseif ( phase == "did" ) then print("show showing objects") appodeal.show("interstitial") --\<-------- move this to scene:show()'s "did" phase background:addEventListener("touch", start) end end

Hello any help ?