├── .babelrc ├── .buckconfig ├── .env.example ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── hooligram.keystore.example │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── hooligram │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_hooligram_blue.png │ │ ├── ic_hooligram_white.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_hooligram_blue.png │ │ ├── ic_hooligram_white.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_hooligram_blue.png │ │ ├── ic_hooligram_white.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_hooligram_blue.png │ │ ├── ic_hooligram_white.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_hooligram_blue.png │ │ ├── ic_hooligram_white.png │ │ ├── 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 ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── app ├── App.js ├── actions │ ├── app.js │ ├── authorization.js │ ├── group.js │ ├── index.js │ ├── messaging.js │ ├── navigation.js │ └── websocket.js ├── components │ ├── ActionBar.js │ ├── ActivityIndicator.js │ ├── Circle.js │ ├── ContactSnippet.js │ ├── DirectMessageSnippet.js │ ├── Input.js │ ├── MessageCloud.js │ ├── MessageGroupSnippet.js │ ├── NavigationView.js │ ├── OnboardingHeader.js │ ├── TouchIcon.js │ └── index.js ├── constants │ ├── actions.js │ ├── app.js │ ├── colors.js │ ├── country-codes.js │ ├── dimensions.js │ ├── font-sizes.js │ ├── group-types.js │ ├── index.js │ └── routes.js ├── db │ ├── index.js │ └── sqlite.js ├── index.js ├── middlewares │ ├── db │ │ ├── index.js │ │ └── middleware.js │ ├── index.js │ ├── logger │ │ ├── index.js │ │ └── middleware.js │ ├── navigation │ │ ├── index.js │ │ └── middleware.js │ ├── persistence │ │ ├── index.js │ │ └── middleware.js │ └── websocket │ │ ├── __tests__ │ │ ├── middleware.test.js │ │ └── websocket.test.js │ │ ├── index.js │ │ └── middleware.js ├── navigation │ ├── app-container.js │ ├── index.js │ └── navigators │ │ ├── index.js │ │ ├── main.js │ │ └── onboarding.js ├── package.json ├── persistence │ ├── async-storage.js │ └── index.js ├── reducers │ ├── app │ │ ├── __tests__ │ │ │ └── app.test.js │ │ ├── app.js │ │ ├── index.js │ │ └── init.js │ ├── authorization │ │ ├── __tests__ │ │ │ └── authorization.test.js │ │ ├── authorization.js │ │ ├── index.js │ │ └── init.js │ └── index.js ├── resources │ └── images │ │ ├── background.png │ │ ├── conversation-background.jpg │ │ ├── hooligram-blue.png │ │ └── hooligram-white.png ├── screens │ ├── Contact │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── ContactCreate │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── ContactEdit │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── DirectMessage │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── GroupCreate │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── GroupLeave │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── GroupMemberAdd │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── GroupMessage │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── Home │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── OnboardingAgree │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── OnboardingInitialize │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── OnboardingRequest │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── OnboardingSubmit │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ ├── Splash │ │ ├── component.js │ │ ├── container.js │ │ └── index.js │ └── index.js ├── selectors │ ├── current-user-country-code.js │ ├── current-user-phone-number.js │ ├── current-user-sid.js │ ├── current-user-verification-code.js │ ├── index.js │ └── is-websocket-online.js ├── store │ ├── index.js │ └── store.js ├── utils │ ├── construct-sid.js │ ├── format-phone-number.js │ ├── get-current-timestamp.js │ ├── get-flag-emoji.js │ └── index.js └── websocket │ ├── index.js │ └── websocket.js ├── index.js ├── ios ├── hooligram-tvOS │ └── Info.plist ├── hooligram-tvOSTests │ └── Info.plist ├── hooligram.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── hooligram-tvOS.xcscheme │ │ └── hooligram.xcscheme ├── hooligram │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── hooligramTests │ ├── Info.plist │ └── hooligramTests.m ├── package.json ├── screenshots ├── whatsapp-onboarding-01.png ├── whatsapp-onboarding-02.png ├── whatsapp-onboarding-03.png ├── whatsapp-onboarding-04.png ├── whatsapp-onboarding-05.png ├── whatsapp-onboarding-06.png ├── whatsapp-onboarding-07.png ├── whatsapp-onboarding-08.png ├── whatsapp-onboarding-09.png ├── whatsapp-onboarding-10.png └── whatsapp-onboarding-11.png ├── setup-jest.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/.buckconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | API_HOST=ws://localhost:1337/some-end-point 2 | 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/hooligram.keystore.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/hooligram.keystore.example -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/hooligram/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/java/com/hooligram/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/hooligram/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/java/com/hooligram/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_hooligram_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-hdpi/ic_hooligram_blue.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_hooligram_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-hdpi/ic_hooligram_white.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/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/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_hooligram_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-mdpi/ic_hooligram_blue.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_hooligram_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-mdpi/ic_hooligram_white.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/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/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_hooligram_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_hooligram_blue.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_hooligram_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_hooligram_white.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/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/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_hooligram_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_hooligram_blue.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_hooligram_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_hooligram_white.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/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/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_hooligram_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_hooligram_blue.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_hooligram_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_hooligram_white.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/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/hooligram/hooligram-client/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app.json -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/App.js -------------------------------------------------------------------------------- /app/actions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/actions/app.js -------------------------------------------------------------------------------- /app/actions/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/actions/authorization.js -------------------------------------------------------------------------------- /app/actions/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/actions/group.js -------------------------------------------------------------------------------- /app/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/actions/index.js -------------------------------------------------------------------------------- /app/actions/messaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/actions/messaging.js -------------------------------------------------------------------------------- /app/actions/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/actions/navigation.js -------------------------------------------------------------------------------- /app/actions/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/actions/websocket.js -------------------------------------------------------------------------------- /app/components/ActionBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/ActionBar.js -------------------------------------------------------------------------------- /app/components/ActivityIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/ActivityIndicator.js -------------------------------------------------------------------------------- /app/components/Circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/Circle.js -------------------------------------------------------------------------------- /app/components/ContactSnippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/ContactSnippet.js -------------------------------------------------------------------------------- /app/components/DirectMessageSnippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/DirectMessageSnippet.js -------------------------------------------------------------------------------- /app/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/Input.js -------------------------------------------------------------------------------- /app/components/MessageCloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/MessageCloud.js -------------------------------------------------------------------------------- /app/components/MessageGroupSnippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/MessageGroupSnippet.js -------------------------------------------------------------------------------- /app/components/NavigationView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/NavigationView.js -------------------------------------------------------------------------------- /app/components/OnboardingHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/OnboardingHeader.js -------------------------------------------------------------------------------- /app/components/TouchIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/TouchIcon.js -------------------------------------------------------------------------------- /app/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/components/index.js -------------------------------------------------------------------------------- /app/constants/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/constants/actions.js -------------------------------------------------------------------------------- /app/constants/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/constants/app.js -------------------------------------------------------------------------------- /app/constants/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/constants/colors.js -------------------------------------------------------------------------------- /app/constants/country-codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/constants/country-codes.js -------------------------------------------------------------------------------- /app/constants/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/constants/dimensions.js -------------------------------------------------------------------------------- /app/constants/font-sizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/constants/font-sizes.js -------------------------------------------------------------------------------- /app/constants/group-types.js: -------------------------------------------------------------------------------- 1 | export default { 2 | STANDARD: 0, 3 | DIRECT_MESSAGE: 1 4 | } 5 | -------------------------------------------------------------------------------- /app/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/constants/index.js -------------------------------------------------------------------------------- /app/constants/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/constants/routes.js -------------------------------------------------------------------------------- /app/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/db/index.js -------------------------------------------------------------------------------- /app/db/sqlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/db/sqlite.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/index.js -------------------------------------------------------------------------------- /app/middlewares/db/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './middleware' 2 | -------------------------------------------------------------------------------- /app/middlewares/db/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/middlewares/db/middleware.js -------------------------------------------------------------------------------- /app/middlewares/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/middlewares/index.js -------------------------------------------------------------------------------- /app/middlewares/logger/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './middleware' 2 | -------------------------------------------------------------------------------- /app/middlewares/logger/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/middlewares/logger/middleware.js -------------------------------------------------------------------------------- /app/middlewares/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/middlewares/navigation/index.js -------------------------------------------------------------------------------- /app/middlewares/navigation/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/middlewares/navigation/middleware.js -------------------------------------------------------------------------------- /app/middlewares/persistence/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './middleware' 2 | -------------------------------------------------------------------------------- /app/middlewares/persistence/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/middlewares/persistence/middleware.js -------------------------------------------------------------------------------- /app/middlewares/websocket/__tests__/middleware.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/middlewares/websocket/__tests__/middleware.test.js -------------------------------------------------------------------------------- /app/middlewares/websocket/__tests__/websocket.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/middlewares/websocket/__tests__/websocket.test.js -------------------------------------------------------------------------------- /app/middlewares/websocket/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './middleware' 2 | -------------------------------------------------------------------------------- /app/middlewares/websocket/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/middlewares/websocket/middleware.js -------------------------------------------------------------------------------- /app/navigation/app-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/navigation/app-container.js -------------------------------------------------------------------------------- /app/navigation/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './app-container' 2 | -------------------------------------------------------------------------------- /app/navigation/navigators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/navigation/navigators/index.js -------------------------------------------------------------------------------- /app/navigation/navigators/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/navigation/navigators/main.js -------------------------------------------------------------------------------- /app/navigation/navigators/onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/navigation/navigators/onboarding.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hg" 3 | } 4 | -------------------------------------------------------------------------------- /app/persistence/async-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/persistence/async-storage.js -------------------------------------------------------------------------------- /app/persistence/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/persistence/index.js -------------------------------------------------------------------------------- /app/reducers/app/__tests__/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/reducers/app/__tests__/app.test.js -------------------------------------------------------------------------------- /app/reducers/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/reducers/app/app.js -------------------------------------------------------------------------------- /app/reducers/app/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './app' 2 | -------------------------------------------------------------------------------- /app/reducers/app/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/reducers/app/init.js -------------------------------------------------------------------------------- /app/reducers/authorization/__tests__/authorization.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/reducers/authorization/__tests__/authorization.test.js -------------------------------------------------------------------------------- /app/reducers/authorization/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/reducers/authorization/authorization.js -------------------------------------------------------------------------------- /app/reducers/authorization/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './authorization' 2 | -------------------------------------------------------------------------------- /app/reducers/authorization/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/reducers/authorization/init.js -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/resources/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/resources/images/background.png -------------------------------------------------------------------------------- /app/resources/images/conversation-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/resources/images/conversation-background.jpg -------------------------------------------------------------------------------- /app/resources/images/hooligram-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/resources/images/hooligram-blue.png -------------------------------------------------------------------------------- /app/resources/images/hooligram-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/resources/images/hooligram-white.png -------------------------------------------------------------------------------- /app/screens/Contact/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/Contact/component.js -------------------------------------------------------------------------------- /app/screens/Contact/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/Contact/container.js -------------------------------------------------------------------------------- /app/screens/Contact/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/ContactCreate/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/ContactCreate/component.js -------------------------------------------------------------------------------- /app/screens/ContactCreate/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/ContactCreate/container.js -------------------------------------------------------------------------------- /app/screens/ContactCreate/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/ContactEdit/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/ContactEdit/component.js -------------------------------------------------------------------------------- /app/screens/ContactEdit/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/ContactEdit/container.js -------------------------------------------------------------------------------- /app/screens/ContactEdit/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/DirectMessage/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/DirectMessage/component.js -------------------------------------------------------------------------------- /app/screens/DirectMessage/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/DirectMessage/container.js -------------------------------------------------------------------------------- /app/screens/DirectMessage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/GroupCreate/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/GroupCreate/component.js -------------------------------------------------------------------------------- /app/screens/GroupCreate/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/GroupCreate/container.js -------------------------------------------------------------------------------- /app/screens/GroupCreate/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/GroupLeave/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/GroupLeave/component.js -------------------------------------------------------------------------------- /app/screens/GroupLeave/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/GroupLeave/container.js -------------------------------------------------------------------------------- /app/screens/GroupLeave/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/GroupMemberAdd/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/GroupMemberAdd/component.js -------------------------------------------------------------------------------- /app/screens/GroupMemberAdd/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/GroupMemberAdd/container.js -------------------------------------------------------------------------------- /app/screens/GroupMemberAdd/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/GroupMessage/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/GroupMessage/component.js -------------------------------------------------------------------------------- /app/screens/GroupMessage/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/GroupMessage/container.js -------------------------------------------------------------------------------- /app/screens/GroupMessage/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/Home/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/Home/component.js -------------------------------------------------------------------------------- /app/screens/Home/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/Home/container.js -------------------------------------------------------------------------------- /app/screens/Home/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/OnboardingAgree/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/OnboardingAgree/component.js -------------------------------------------------------------------------------- /app/screens/OnboardingAgree/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/OnboardingAgree/container.js -------------------------------------------------------------------------------- /app/screens/OnboardingAgree/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/OnboardingInitialize/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/OnboardingInitialize/component.js -------------------------------------------------------------------------------- /app/screens/OnboardingInitialize/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/OnboardingInitialize/container.js -------------------------------------------------------------------------------- /app/screens/OnboardingInitialize/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/OnboardingRequest/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/OnboardingRequest/component.js -------------------------------------------------------------------------------- /app/screens/OnboardingRequest/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/OnboardingRequest/container.js -------------------------------------------------------------------------------- /app/screens/OnboardingRequest/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/OnboardingSubmit/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/OnboardingSubmit/component.js -------------------------------------------------------------------------------- /app/screens/OnboardingSubmit/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/OnboardingSubmit/container.js -------------------------------------------------------------------------------- /app/screens/OnboardingSubmit/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/Splash/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/Splash/component.js -------------------------------------------------------------------------------- /app/screens/Splash/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/Splash/container.js -------------------------------------------------------------------------------- /app/screens/Splash/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './container' 2 | -------------------------------------------------------------------------------- /app/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/screens/index.js -------------------------------------------------------------------------------- /app/selectors/current-user-country-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/selectors/current-user-country-code.js -------------------------------------------------------------------------------- /app/selectors/current-user-phone-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/selectors/current-user-phone-number.js -------------------------------------------------------------------------------- /app/selectors/current-user-sid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/selectors/current-user-sid.js -------------------------------------------------------------------------------- /app/selectors/current-user-verification-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/selectors/current-user-verification-code.js -------------------------------------------------------------------------------- /app/selectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/selectors/index.js -------------------------------------------------------------------------------- /app/selectors/is-websocket-online.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/selectors/is-websocket-online.js -------------------------------------------------------------------------------- /app/store/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './store' 2 | -------------------------------------------------------------------------------- /app/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/store/store.js -------------------------------------------------------------------------------- /app/utils/construct-sid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/utils/construct-sid.js -------------------------------------------------------------------------------- /app/utils/format-phone-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/utils/format-phone-number.js -------------------------------------------------------------------------------- /app/utils/get-current-timestamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/utils/get-current-timestamp.js -------------------------------------------------------------------------------- /app/utils/get-flag-emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/utils/get-flag-emoji.js -------------------------------------------------------------------------------- /app/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/utils/index.js -------------------------------------------------------------------------------- /app/websocket/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './websocket' 2 | -------------------------------------------------------------------------------- /app/websocket/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/app/websocket/websocket.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/index.js -------------------------------------------------------------------------------- /ios/hooligram-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/hooligram-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/hooligram.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/hooligram.xcodeproj/xcshareddata/xcschemes/hooligram-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram.xcodeproj/xcshareddata/xcschemes/hooligram-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/hooligram.xcodeproj/xcshareddata/xcschemes/hooligram.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram.xcodeproj/xcshareddata/xcschemes/hooligram.xcscheme -------------------------------------------------------------------------------- /ios/hooligram/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram/AppDelegate.h -------------------------------------------------------------------------------- /ios/hooligram/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram/AppDelegate.m -------------------------------------------------------------------------------- /ios/hooligram/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/hooligram/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/hooligram/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/hooligram/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram/Info.plist -------------------------------------------------------------------------------- /ios/hooligram/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligram/main.m -------------------------------------------------------------------------------- /ios/hooligramTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligramTests/Info.plist -------------------------------------------------------------------------------- /ios/hooligramTests/hooligramTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/ios/hooligramTests/hooligramTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-01.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-02.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-03.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-04.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-05.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-06.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-07.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-08.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-09.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-10.png -------------------------------------------------------------------------------- /screenshots/whatsapp-onboarding-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/screenshots/whatsapp-onboarding-11.png -------------------------------------------------------------------------------- /setup-jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/setup-jest.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hooligram/hooligram-client/HEAD/yarn.lock --------------------------------------------------------------------------------