Skip to content

Commit

Permalink
Fix android and ios support (#147)
Browse files Browse the repository at this point in the history
* move to newer versions of react-native and fix android

* add pc android build support

* avoid updating ndk

* Fix Podfiles

* Add lost comment

* Fix SafeAreaView background color for iOS

* fix android packaged so files

* Fixes for gulpfile.js

* Split PackageTest into two apps - one for testing with RN 0.63.1, and one for testing with RN 0.64.0-rc.0

Change packages Android min api level back to 18

* final review comments

Co-authored-by: Ryan Tremblay <ryan.tremblay@microsoft.com>
  • Loading branch information
C. M. Barth and ryantrem authored Jan 29, 2021
1 parent 95ecb83 commit aa007ca
Show file tree
Hide file tree
Showing 175 changed files with 15,131 additions and 3,415 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
63 changes: 63 additions & 0 deletions Apps/PackageTest/0.63.1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml

# Visual Studio Code
#
.vscode/

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# fastlane
#
# 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://docs.fastlane.tools/best-practices/source-control/

*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots

# Bundle artifact
*.jsbundle

# CocoaPods
/ios/Pods/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
17 changes: 17 additions & 0 deletions Apps/PackageTest/0.63.1/metro.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* Metro configuration for React Native
* https://github.com/facebook/react-native
*
* @format
*/

module.exports = {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: false,
},
}),
},
};
Loading

0 comments on commit aa007ca

Please sign in to comment.