├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── plugin.xml ├── src ├── android │ └── FirebaseAuthenticationPlugin.java └── ios │ ├── FirebaseAuthenticationPlugin.h │ └── FirebaseAuthenticationPlugin.m ├── tsconfig.json ├── types ├── FirebaseAuthentication.d.ts └── index.d.ts └── www └── FirebaseAuthentication.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/FirebaseAuthenticationPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/src/android/FirebaseAuthenticationPlugin.java -------------------------------------------------------------------------------- /src/ios/FirebaseAuthenticationPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/src/ios/FirebaseAuthenticationPlugin.h -------------------------------------------------------------------------------- /src/ios/FirebaseAuthenticationPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/src/ios/FirebaseAuthenticationPlugin.m -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/FirebaseAuthentication.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/types/FirebaseAuthentication.d.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /www/FirebaseAuthentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemerisuk/cordova-plugin-firebase-authentication/HEAD/www/FirebaseAuthentication.js --------------------------------------------------------------------------------