├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── livesocialauth │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── 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 ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── liveSocialAuth-tvOS │ └── Info.plist ├── liveSocialAuth-tvOSTests │ └── Info.plist ├── liveSocialAuth.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── liveSocialAuth-tvOS.xcscheme │ │ └── liveSocialAuth.xcscheme ├── liveSocialAuth.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── liveSocialAuth │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── liveSocialAuthTests │ ├── Info.plist │ └── liveSocialAuthTests.m ├── metro.config.js ├── package.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/livesocialauth/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/java/com/livesocialauth/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/livesocialauth/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/java/com/livesocialauth/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/liveSocialAuth-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/liveSocialAuth-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/liveSocialAuth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/liveSocialAuth.xcodeproj/xcshareddata/xcschemes/liveSocialAuth-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth.xcodeproj/xcshareddata/xcschemes/liveSocialAuth-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/liveSocialAuth.xcodeproj/xcshareddata/xcschemes/liveSocialAuth.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth.xcodeproj/xcshareddata/xcschemes/liveSocialAuth.xcscheme -------------------------------------------------------------------------------- /ios/liveSocialAuth.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/liveSocialAuth.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/liveSocialAuth/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth/AppDelegate.h -------------------------------------------------------------------------------- /ios/liveSocialAuth/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth/AppDelegate.m -------------------------------------------------------------------------------- /ios/liveSocialAuth/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/liveSocialAuth/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/liveSocialAuth/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/liveSocialAuth/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth/Info.plist -------------------------------------------------------------------------------- /ios/liveSocialAuth/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuth/main.m -------------------------------------------------------------------------------- /ios/liveSocialAuthTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuthTests/Info.plist -------------------------------------------------------------------------------- /ios/liveSocialAuthTests/liveSocialAuthTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/ios/liveSocialAuthTests/liveSocialAuthTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-education/live-social-auth/HEAD/yarn.lock --------------------------------------------------------------------------------