1.3.1 • Published 5 years ago

cordova-plugin-jb-umenganalytics v1.3.1

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

cordova-plugin-jb-umenganalytics- 快速集成友盟统计的插件

##Requirements

  • IOS 7 or higher

##Installation

cordova plugin add cordova-plugin-jb-umenganalytics  --variable UMENGKEYIOS=这里填写友盟key --variable UMENGKEYANDROID=这里填写友盟key

##Antention For IOS: need add some code In AppDelegate.m file:

#import "UMCommonModule.h" #import <UMCommon/UMCommon.h> #import <UMAnalytics/MobClick.h>

@implementation AppDelegate

For Android: need add some code In AppDelegate.m file: import com.umeng.analytics.MobclickAgent; import com.umeng.commonsdk.UMConfigure; import com.umeng.plugin.PGCommonSDK;

@Override public void onResume() { super.onResume(); MobclickAgent.onResume(this); }

 @Override 
 protected void onPause() { 
   super.onPause(); 
   MobclickAgent.onPause(this);
} 

@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    // enable Cordova apps to be started in the background
    Bundle extras = getIntent().getExtras();
    if (extras != null && extras.getBoolean("cdvStartInBackground", false)) {
        moveTaskToBack(true);
    }

    // Set by <content src="index.html" /> in config.xml
    loadUrl(launchUrl);
    PGCommonSDK.setLogEnabled(true); 
    PGCommonSDK.init(this,"具体key","Umeng",UMConfigure.DEVICE_TYPE_PHONE,"");
    MobclickAgent.setSessionContinueMillis(1000);
    MobclickAgent.setScenarioType(this, MobclickAgent.EScenarioType.E_DUM_NORMAL);
}

##LICENSE

The MIT License (MIT)

Copyright (c) 2018 xiaoyuzheng

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.3.1

5 years ago

1.3.0

5 years ago

1.2.1

5 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago