├── .editorconfig ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ └── java │ └── com │ └── google │ └── recaptchaenterprisereactnative │ ├── RecaptchaEnterpriseReactNativeModule.kt │ └── RecaptchaEnterpriseReactNativePackage.kt ├── babel.config.js ├── example ├── .bundle │ └── config ├── .detoxrc.js ├── .env.sample ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── libraries │ │ │ │ └── abuse │ │ │ │ └── recaptcha │ │ │ │ └── testapps │ │ │ │ └── integration │ │ │ │ └── DetoxTest.java │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── libraries │ │ │ │ └── abuse │ │ │ │ └── recaptcha │ │ │ │ └── testapps │ │ │ │ └── integration │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── e2e │ ├── jest.config.js │ └── starter.test.js ├── index.js ├── ios │ ├── .xcode.env │ ├── AppDelegate.swift │ ├── File.swift │ ├── Podfile │ ├── Podfile.lock │ ├── RecaptchaEnterpriseReactNativeExample-Bridging-Header.h │ ├── RecaptchaEnterpriseReactNativeExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── RecaptchaEnterpriseReactNativeExample.xcscheme │ ├── RecaptchaEnterpriseReactNativeExample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── RecaptchaEnterpriseReactNativeExample │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy │ └── RecaptchaEnterpriseReactNativeExampleTests │ │ ├── Info.plist │ │ └── RecaptchaEnterpriseReactNativeExampleTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js └── src │ └── App.tsx ├── ios ├── RecaptchaEnterpriseReactNative-Bridging-Header.h ├── RecaptchaEnterpriseReactNative.mm └── RecaptchaEnterpriseReactNative.swift ├── metro.config.js ├── package.json ├── recaptcha-enterprise-react-native.podspec ├── src ├── __tests__ │ └── index.test.tsx ├── index.tsx ├── recaptcha.tsx ├── recaptcha_action.tsx ├── recaptcha_client.tsx └── recaptcha_native.tsx ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v24 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/google/recaptchaenterprisereactnative/RecaptchaEnterpriseReactNativeModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/android/src/main/java/com/google/recaptchaenterprisereactnative/RecaptchaEnterpriseReactNativeModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/google/recaptchaenterprisereactnative/RecaptchaEnterpriseReactNativePackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/android/src/main/java/com/google/recaptchaenterprisereactnative/RecaptchaEnterpriseReactNativePackage.kt -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/.detoxrc.js -------------------------------------------------------------------------------- /example/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/.env.sample -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/androidTest/java/com/google/android/libraries/abuse/recaptcha/testapps/integration/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/androidTest/java/com/google/android/libraries/abuse/recaptcha/testapps/integration/DetoxTest.java -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/google/android/libraries/abuse/recaptcha/testapps/integration/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/java/com/google/android/libraries/abuse/recaptcha/testapps/integration/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/google/android/libraries/abuse/recaptcha/testapps/integration/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/java/com/google/android/libraries/abuse/recaptcha/testapps/integration/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/e2e/jest.config.js -------------------------------------------------------------------------------- /example/e2e/starter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/e2e/starter.test.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample.xcodeproj/xcshareddata/xcschemes/RecaptchaEnterpriseReactNativeExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample.xcodeproj/xcshareddata/xcschemes/RecaptchaEnterpriseReactNativeExample.xcscheme -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample/Info.plist -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/RecaptchaEnterpriseReactNativeExampleTests/RecaptchaEnterpriseReactNativeExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/ios/RecaptchaEnterpriseReactNativeExampleTests/RecaptchaEnterpriseReactNativeExampleTests.m -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /ios/RecaptchaEnterpriseReactNative-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/ios/RecaptchaEnterpriseReactNative-Bridging-Header.h -------------------------------------------------------------------------------- /ios/RecaptchaEnterpriseReactNative.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/ios/RecaptchaEnterpriseReactNative.mm -------------------------------------------------------------------------------- /ios/RecaptchaEnterpriseReactNative.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/ios/RecaptchaEnterpriseReactNative.swift -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/package.json -------------------------------------------------------------------------------- /recaptcha-enterprise-react-native.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/recaptcha-enterprise-react-native.podspec -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/src/__tests__/index.test.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/recaptcha.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/src/recaptcha.tsx -------------------------------------------------------------------------------- /src/recaptcha_action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/src/recaptcha_action.tsx -------------------------------------------------------------------------------- /src/recaptcha_client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/src/recaptcha_client.tsx -------------------------------------------------------------------------------- /src/recaptcha_native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/src/recaptcha_native.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/recaptcha-enterprise-react-native/HEAD/yarn.lock --------------------------------------------------------------------------------