0.0.8 • Published 9 years ago
react-native-android-last-known-location v0.0.8
react-native-android-last-known-location
Getting started
$ npm install react-native-android-last-known-location --save
Mostly automatic installation
$ react-native link react-native-android-last-known-location
Manual installation
iOS
Not supported.
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNLastKnownLocation;to the imports at the top of the file - Add
new RNLastKnownLocation()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':react-native-android-last-known-location' project(':react-native-android-last-known-location').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-android-last-known-location/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-android-last-known-location')