tagfer-app/android/settings.gradle
Okechi Onyeje f10c5dfbe1 Merged in UPS23-Create-Signup-Screen4-Create-Initial-Profile-Screen (pull request #4)
UPS23 Create Signup Screen4 Create Initial Profile Screen

* UPS23: Added SignupScreen4 + LinkedIn Integration

    - still some bugs when dealing with oauth, not as similar as the twitter api

* UPS23: Camera and Image Picker working

    - still need to test on physical device since emulator will not allow for testing of camera

* UPS23-Fixed Styling for Signup Screen#4

* UPS23- adding package lock file

* UPS23: Disable linked in button

    - currently we are not able to get the information we need back to populate the initial profile form
    - we only have access to v1 apis which will be deprecated in 2 months
    - awaiting access from linkedin's partner program

* UPS23: Change screen routing order

* UPS23: Remove LinkedInData state object

* UPS23: Flatten profileInfo object to seperate state attributes

Approved-by: Omar Mihilmy <mihilmy@gmail.com>
2019-01-27 02:45:40 +00:00

18 lines
1.2 KiB
Groovy

rootProject.name = 'Tagfer'
include ':react-native-app-settings'
project(':react-native-app-settings').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-app-settings/android')
include ':react-native-image-picker'
project(':react-native-image-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-picker/android')
include ':react-native-contacts'
project(':react-native-contacts').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-contacts/android')
include ':react-native-webview'
project(':react-native-webview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webview/android')
include ':react-native-vector-icons'
project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
include ':react-native-gesture-handler'
project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android')
include ':realm'
project(':realm').projectDir = new File(rootProject.projectDir, '../node_modules/realm/android')
include ':app'