1 00:00:02,270 --> 00:00:08,150 So now we had a detailed look at the React Native debugging experience, at the React Native debugger 2 00:00:08,150 --> 00:00:15,260 and the different tools you have for finding and fixing errors, for analyzing your user interface, your component tree 3 00:00:15,590 --> 00:00:17,420 and so on. 4 00:00:17,420 --> 00:00:24,530 Now there's one type of error which I mentioned which is the so-called unavoidable error, for example 5 00:00:24,560 --> 00:00:30,440 that you're sending a network request and you can't guarantee that your users have a network connection 6 00:00:30,560 --> 00:00:37,430 or for example that the server is online. We'll handle such errors later, specifically when we do start sending 7 00:00:37,430 --> 00:00:42,380 network requests because there, we'll simply have a better example for when we need that 8 00:00:42,380 --> 00:00:48,320 and there, you will learn how you can handle these unavoidable errors too. With the knowledge you gained 9 00:00:48,320 --> 00:00:54,440 in this module, you hopefully have a solid set of tools to build applications where you are able to find 10 00:00:54,440 --> 00:00:59,300 and fix errors because you will always encounter errors when you're writing code, 11 00:00:59,300 --> 00:01:00,770 there is no way around that.