0.0.8 • Published 8 years ago

react-native-android-last-known-location v0.0.8

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

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

  1. 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 the getPackages() method
  1. 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')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-android-last-known-location')