0.7.4 • Published 5 years ago

react-native-get-ssaid v0.7.4

Weekly downloads
7
License
MIT
Repository
github
Last release
5 years ago

react-native-get-ssaid

Very simple Module to get the SSAID (or Android ID) on android. To read more about SSAID and the changes since android O refer to this blogpost.

Getting started

$ npm install react-native-get-ssaid --save

Mostly automatic installation

$ react-native link react-native-get-ssaid

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-get-ssaid and add RNReactNativeGetSsaid.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNReactNativeGetSsaid.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNReactNativeGetSsaidPackage; to the imports at the top of the file
  • Add new RNReactNativeGetSsaidPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-get-ssaid'
    project(':react-native-get-ssaid').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-get-ssaid/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-get-ssaid')

Windows

Read it! :D

  1. In Visual Studio add the RNReactNativeGetSsaid.sln in node_modules/react-native-get-ssaid/windows/RNReactNativeGetSsaid.sln folder to their solution, reference from their app.
  2. Open up your MainPage.cs app
  • Add using React.Native.Get.Ssaid.RNReactNativeGetSsaid; to the usings at the top of the file
  • Add new RNReactNativeGetSsaidPackage() to the List<IReactPackage> returned by the Packages method

Usage

import RNReactNativeGetSsaid from 'react-native-get-ssaid';

// TODO: What to do with the module?
RNReactNativeGetSsaid.getID().then(
    id => console.log(id)
  ).catch(
    err => console.log(err)
  );

License

This code is under MIT license and opened for contribution! Author is Michael Raring.