getting "Error contacting server" when licensing.init( "google" ) ?

getting “Error contacting server” when licensing.init( “google” ) ???

I had just run my test app on my Android device and it was working fine re “licensing.init( “google” )”.  Then I rebuilt it with no changes just to make sure I was on the latest build.   I now get the “Error contacting server” each time now, as if in recent times there has been a bug introduced.   

Is anyone else getting this error?  

My test output & test code I used:

I/Corona &nbsp;( 5119): . V/Corona &nbsp;( 5119): \> Class.forName: network.LuaLoader V/Corona &nbsp;( 5119): \< Class.forName: network.LuaLoader V/Corona &nbsp;( 5119): Loading via reflection: network.LuaLoader V/Corona &nbsp;( 5119): \> Class.forName: CoronaProvider.licensing.google.LuaLoader V/Corona &nbsp;( 5119): \< Class.forName: CoronaProvider.licensing.google.LuaLoader V/Corona &nbsp;( 5119): Loading via reflection: CoronaProvider.licensing.google.LuaLoader I/Corona &nbsp;( 5119): WARNING: licensing.init() was already called for google. I/Corona &nbsp;( 5119): . I/Corona &nbsp;( 5119): . I/Corona &nbsp;( 5119):&nbsp; I/Corona &nbsp;( 5119): Called licensing.verify I/Corona &nbsp;( 5119): . I/Corona &nbsp;( 5119): licensingListener - start I/Corona &nbsp;( 5119):&nbsp; I/Corona &nbsp;( 5119): isError = true I/Corona &nbsp;( 5119): isVerified = false I/Corona &nbsp;( 5119): name = licensing I/Corona &nbsp;( 5119): errorType = network I/Corona &nbsp;( 5119): provider = google I/Corona &nbsp;( 5119): expiration = 0 I/Corona &nbsp;( 5119): expansionFiles = table: 0x2462c8 I/Corona &nbsp;( 5119): response = Error contacting server I/Corona &nbsp;( 5119): . &nbsp;

local widget = require( "widget" ) display.setStatusBar( display.HiddenStatusBar ) -- Status Text local text = display.newText("About to Call Google Play", 0, 0, display.contentWidth, display.contentHeight, native.systemFont, 20 ) text:setTextColor(255, 0, 0) function updateDisplay(newText) &nbsp;&nbsp;&nbsp;&nbsp;text.text = text.text .. newText &nbsp;&nbsp;&nbsp;&nbsp;print(newText) end local function licensingListener( event ) &nbsp;&nbsp;&nbsp;&nbsp;updateDisplay("licensingListener - start") &nbsp;&nbsp;&nbsp;&nbsp;updateDisplay("\n") &nbsp;&nbsp;&nbsp;&nbsp;for k,item in pairs(event) do &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;updateDisplay(k .. " = " .. tostring(item) .. "\n") &nbsp;&nbsp;&nbsp;&nbsp;end end -- Call Google&nbsp; local licensing = require( "licensing" ) licensing.init( "google" ) -- Status Indicator Updating timer.performWithDelay( &nbsp;&nbsp;&nbsp;&nbsp;2000,&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;function(event) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;updateDisplay(".") &nbsp;&nbsp;&nbsp;&nbsp;end, &nbsp;&nbsp;&nbsp;&nbsp;0 ) -- Button to Initiate local myButton = widget.newButton { &nbsp; &nbsp; left = 10, &nbsp; &nbsp; top = display.contentHeight \* 0.8, &nbsp; &nbsp; width = display.contentWidth - 20, &nbsp; &nbsp; height = display.contentHeight \* 0.2, &nbsp; &nbsp; id = "button\_1", &nbsp; &nbsp; label = "Push to Initiate Verify", &nbsp; &nbsp; onRelease = function(event) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;licensing.verify( licensingListener ) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;updateDisplay("\nCalled licensing.verify") &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;end } &nbsp;

PS  Same with Version 2013.1215 (2013.9.25) also.

BTW - My licensed test response in Google Play is set to RESPOND_NORMALLY

update - working now  (doh)   not sure why it failed after I rebuilt but now works.  Perhaps server just happened to be down then, perhaps something to do with time to synch out latest version of app(?)…

PS  Same with Version 2013.1215 (2013.9.25) also.

BTW - My licensed test response in Google Play is set to RESPOND_NORMALLY

update - working now  (doh)   not sure why it failed after I rebuilt but now works.  Perhaps server just happened to be down then, perhaps something to do with time to synch out latest version of app(?)…