-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
If the app is installed on a phone according to the source code, there is data collected and you are not able to turn this off unless you know the password hidden in the source code!!! At the moment the password is: "JuIGZxo0Na" (without "). You can find it in
/lib/pages/dashboard/settings/DeveloperOptions.dart in line 121.
Here is the code block:
'title': 'analysis code',
'actionText': 'enter',
'action': () async {
TextEditingController _controller = new TextEditingController();
showDialog(
context: context,
builder: (context) => AlertDialog(
backgroundColor: Theme.of(context).scaffoldBackgroundColor,
title: Text('enter analisis code'),
content: Container(
alignment: Alignment.center,
height: 100,
child: InputField(
controller: _controller,
labelText: 'analisis code',
),
),
actions: [
Button(
text: 'enter',
onPressed: () async {
SharedPreferences prefs =
await SharedPreferences.getInstance();
if (_controller.text == 'JuIGZxo0Na') {
prefs.setBool('analisis', false);
Fluttertoast.showToast(msg: 'no analisis anymore');
} else {
Fluttertoast.showToast(msg: 'incorrect code');
}
Navigator.pop(context);
},
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels