Skip to content

Commit 049f6fe

Browse files
committed
šŸ› fix Massiv bug that crash when login because Contact package is deprecated on Android
1 parent ea9d285 commit 049f6fe

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

ā€Žclient/lib/main.dart

+8-9
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,14 @@ void main() async {
2121
else
2222
await Firebase.initializeApp(
2323
options: FirebaseOptions(
24-
apiKey: "AIzaSyBQ68_qY1qYrYvXalCrrbXZwgB5NlZJ94w",
25-
authDomain: "threads-instagram.firebaseapp.com",
26-
databaseURL:
27-
"https://threads-instagram-default-rtdb.firebaseio.com",
28-
projectId: "threads-instagram",
29-
storageBucket: "threads-instagram.appspot.com",
30-
messagingSenderId: "799971967226",
31-
appId: "1:799971967226:web:122c3ae661013c38d50943",
32-
measurementId: "G-J8Y7QJK62L"));
24+
apiKey: "",
25+
authDomain: "",
26+
databaseURL: "",
27+
projectId: "",
28+
storageBucket: "",
29+
messagingSenderId: "",
30+
appId: "",
31+
measurementId: ""));
3332
setupDependencies();
3433
final sharedPreferences = await SharedPreferences.getInstance();
3534
runApp(MyApp(

0 commit comments

Comments
Ā (0)