1 00:00:02,310 --> 00:00:07,380 In this course, we obviously covered a lot of the important things you need for building native apps 2 00:00:07,380 --> 00:00:12,990 with React Native - navigation, state management, how React Native works in general, how to work with components 3 00:00:12,990 --> 00:00:14,060 and so on. 4 00:00:14,070 --> 00:00:21,360 Now one thing we haven't used that much though and that's tapping into native device features. Obviously 5 00:00:21,360 --> 00:00:24,120 for many apps you're about to build, 6 00:00:24,120 --> 00:00:30,060 you want to use features like the device camera or add Google Maps or get the user location or maybe 7 00:00:30,060 --> 00:00:35,940 store some data, some more complex data on the device and therefore, you need an on device database like 8 00:00:35,940 --> 00:00:37,260 SQLite. 9 00:00:37,290 --> 00:00:41,660 So these are things which we haven't really had a look at in this course yet 10 00:00:41,880 --> 00:00:47,400 and we'll have a look in this module therefore. In this module in detail, we'll dive into how you can 11 00:00:47,490 --> 00:00:53,500 easily enable such native functionalities in your React Native app built with expo 12 00:00:53,610 --> 00:00:59,070 and by the way, just in case you are worrying, in a separate module later, I will also show how that would 13 00:00:59,070 --> 00:01:01,150 work in non-expo apps 14 00:01:01,170 --> 00:01:05,820 so that you really know how to build any app with any toolset that you want. 15 00:01:05,820 --> 00:01:10,640 So with that, let's see what we're about to build in this module before we then dive right in.