Update build evironment

This commit is contained in:
Daniel Friesen 2017-10-10 23:16:50 -07:00
parent fa4da180a0
commit de36dacda5
3 changed files with 40 additions and 28 deletions

55
.gitignore vendored
View File

@ -1,14 +1,10 @@
# OSX
#
.DS_Store
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
.idea
## Build generated
build/
DerivedData/
## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
@ -17,17 +13,36 @@ DerivedData/
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
## Other
xcuserdata
*.xccheckout
*.moved-aside
*.xcuserstate
## Obj-C/Swift specific
DerivedData
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
*.xcuserstate
project.xcworkspace
# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
gradlew
gradlew.bat
android/gradle/wrapper/
# node.js
#
node_modules/
npm-debug.log
yarn-error.log
# BUCK
buck-out/
\.buckd/
*.keystore
# CocoaPods
#
@ -49,10 +64,11 @@ Carthage/Build
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
# https://docs.fastlane.tools/best-practices/source-control/
fastlane/report.xml
fastlane/screenshots
*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots
#Code Injection
#
@ -60,4 +76,3 @@ fastlane/screenshots
# https://github.com/johnno1962/injectionforxcode
iOSInjectionProject/
node_modules/**/*

View File

@ -1,9 +1,9 @@
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.android.tools.build:gradle:2.3.+'
}
}
@ -28,11 +28,7 @@ android {
allprojects {
repositories {
mavenLocal()
jcenter()
maven {
url "http://files.couchbase.com/maven2/"
}
mavenCentral()
}
}

View File

@ -26,6 +26,7 @@
},
"homepage": "https://github.com/Elyx0/react-native-document-picker#readme",
"devDependencies": {
"react-native": "^0.28.0"
"react": "^16.0.0-beta.5",
"react-native": "^0.49.3"
}
}