wizdigitech's Recent Forum Activity

  • i never use c3... c2 for life but sadly i stop use it an move to other software

  • Cocoon.io shut down and is no more... And Construct 2 is next if you notice its on the same route as cocoon was doing no new updates, wish i could get back my construct 2 refund. But i think some here have something to do with it, because i find it strange how still how C3 can compile and C2 could not and how cocoon.io shut down.

    I am just thinking out loud how it sad to that cocoon.io and construct 2 die.

  • You do not have permission to view this post

  • Error from apksigner: ERROR (Jar signer gameKEY.DSA): JAR signature META-INF/gameKEY.DSA uses digest algorithm SHA-256 and signature algorithm DSA which is not supported on API Level.

    how get this error and how to sign apk now using the new upgrade key sign way.

    when i try to sign like i always do in cmd with all my app, now i am getting this error in cmd.

    private key algorithm is not compatible with signature algorithm when trying to use this new way

    jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore C:\a\lolhuuh.keystore C:\a\app-release-unsigned.apk lolkh

    the old way i always use is

    jarsigner -verbose -keystore C:\a\my.keystore -storepass pa5sksword -keypass phyassword C:\a\app-unsigned.apk lolkh

    help

  • interesting!!! who is in to make the C2 pluging

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • why we need to start treat construct 2 as a open source that we pool together to make our own update

    Cordova AdmobFree1

    https://drive.google.com/open?id=1WNe4W4FI2qVvWuuhX4ie3wi6L962GByZ

    here is what i do so far someone else jump in

  • last thing after reading the main code Google say can use for GDPR is below which i dont know how to integrate it in construct 2

    Bundle extras = new Bundle();

    extras.putString("npa", "1");

    AdRequest request = new AdRequest.Builder()

    .addNetworkExtrasBundle(AdMobAdapter.class, extras)

    .build();

    NO!!!! PLEASE DO NOT COMMENT ANYTHING HERE ABOUT BUYING CONSTRUCT 3!!!

    This post is meant for people that use Construct 2 and trying to keep it alive because Tom state they no longer go to update the C2 admob. THIS is my GDPR for this post lol.

    Press the Back button or Help to make this Admob GDRP plugin

    here is the plugin i am trying to edit

    hermitsdevelopment.blogspot.com/2016/05/construct-2-plugin-cordova-admob-free.html

  • oh we need to add the App Id field too here is one for the

    edittime.js

    var property_list = [ new cr.Property(ept_section, "Android", "", "Ad unit IDs for Android."), new cr.Property(ept_text, "App ID (Android)", "", "Application ID from admob or mopub for the banner ad."), ];

    can add this to the next 2 field Ban.... and inter.... :-)

    this is my 2 cents

  • edittime.js

    AddAction(20, af_none, "Requires data consent opt-in", "gdpr", "Requires data consent opt-in", "Calling this method will opt the current user in to using the services that you selected during process. This should be used for any services which don't provide their own opt-in dialogs. You can optionally pass in an array of service IDs to be opted into. You should only call this method after showing a clear consent dialog which contains all of the details regarding consent required by the affected SDKs.", "requiresDataConsentOptIn" ); AddStringParam("SDKs list", "JSON Array of SDK IDs, e.g. \"[\"\"appodeal\"\", \"\"admob\"\"]\" (optional).", '""'); AddAction(21, af_none, "Service terms opt-in", "gdpr", "Service terms opt-in", "Calling this method will opt the current user in to using the services that you selected during process. This should be used for any services which don't provide their own opt-in dialogs. You can optionally pass in an array of service IDs to be opted into. You should only call this method after showing a clear consent dialog which contains all of the details regarding consent required by the affected SDKs.", "serviceTermsOptIn" ); AddStringParam("SDKs list", "JSON Array of SDK IDs, e.g. \"[\"\"appodeal\"\", \"\"admob\"\"]\" (optional).", '""') AddAction(22, af_none, "Show service opt-in dialogs", "gdpr", "Show service opt-in dialogs", "This method will instruct any services which contain built-in opt-in dialogs to display them. process will inform you about which services allow this type of opt-in. Using SDKs with built-in dialogs is the easiest way to ask your users whether they'd like to opt-in.", "showServiceOptInDialogs" ); AddAction(23, af_none, "Service terms opt-out", "gdpr", "Service terms opt-out", "This explicit opt-out will instruct any gdpr compliant services that you're using that the user has specifically declined an opt-in to their data collection and processing. It can also be used to revert a previous opt-in decision by the user - if the user chooses to revoke their consent.", "serviceTermsOptOut" );

    runtime.js

    Acts.prototype.requiresDataConsentOptIn = function() { if(typeof self["CordovaAdmobFree"] === "undefined") { console.log(this.warningMsg); return; } var resultCb = function(resultBool) { window.CordovaAdmobFreePluginInstance.optInRequired = resultBool; window.CordovaAdmobFreePluginRuntime.trigger(cr.plugins_.CordovaAdmobFreeIncConstructPlugin.prototype.cnds.onServiceOptInRequirement, window.CordovaAdmobFreePluginInstance); }; self["CordovaAdmobFree"]["requiresDataConsentOptIn"](resultCb); }; Acts.prototype.serviceTermsOptIn = function(sdksJson) { if(typeof self["CordovaAdmobFree"] === "undefined") { console.log(this.warningMsg); return; } if(typeof sdksJson === "string" && sdksJson.length > 0) { self["CordovaAdmobFree"]["serviceTermsOptIn"](JSON.parse(sdksJson)); } else { self["CordovaAdmobFree"]["serviceTermsOptIn"](); } }; Acts.prototype.showServiceOptInDialogs = function(sdksJson) { if(typeof self["CordovaAdmobFree"] === "undefined") { console.log(this.warningMsg); return; } var resultCb = function() { window.CordovaAdmobFreePluginRuntime.trigger(cr.plugins_.CordovaAdmobFreeIncConstructPlugin.prototype.cnds.onDialogComplete, window.CordovaAdmobFreePluginInstance); }; if(typeof sdksJson === "string" && sdksJson.length > 0) { self["CordovaAdmobFree"]["showServiceOptInDialogs"](JSON.parse(sdksJson), resultCb) } else { self["CordovaAdmobFree"]["showServiceOptInDialogs"](null, resultCb); } }; Acts.prototype.serviceTermsOptOut = function() { if(typeof self["CordovaAdmobFree"] === "undefined") { console.log(this.warningMsg); return; } self["CordovaAdmobFree"]["serviceTermsOptOut"](); };

  • Since we construct 2 user scirra, cocoon. io etc leave us to suffer with this GDPR let us pool together and make our own Admob Plugin.

    Josek5494 i hope you dont mind letting us try to advance your plugin or

    if anyone want to make it from new

    Here is my edit version of the plugin so far guys...

    Cordova AdmobFree1

    https://drive.google.com/open?id=1WNe4W4FI2qVvWuuhX4ie3wi6L962GByZ

  • Quick question which is better that give more download Play Store or App Store?

    android or ios with admob which generate more money for you?

    Last year i only make £500 from android do you think i should buy a macbook to publish to ios?

  • Most Download Guys better than word search dlp

    Word Search US

wizdigitech's avatar

wizdigitech

Member since 13 Dec, 2015

Twitter
wizdigitech has 1 followers

Connect with wizdigitech

Trophy Case

  • 8-Year Club
  • Coach One of your tutorials has over 1,000 readers
  • Email Verified

Progress

10/44
How to earn trophies