|
@@ -19,6 +19,14 @@ public class InitHelper {
|
|
public static void initSdK() {
|
|
public static void initSdK() {
|
|
CrashReport.initCrashReport(Utils.getApp(), "c4d163184a", false);
|
|
CrashReport.initCrashReport(Utils.getApp(), "c4d163184a", false);
|
|
initIM();
|
|
initIM();
|
|
|
|
+ initUM();
|
|
|
|
+ //极光推送
|
|
|
|
+ //用户同意之后才初始化极光推送
|
|
|
|
+ JCollectionAuth.setAuth(Utils.getApp(), true);
|
|
|
|
+ BaseApplication.registrationId = JPushInterface.getRegistrationID(Utils.getApp());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private static void initUM(){
|
|
UMConfigure.submitPolicyGrantResult(Utils.getApp(),true);
|
|
UMConfigure.submitPolicyGrantResult(Utils.getApp(),true);
|
|
UMConfigure.preInit(Utils.getApp(), "62a8394605844627b5b0554b", "app");
|
|
UMConfigure.preInit(Utils.getApp(), "62a8394605844627b5b0554b", "app");
|
|
UMConfigure.init(
|
|
UMConfigure.init(
|
|
@@ -30,17 +38,13 @@ public class InitHelper {
|
|
);
|
|
);
|
|
//QQ官方sdk授权
|
|
//QQ官方sdk授权
|
|
Tencent.setIsPermissionGranted(true);
|
|
Tencent.setIsPermissionGranted(true);
|
|
- String FileProvider = "com.cooleshow.teacher.fileprovider";
|
|
|
|
|
|
+ String FileProvider = Utils.getApp().getPackageName()+".fileprovider";
|
|
PlatformConfig.setWeixin("wx149a928c415c137a", "d3f119b577ccacb262da153f4210174f");
|
|
PlatformConfig.setWeixin("wx149a928c415c137a", "d3f119b577ccacb262da153f4210174f");
|
|
PlatformConfig.setWXFileProvider(FileProvider);
|
|
PlatformConfig.setWXFileProvider(FileProvider);
|
|
PlatformConfig.setSinaWeibo("755965096", "8a4d2b76bbb2006e62e21ac9014435da", "http://sns.whalecloud.com");
|
|
PlatformConfig.setSinaWeibo("755965096", "8a4d2b76bbb2006e62e21ac9014435da", "http://sns.whalecloud.com");
|
|
PlatformConfig.setSinaFileProvider(FileProvider);
|
|
PlatformConfig.setSinaFileProvider(FileProvider);
|
|
PlatformConfig.setQQZone("1110018403", "fY5gof6GIYnc8Gzx");
|
|
PlatformConfig.setQQZone("1110018403", "fY5gof6GIYnc8Gzx");
|
|
PlatformConfig.setQQFileProvider(FileProvider);
|
|
PlatformConfig.setQQFileProvider(FileProvider);
|
|
- //极光推送
|
|
|
|
- //用户同意之后才初始化极光推送
|
|
|
|
- JCollectionAuth.setAuth(Utils.getApp(), true);
|
|
|
|
- BaseApplication.registrationId = JPushInterface.getRegistrationID(Utils.getApp());
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|