Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
Revert "Update Zap Android instructions (#386)"
Browse files Browse the repository at this point in the history
This reverts commit df8ea0d.
  • Loading branch information
lukechilds committed Oct 8, 2021
1 parent cdfa4af commit 0855164
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions src/components/ConnectWallet/Wallets/ZapAndroid.vue
Original file line number Diff line number Diff line change
@@ -1,37 +1,51 @@
<template>
<connection-details name="Zap (Android)" requires="lnd">
<step-list>
<step>
Download
<b-link
href="https://play.google.com/store/apps/details?id=org.torproject.android"
target="_blank"
>Orbot</b-link> on your phone.
</step>
<step>
Open Orbot, tap the gear icon under <span class="font-weight-bold">"Tor-Enabled apps"</span> and add Zap.
</step>
<step>
Tap <span class="font-weight-bold">"STOP"</span>, restart Orbot and turn on
the <span class="font-weight-bold">"VPN Mode"</span>.
</step>
<step>
Start Tor by tapping the big onion icon.
</step>
<step>
Open the Zap app on your phone.
</step>
<step>
Tap <span class="font-weight-bold">"Setup Wallet"</span> on the home screen. If you're already using Zap, go to <span class="font-weight-bold">Menu > Wallets</span> and tap <span class="font-weight-bold">+</span>.
Tap <span class="font-weight-bold">"Connect"</span> on the welcome screen.
</step>
<step>
Scan this QR Code (click to enlarge)
<qr-code
:value="urls.lnd.grpcTor"
:value="urls.lnd.grpcTor.replace(/cert=(.*)&/gm,'')"
:size="300"
class="qr-image mt-2"
showLogo
@click="$emit('showQrModal', urls.lnd.grpcTor )"
@click="$emit('showQrModal', urls.lnd.grpcTor.replace(/cert=(.*)&/gm,'') )"
v-bind:style="{ cursor: 'pointer' }"
></qr-code>
<hr/>
<p class="text-muted">Or manually enter the following details</p>
<ul class="connect-wallet-substeps">
<li class="connect-wallet-substep">
Copy
<input-copy class="my-1" :value="urls.lnd.grpcTor"></input-copy>
<input-copy class="my-1" :value="urls.lnd.grpcTor.replace(/cert=(.*)&/gm,'')"></input-copy>
</li>
<li class="connect-wallet-substep">
Tap <span class="font-weight-bold">"Paste"</span>.
Tap <span class="font-weight-bold">"Paste"</span> and <span class="font-weight-bold">"Save"</span>.
</li>
</ul>
</step>
<step>
Tap <span class="font-weight-bold">"OK"</span> to validate your Umbrel hostname.
</step>
<step>
Congratulations! You have successfully connected Zap (Android) to your Umbrel.
</step>
Expand Down

0 comments on commit 0855164

Please sign in to comment.