tv: account for broken TVs with no file picker

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2020-09-22 18:17:11 +02:00
parent a978aac129
commit c536bbb7e9
2 changed files with 8 additions and 1 deletions

View File

@ -5,6 +5,7 @@
package com.wireguard.android.activity
import android.content.ActivityNotFoundException
import android.os.Bundle
import android.util.Log
import android.view.View
@ -31,6 +32,7 @@ import kotlinx.coroutines.launch
class TvMainActivity : AppCompatActivity() {
private val tunnelFileImportResultLauncher = registerForActivityResult(ActivityResultContracts.GetContent()) { data ->
if (data == null) return@registerForActivityResult
lifecycleScope.launch {
TunnelImporter.importTunnel(contentResolver, data) {
Toast.makeText(this@TvMainActivity, it, Toast.LENGTH_LONG).show()
@ -98,7 +100,11 @@ class TvMainActivity : AppCompatActivity() {
}
}
binding.importButton.setOnClickListener {
tunnelFileImportResultLauncher.launch("*/*")
try {
tunnelFileImportResultLauncher.launch("*/*")
} catch (e: ActivityNotFoundException) {
Toast.makeText(this@TvMainActivity, getString(R.string.tv_error), Toast.LENGTH_LONG).show()
}
}
binding.deleteButton.setOnClickListener {
isDeleting.set(!isDeleting.get())

View File

@ -102,6 +102,7 @@
<string name="dark_theme_title">Use dark theme</string>
<string name="delete">Delete</string>
<string name="tv_delete">Select tunnel to delete</string>
<string name="tv_error">Your TV does not have a file picker</string>
<string name="disable_config_export_title">Disable config exporting</string>
<string name="disable_config_export_description">Disabling config exporting makes private keys less accessible</string>
<string name="dns_servers">DNS servers</string>