Commit 1ef6f65a by sikang

remove bugly

parent a7b029c6
......@@ -48,7 +48,7 @@ android {
ndk {
abiFilters 'armeabi-v7a'//,'arm64-v8a'//,'armeabi'//, 'arm64-v8a', 'x86'
}
buildConfigField('String', 'BUGLY_APPID', "\"f35508ee93\"")
buildConfigField('String', 'BUGLY_APPID', "\"\"")
dimension "channel"
}
......
......@@ -106,7 +106,7 @@ dependencies {
compileOnly(name: 'android_spirit-20190220-2.0.0.1', ext: 'aar')
//bugly
compileOnly 'com.tencent.bugly:crashreport:3.0.0'
// compileOnly 'com.tencent.bugly:crashreport:3.0.0'
api(name: 'libfbref-release', ext: 'aar')
......
......@@ -8,7 +8,6 @@ import android.support.multidex.MultiDex;
import android.support.multidex.MultiDexApplication;
import android.text.TextUtils;
import com.tencent.bugly.crashreport.CrashReport;
import tech.starwin.LibConfig;
......@@ -45,9 +44,9 @@ public abstract class BaseApplication extends MultiDexApplication {
@Override
public void onCreate() {
super.onCreate();
if (!TextUtils.isEmpty(LibConfig.BUGLY_APPID)) {
CrashReport.initCrashReport(getApplicationContext(), LibConfig.BUGLY_APPID, false);
}
// if (!TextUtils.isEmpty(LibConfig.BUGLY_APPID)) {
// CrashReport.initCrashReport(getApplicationContext(), LibConfig.BUGLY_APPID, false);
// }
AppLanguageUtils.setLanguage(this, LibConfig.LANGUAGE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment