Mycroft-Android icon indicating copy to clipboard operation
Mycroft-Android copied to clipboard

Why is it using Google Crashlytics and asking for a google services .json?

Open ghostbuster84 opened this issue 3 years ago • 1 comments

Being an open-sourced voice assistant, it should not be utilizing anything google related. I thought the whole point was to reclaim privacy, not send it back to google.

ghostbuster84 avatar Dec 17 '21 15:12 ghostbuster84

Btw I just needed to edit: Screenshot from 2022-04-24 16-54-07

For both both: build.gradle.kts

Make sure to comment out firebase / google related stuff. No sure why we need to do this in the first place. I think by default these should be commented or at least be toggled by a setting of somekind.

plugins {
	id("com.android.application")
//	id("com.google.firebase.crashlytics")
	kotlin("android")
//	id("com.google.gms.google-services")
}

And

//		classpath("com.google.gms:google-services:4.3.10")
//		classpath("com.google.firebase:firebase-crashlytics-gradle:2.8.0")

josiahls avatar Apr 24 '22 20:04 josiahls