Search Unity

Color Swipe - Complete project ready to use

Discussion in 'Assets and Asset Store' started by ababab5, Jan 11, 2016.

  1. Yosry

    Yosry

    Joined:
    Dec 27, 2013
    Posts:
    13
    i don't need any customization. all i need is to use images instead of colors.
     
  2. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
    You have to customize the code.

    Instead of colors, you have to use sprites.

    It's pretty easy if you have a look to the comments
     
  3. Yosry

    Yosry

    Joined:
    Dec 27, 2013
    Posts:
    13
    i try. but it's not easy. can you help Please ?
     
  4. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
    ok but send me an email please on the link I gave to you..
     
  5. Yosry

    Yosry

    Joined:
    Dec 27, 2013
    Posts:
    13
    ok. send it.
    thank you so much for your help
     
  6. leonard2016

    leonard2016

    Joined:
    Feb 10, 2016
    Posts:
    1
    The new ads framework doesn't work! I replaced my existing code(V1.0.2) with the ads framework in V1.0.6. The app keeps showing interstitial ads every time game over, ignoring the number of game over times to show ads. How to fix it?
     
  7. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
    Use this code to do it:

    Code (CSharp):
    1. public int numberOfPlayToShowInterstitial = 5;
    2. public string VerySimpleAdsURL = "http://u3d.as/oWD";
    3. public void ShowAds()
    {
        int count = PlayerPrefs.GetInt("GAMEOVER_COUNT",0);
        count++;

        #if APPADVISORY_ADS
        if(count > numberOfPlayToShowInterstitial && AdsManager.instance.IsReadyInterstitial())
        {
        PlayerPrefs.SetInt("COUNT_ADS",0);
        AdsManager.instance.ShowInterstitial();
        }
        else
        {
        PlayerPrefs.SetInt("COUNT_ADS", count);
        }
        PlayerPrefs.Save();
        #else
        if(count >= numberOfPlayToShowInterstitial)
        {
            Debug.LogWarning("To show ads, please have a look to 'Very Simple Ads' on the Asset Store, or go to this link: " + VerySimpleAdsURL);
            Debug.LogWarning("'Very Simple Ads' is already implemented in this asset");
            Debug.LogWarning("Just import the package and you are ready to use it and monetize your game!");
            Debug.LogWarning("'Very Simple Ad' : " + VerySimpleAdsURL);
            PlayerPrefs.SetInt("GAMEOVER_COUNT",0);
        }
        else
        {
            PlayerPrefs.SetInt("GAMEOVER_COUNT", count);
        }
        PlayerPrefs.Save();
        #endif

    }



    I use this code in my game available on the App Store...
     
    musikito likes this.
  8. musikito

    musikito

    Joined:
    Feb 8, 2016
    Posts:
    15
    Hi there guys, I have almost published this on the Apple store(waiting for the icon), but when I try to run it on an Android device, it hangs when trying to show the interstitial ad, also the AdMob banner never shows.
    This is on a real Android device. On Iphone,Ipad it works.
     
  9. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
    Hi,

    Without logs, I can't help you :(

    Could you please send your request here: appadvisory.zendesk.com

    Thanks!
     
  10. musikito

    musikito

    Joined:
    Feb 8, 2016
    Posts:
    15
    How do I get the logs from the device, is not showing anything on the unity console.
     
  11. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
  12. musikito

    musikito

    Joined:
    Feb 8, 2016
    Posts:
    15
    No need to be condescending.o_O
    This is what I got:
    03-28 16:30:14.112 7137-7137/com.martechmedia.canicas E/GMPM: GoogleService failed to initialize, status: 10, Missing an expected resource: 'R.string.google_app_id' for initializing Google services. Possible causes are missing google-services.json or com.google.gms.google-services gradle plugin.
    03-28 16:30:14.112 7137-7137/com.martechmedia.canicas E/GMPM: Scheduler not set. Not logging error/warn.
    03-28 16:30:14.142 7137-7441/com.martechmedia.canicas E/GMPM: Uploading is not possible. App measurement disabled
    03-28 16:30:14.811 7137-7137/com.martechmedia.canicas E/OpenGLRenderer: GL_INVALID_OPERATION
    03-28 16:30:14.831 7137-7137/com.martechmedia.canicas E/OpenGLRenderer: GL_INVALID_OPERATION
    03-28 16:30:14.901 7137-7137/com.martechmedia.canicas E/OpenGLRenderer: GL_INVALID_OPERATION
    And here is a video of the crash:
    https://www.dropbox.com/s/5lhxzvfgv1pwq8u/device-2016-03-28-162742.mp4?dl=0
     
  13. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
    I'm not!
    I'm joking that's all. It's the week end, I'm answering to you in a minute, just say "thank you" it's enough!

    I saw you video I don't see any crash but an issue after displaying the rating popup.

    Is it your issue? Or I missed something?

    To continue please contact me on my email: contact[at]app-advisory.com

    We will fix it I'm promess but I need to understand what is your issue.

    Thanks!
     
  14. musikito

    musikito

    Joined:
    Feb 8, 2016
    Posts:
    15
    The problem is that it doesn't show the ads(banner, interstitial, etc) and about the fifth time the game re-start this what happens, hangs/crash and it wont show anything and don't le me do anything. just that background and nothing else.
    I've tried numerous times and with a fresh install from the asset store with no plugins.

    This only happens on Android device, on IPhone/IOS works like a charm.

    Thank you.
     
  15. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
    It seems you have an issue with your ID.

    I can't publish more information in public gère for obvious reasons, I will send you some code to test but write me please on the email I gave you.

    It's midnight here I will fix it with you tomorrow.

    Thanks a lot!
     
  16. musikito

    musikito

    Joined:
    Feb 8, 2016
    Posts:
    15
    I think the problem is with Chartboost. If I disable it and run it everything is OK. you might want to check that.
     
  17. musikito

    musikito

    Joined:
    Feb 8, 2016
    Posts:
    15
    This work like a charm for me....:cool:
     
    ababab5 likes this.
  18. aivenblu

    aivenblu

    Joined:
    Apr 22, 2016
    Posts:
    2
    Hi , i just bought the game template , after i hit download and explore whats inside the package , there is no ads manager ( ADS FOLDER )inside . Can you tell me where the ads manager ( very simple ads )is ?
     
    Last edited: Apr 23, 2016
  19. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
    Hi,

    If you bought it, you have a pop up to get Very Simple Ads.

    If you read the description, you have a link.

    If you search in the Asset Store, you can find it.


    Anyway my friend, here you are (copy and paste of the asset store description):

    MONETIZATION - MEDIATION with VERY SIMPLE ADS

    [you need VERY SIMPLE ADS to use it]


    Very Simple Ads is ready to use in this asset.
    You can monetize this game with our Very Simple Ads.
    Everything is already coded for you!





    Cheers!
     
  20. aivenblu

    aivenblu

    Joined:
    Apr 22, 2016
    Posts:
    2
    You need my invoice from unity asset store to verify it ? and i said it comes with the simple ads , i just dont ' see the ads Folder after i download it from the Asset store .
     
  21. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
    Please delete the previous image and send her PDF on my website : appadvisory.zendesk.com


    And yes Very Simple Ads is implemented but you have to buy it on the asset store.


    Cheers
     
  22. Ludo-Productions

    Ludo-Productions

    Joined:
    Jul 30, 2013
    Posts:
    8
    Hi, i've contacted you trough e-mail and told me to ask you here for the "very simple ads", can i got help?
     
  23. ababab5

    ababab5

    Joined:
    Apr 15, 2014
    Posts:
    508
    Hi,

    And you received an email who told you we answered under 1 - 2 working days.

    Don't need to send a message here to have an answer, really.

    Thanks.

    Best regards,

    Gab