A simple wrapper for Smart Lock authentication of Google for React Native. Only for Android.
npm install react-native-smartlockA simple wrapper for Smart Lock authentication of Google for React Native. Only for Android.
#Installation
$ npm install react-native-smartlock --save
##### android/app/build.gradle
Add the project to your dependencies
``gradle`
dependencies {
...
compile project(':react-native-smartlock')
}
##### android/settings.gradle
Add the project
`gradle`
include ':react-native-smartlock'
project(':react-native-smartlock').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-smartlock/android')
##### MainApplication.java
Add:
1. import com.google.smartlock.smartlockrn.SmartLockPackager;
2. In the getPackages() method register the module:new SmartLockPackager(MainApplication.this)
So getPackages() should look like:
`java`
@Override
protected List
return Arrays.
new MainReactPackage(),
new SmartLockPackager(MainApplication.this),
//.....
);
}
`javascript`
import smartLock from 'react-native-smartlock';
`javascript
smartLock.getCredentials()
.then(credentials => {
console.log(credentials);
// user has permissions
})
.catch(err => {
console.log(err);
// user doesn't have permissions or cancelled login
});
``