├── .github ├── FUNDING.yml └── workflows │ ├── lint.yml │ ├── push.yml │ └── stale.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierrc.json ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── agency │ └── flexible │ └── react │ └── modules │ └── email │ ├── EmailModule.java │ └── EmailPackage.java ├── app.plugin.js ├── index.android.js ├── index.d.ts ├── index.ios.js ├── index.js ├── package.json ├── plugin └── withEmailLink.js ├── react-native.config.js ├── src ├── android.js ├── email-exception.js └── ios.js └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: tschoffelen 2 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/agency/flexible/react/modules/email/EmailModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/android/src/main/java/agency/flexible/react/modules/email/EmailModule.java -------------------------------------------------------------------------------- /android/src/main/java/agency/flexible/react/modules/email/EmailPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/android/src/main/java/agency/flexible/react/modules/email/EmailPackage.java -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./plugin/withEmailLink"); 2 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/index.android.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/index.ios.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/package.json -------------------------------------------------------------------------------- /plugin/withEmailLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/plugin/withEmailLink.js -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/src/android.js -------------------------------------------------------------------------------- /src/email-exception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/src/email-exception.js -------------------------------------------------------------------------------- /src/ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/src/ios.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tschoffelen/react-native-email-link/HEAD/yarn.lock --------------------------------------------------------------------------------