Im trying to get adb logcat working but it doesnt work.
I can add that neverStripDebugInfo thing and send you the apk.
I have this in my main.lua file:
local composer = require "composer" local ssk = require "ssk2.loadSSK" ssk.init() local json = require("json") local loadsave = require("loadsave") local main\_variables=loadsave.loadTable( "main\_variables.json" ) if main\_variables.reset == nil then main\_variables = {} main\_variables.highscore = 0 main\_variables.score = 0 main\_variables.lastscore = 0 main\_variables.score\_start=0 main\_variables.reset=nil --main\_varriable.reset is set to 1 in game file. loadsave.saveTable( main\_variables, "main\_variables.json" ) end local appodeal = require( "plugin.appodeal" ) local function adListener( event ) if ( event.phase == "init" ) then -- Successful initialization print( event.isError ) appodeal.show( "banner", {yAlign="top", placement="bannerPlacement"} ) appodeal.load( "rewardedVideo", {placement="rewardPlacement"} ) appodeal.load( "interstital", {placement="intPlacement"} ) end end -- Initialize the Appodeal plugin appodeal.init( adListener, { appKey="notShowing" } ) composer.gotoScene( "maker" )
Anything wrong there?