Browse Source

Updates

chat
Jonathan "Duke" Leto 5 years ago
parent
commit
fb79470877
  1. 4
      README.md
  2. 4
      app/src/main/java/org/myhush/silentdragon/MainActivity.kt

4
README.md

@ -2,9 +2,11 @@
SilentDragon Android is an Android frontend for the desktop SilentDragon that lets you send and receive shielded payments from your mobile phone.
![Screenshots](SDA.jpg?raw=true)
## When will it be in my favorite app store?
SOON
We are planning to submit to app stores Real Soon Now
### Running SilentDragon

4
app/src/main/java/org/myhush/silentdragon/MainActivity.kt

@ -309,14 +309,14 @@ class MainActivity : AppCompatActivity(),
// Check to make sure that the result is an actual address
if (!(data?.dataString ?: "").startsWith("ws")) {
Toast.makeText(applicationContext,
"${data?.dataString} is not a valid connection string", Toast.LENGTH_SHORT).show()
"${data?.dataString} is not a valid connection string!", Toast.LENGTH_SHORT).show()
return
}
val conComponents = data?.dataString?.split(",")
if (conComponents?.size ?: 0 < 2 || conComponents?.size ?: 0 > 3) {
Toast.makeText(applicationContext,
"${data?.dataString} is not a valid connection string", Toast.LENGTH_SHORT).show()
"${data?.dataString} is not a valid connection string!", Toast.LENGTH_SHORT).show()
return
}

Loading…
Cancel
Save