-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
As noted [here](facebook/react-native#36758) there is a problem with the Yoga package in RN building with Xcode 14.3. This is a temporary work around to peg the build to 14.2 until this issue can be resolved more thoroughly. Ref. [macOS runners](https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md)
- Loading branch information
Showing
5 changed files
with
163 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
:2015 { | ||
# Set this path to your site's directory. | ||
root * /usr/share/caddy | ||
|
||
# Enable the static file server. | ||
file_server | ||
|
||
# Another common task is to set up a reverse proxy: | ||
# reverse_proxy localhost:8080 | ||
|
||
# Or serve a PHP site through php-fpm: | ||
# php_fastcgi localhost:9000 | ||
|
||
# redir /success /ff 302 | ||
|
||
header { | ||
Cache-Control no-cache | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
FROM --platform=linux/amd64 gradle:6.9-jdk8 | ||
|
||
ENV ANDROID_TOOLS_VERSION 8512546 | ||
ENV ANDROID_SDK_VERSION 31 | ||
ENV ANDROID_BUILD_TOOLS_VERION 30.0.3 | ||
ENV NVM_VERSION 0.38.0 | ||
ENV NODE_VERSION 16.15.0 | ||
ENV ANDROID_HOME /opt/android | ||
ENV JAVA_HOME "" | ||
ENV JAVA_VERSION "" | ||
RUN apt update && \ | ||
apt --no-install-recommends --quiet install --yes \ | ||
unzip curl less openjdk-11-jdk tar lib32stdc++6 lib32z1 sudo | ||
|
||
USER root | ||
|
||
RUN rm -rf /opt/java && \ | ||
unset JAVA_HOME && \ | ||
mkdir -p ${ANDROID_HOME} && \ | ||
cd ${ANDROID_HOME} && \ | ||
curl -L https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_TOOLS_VERSION}_latest.zip \ | ||
-o cmdline-tools.zip && \ | ||
unzip -d cmdline-tools cmdline-tools.zip && \ | ||
rm -rf cmdline-tools.zip && \ | ||
cd cmdline-tools && \ | ||
mv cmdline-tools latest && \ | ||
cd - && \ | ||
mkdir -p /root/.android && \ | ||
touch /root/.android/repositories.cfg && \ | ||
export PATH=$PATH:$PWD/cmdline-tools/latest/bin && \ | ||
export export ANDROID_HOME=$PWD && \ | ||
echo y | sdkmanager "platforms;android-$ANDROID_SDK_VERSION" && \ | ||
echo y | sdkmanager "platform-tools" && \ | ||
echo y | sdkmanager "build-tools;$ANDROID_BUILD_TOOLS_VERION" && \ | ||
yes | sdkmanager --licenses | ||
|
||
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v${NVM_VERSION}/install.sh | bash && \ | ||
export NVM_DIR="$HOME/.nvm" && \ | ||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && \ | ||
nvm install ${NODE_VERSION} | ||
|
||
RUN git config --global --add safe.directory '*' && \ | ||
echo "unset JAVA_HOME" >> $HOME/.bashrc && \ | ||
echo "export ANDROID_HOME=$ANDROID_HOME" >> $HOME/.bashrc | ||
|
||
RUN useradd -u 1001 -G root -s /bin/bash github | ||
# mkdir /__w && \ | ||
# chmod 2775 /__w && \ | ||
# chown github:github /__w | ||
|
||
# ENV PATH="${PATH}:/root/.nvm/versions/node/v${NODE_VERSION}/bin" |
68 changes: 68 additions & 0 deletions
68
app/postinstall:patch/@aries-framework+react-hooks+0.3.0.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
diff --git a/node_modules/@aries-framework/react-hooks/build/AgentProvider.d.ts b/node_modules/@aries-framework/react-hooks/build/AgentProvider.d.ts | ||
index d6256cc..6ca0215 100644 | ||
--- a/node_modules/@aries-framework/react-hooks/build/AgentProvider.d.ts | ||
+++ b/node_modules/@aries-framework/react-hooks/build/AgentProvider.d.ts | ||
@@ -4,10 +4,8 @@ import * as React from 'react'; | ||
interface AgentContextInterface { | ||
loading: boolean; | ||
agent?: Agent; | ||
+ setAgent: (agent?: Agent) => void; | ||
} | ||
export declare const useAgent: () => AgentContextInterface; | ||
-interface Props { | ||
- agent: Agent | undefined; | ||
-} | ||
-declare const AgentProvider: React.FC<PropsWithChildren<Props>>; | ||
+declare const AgentProvider: React.FC<PropsWithChildren>; | ||
export default AgentProvider; | ||
diff --git a/node_modules/@aries-framework/react-hooks/build/AgentProvider.js b/node_modules/@aries-framework/react-hooks/build/AgentProvider.js | ||
index b30b8b5..1c6c16a 100644 | ||
--- a/node_modules/@aries-framework/react-hooks/build/AgentProvider.js | ||
+++ b/node_modules/@aries-framework/react-hooks/build/AgentProvider.js | ||
@@ -38,24 +38,19 @@ const useAgent = () => { | ||
return agentContext; | ||
}; | ||
exports.useAgent = useAgent; | ||
-const AgentProvider = ({ agent, children }) => { | ||
- const [agentState, setAgentState] = (0, react_1.useState)({ | ||
+const AgentProvider = ({ children }) => { | ||
+ const [state, setState] = (0, react_1.useState)({ | ||
loading: true, | ||
- agent, | ||
+ agent: undefined, | ||
}); | ||
- const setInitialState = async () => { | ||
- if (agent) { | ||
- setAgentState({ agent, loading: false }); | ||
- } | ||
+ const setAgent = (agent) => { | ||
+ setState({ agent, loading: false }); | ||
}; | ||
- (0, react_1.useEffect)(() => { | ||
- setInitialState(); | ||
- }, [agent]); | ||
- return (React.createElement(AgentContext.Provider, { value: agentState }, | ||
- React.createElement(ConnectionProvider_1.default, { agent: agent }, | ||
- React.createElement(CredentialProvider_1.default, { agent: agent }, | ||
- React.createElement(ProofProvider_1.default, { agent: agent }, | ||
- React.createElement(BasicMessageProvider_1.default, { agent: agent }, children)))))); | ||
+ return (React.createElement(AgentContext.Provider, { value: Object.assign({ setAgent }, state) }, | ||
+ React.createElement(ConnectionProvider_1.default, { agent: state.agent }, | ||
+ React.createElement(CredentialProvider_1.default, { agent: state.agent }, | ||
+ React.createElement(ProofProvider_1.default, { agent: state.agent }, | ||
+ React.createElement(BasicMessageProvider_1.default, { agent: state.agent }, children)))))); | ||
}; | ||
exports.default = AgentProvider; | ||
-//# sourceMappingURL=AgentProvider.js.map | ||
\ No newline at end of file | ||
+//# sourceMappingURL=AgentProvider.js.maps | ||
\ No newline at end of file | ||
diff --git a/node_modules/@aries-framework/react-hooks/build/AgentProvider.js.map b/node_modules/@aries-framework/react-hooks/build/AgentProvider.js.map | ||
index dd4dc30..f1f17a4 100644 | ||
--- a/node_modules/@aries-framework/react-hooks/build/AgentProvider.js.map | ||
+++ b/node_modules/@aries-framework/react-hooks/build/AgentProvider.js.map | ||
@@ -1 +1 @@ | ||
-{"version":3,"file":"AgentProvider.js","sourceRoot":"","sources":["../src/AgentProvider.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAGA,6CAA8B;AAC9B,iCAAsE;AAEtE,kFAAyD;AACzD,8EAAqD;AACrD,8EAAqD;AACrD,oEAA2C;AAO3C,MAAM,YAAY,GAAG,IAAA,qBAAa,EAAoC,SAAS,CAAC,CAAA;AAEzE,MAAM,QAAQ,GAAG,GAAG,EAAE;IAC3B,MAAM,YAAY,GAAG,IAAA,kBAAU,EAAC,YAAY,CAAC,CAAA;IAC7C,IAAI,CAAC,YAAY,EAAE;QACjB,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAA;KACvE;IACD,OAAO,YAAY,CAAA;AACrB,CAAC,CAAA;AANY,QAAA,QAAQ,YAMpB;AAMD,MAAM,aAAa,GAAuC,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,EAAE;IAChF,MAAM,CAAC,UAAU,EAAE,aAAa,CAAC,GAAG,IAAA,gBAAQ,EAAwB;QAClE,OAAO,EAAE,IAAI;QACb,KAAK;KACN,CAAC,CAAA;IAEF,MAAM,eAAe,GAAG,KAAK,IAAI,EAAE;QACjC,IAAI,KAAK,EAAE;YACT,aAAa,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC,CAAA;SACzC;IACH,CAAC,CAAA;IAED,IAAA,iBAAS,EAAC,GAAG,EAAE;QACb,eAAe,EAAE,CAAA;IACnB,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAA;IAEX,OAAO,CACL,oBAAC,YAAY,CAAC,QAAQ,IAAC,KAAK,EAAE,UAAU;QACtC,oBAAC,4BAAkB,IAAC,KAAK,EAAE,KAAK;YAC9B,oBAAC,4BAAkB,IAAC,KAAK,EAAE,KAAK;gBAC9B,oBAAC,uBAAa,IAAC,KAAK,EAAE,KAAK;oBACzB,oBAAC,8BAAoB,IAAC,KAAK,EAAE,KAAK,IAAG,QAAQ,CAAwB,CACvD,CACG,CACF,CACC,CACzB,CAAA;AACH,CAAC,CAAA;AAED,kBAAe,aAAa,CAAA"} | ||
\ No newline at end of file | ||
+{"version":3,"file":"AgentProvider.js","sourceRoot":"","sources":["../src/AgentProvider.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAGA,6CAA8B;AAC9B,iCAA2D;AAE3D,kFAAyD;AACzD,8EAAqD;AACrD,8EAAqD;AACrD,oEAA2C;AAQ3C,MAAM,YAAY,GAAG,IAAA,qBAAa,EAAoC,SAAS,CAAC,CAAA;AAEzE,MAAM,QAAQ,GAAG,GAAG,EAAE;IAC3B,MAAM,YAAY,GAAG,IAAA,kBAAU,EAAC,YAAY,CAAC,CAAA;IAC7C,IAAI,CAAC,YAAY,EAAE;QACjB,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAA;KACvE;IACD,OAAO,YAAY,CAAA;AACrB,CAAC,CAAA;AANY,QAAA,QAAQ,YAMpB;AAED,MAAM,aAAa,GAAgC,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;IAClE,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG,IAAA,gBAAQ,EAAsC;QACtE,OAAO,EAAE,IAAI;QACb,KAAK,EAAE,SAAS;KACjB,CAAC,CAAA;IAEF,MAAM,QAAQ,GAAG,CAAC,KAAa,EAAQ,EAAE;QACvC,QAAQ,CAAC,EAAE,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,CAAC,CAAA;IACrC,CAAC,CAAA;IAED,OAAO,CACL,oBAAC,YAAY,CAAC,QAAQ,IAAC,KAAK,kBAAI,QAAQ,IAAK,KAAK;QAChD,oBAAC,4BAAkB,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK;YACpC,oBAAC,4BAAkB,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK;gBACpC,oBAAC,uBAAa,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK;oBAC/B,oBAAC,8BAAoB,IAAC,KAAK,EAAE,KAAK,CAAC,KAAK,IAAG,QAAQ,CAAwB,CAC7D,CACG,CACF,CACC,CACzB,CAAA;AACH,CAAC,CAAA;AAED,kBAAe,aAAa,CAAA"} | ||
\ No newline at end of file |
Submodule bifold
updated
from 5174b4 to 1a8905
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>I am Caddy</title> | ||
<script> | ||
|
||
function doFunction() { | ||
window.location.href = 'bcwallet://xx/success'; | ||
} | ||
|
||
</script> | ||
</head> | ||
<body style="background-color: coral"}> | ||
|
||
Hi! I'm a HTML page XC. | ||
|
||
</br> | ||
</br> | ||
</br> | ||
|
||
10110 | ||
<input type="button" value="clickme" onclick="doFunction();" /> | ||
|
||
</body> |