本文共 2129 字,大约阅读时间需要 7 分钟。
buildscript { repositories { jcenter() } ...... } allprojets { repositories { jcenter() }}
android { ...... defaultConfig { applicationId "com.xxx.xxx" //JPush上注册的包名. ...... ndk { //选择要添加的对应cpu类型的.so库。 abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a' // 还可以添加 'x86', 'x86_64', 'mips', 'mips64' } manifestPlaceholders = [ JPUSH_PKGNAME : applicationId, JPUSH_APPKEY : "你的appkey", //JPush上注册的包名对应的appkey. JPUSH_CHANNEL : "developer-default", //暂时填写默认值即可. ] ...... } ...... } dependencies { ...... compile 'cn.jiguang.sdk:jpush:3.1.1' // 此处以JPush 3.1.1 版本为例。 compile 'cn.jiguang.sdk:jcore:1.1.9' // 此处以JCore 1.1.9 版本为例。 ......}
NDK integration is deprecated in the current plugin. Consider trying the new experimental plugin
android.useDeprecatedNdk=true
public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); // 开启Debug模式 JPushInterface.setDebugMode(true); // 初始化SDK JPushInterface.init(this); }}
转载地址:http://cztkx.baihongyu.com/