Commit 1ef6f65a by sikang

remove bugly

parent a7b029c6
...@@ -48,7 +48,7 @@ android { ...@@ -48,7 +48,7 @@ android {
ndk { ndk {
abiFilters 'armeabi-v7a'//,'arm64-v8a'//,'armeabi'//, 'arm64-v8a', 'x86' abiFilters 'armeabi-v7a'//,'arm64-v8a'//,'armeabi'//, 'arm64-v8a', 'x86'
} }
buildConfigField('String', 'BUGLY_APPID', "\"f35508ee93\"") buildConfigField('String', 'BUGLY_APPID', "\"\"")
dimension "channel" dimension "channel"
} }
......
...@@ -106,7 +106,7 @@ dependencies { ...@@ -106,7 +106,7 @@ dependencies {
compileOnly(name: 'android_spirit-20190220-2.0.0.1', ext: 'aar') compileOnly(name: 'android_spirit-20190220-2.0.0.1', ext: 'aar')
//bugly //bugly
compileOnly 'com.tencent.bugly:crashreport:3.0.0' // compileOnly 'com.tencent.bugly:crashreport:3.0.0'
api(name: 'libfbref-release', ext: 'aar') api(name: 'libfbref-release', ext: 'aar')
......
...@@ -8,7 +8,6 @@ import android.support.multidex.MultiDex; ...@@ -8,7 +8,6 @@ import android.support.multidex.MultiDex;
import android.support.multidex.MultiDexApplication; import android.support.multidex.MultiDexApplication;
import android.text.TextUtils; import android.text.TextUtils;
import com.tencent.bugly.crashreport.CrashReport;
import tech.starwin.LibConfig; import tech.starwin.LibConfig;
...@@ -45,9 +44,9 @@ public abstract class BaseApplication extends MultiDexApplication { ...@@ -45,9 +44,9 @@ public abstract class BaseApplication extends MultiDexApplication {
@Override @Override
public void onCreate() { public void onCreate() {
super.onCreate(); super.onCreate();
if (!TextUtils.isEmpty(LibConfig.BUGLY_APPID)) { // if (!TextUtils.isEmpty(LibConfig.BUGLY_APPID)) {
CrashReport.initCrashReport(getApplicationContext(), LibConfig.BUGLY_APPID, false); // CrashReport.initCrashReport(getApplicationContext(), LibConfig.BUGLY_APPID, false);
} // }
AppLanguageUtils.setLanguage(this, LibConfig.LANGUAGE); 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