cocos2d-x / plugin-x

Plugin-x is the plugin repository for cocos2d-x, it also provides a unified API for plugins.
71 stars 91 forks source link

how to add Countly SDK for Cocos2d-x plugin-x #161

Open shadow0162 opened 9 years ago

shadow0162 commented 9 years ago

I finished countly sdk for plug-x.But there is a problem to pull request. In Plugin-x HelloPlugins project, having two analytics sdks support.However, they're separated by local language.

    if (LanguageType::CHINESE == langType)
    {
        pluginName = "AnalyticsUmeng";
        strAppKey = umengKey;
    }
    else
    {
        pluginName = "AnalyticsFlurry";
        strAppKey = flurryKey;
    }

Countly is an innovative, real-time, open source mobile analytics and push notifications platform. it's can develop by self-host on any language.

please let know , how to add countly sample code?so i can pull request?