mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Fix import remote profile
This commit is contained in:
parent
adfa128118
commit
1c8cc6b3cf
4 changed files with 34 additions and 1 deletions
|
@ -92,7 +92,7 @@ class MainActivity : AbstractActivity(), ServiceConnection.Callback, DistributeL
|
|||
override fun onNewIntent(intent: Intent) {
|
||||
super.onNewIntent(intent)
|
||||
val uri = intent.data ?: return
|
||||
if (uri.scheme == "sing-box" && uri.host != "import-remote-profile") {
|
||||
if (uri.scheme == "sing-box" && uri.host == "import-remote-profile") {
|
||||
val profile = try {
|
||||
Libbox.parseRemoteProfileImportLink(uri.toString())
|
||||
} catch (e: Exception) {
|
||||
|
|
|
@ -85,11 +85,13 @@ class EditProfileActivity : AbstractActivity() {
|
|||
TypedProfile.Type.Local -> {
|
||||
binding.editButton.isVisible = true
|
||||
binding.remoteFields.isVisible = false
|
||||
binding.shareURLButton.isVisible = false
|
||||
}
|
||||
|
||||
TypedProfile.Type.Remote -> {
|
||||
binding.editButton.isVisible = false
|
||||
binding.remoteFields.isVisible = true
|
||||
binding.shareURLButton.isVisible = true
|
||||
binding.remoteURL.text = profile.typed.remoteURL
|
||||
binding.lastUpdated.text =
|
||||
DateFormat.getDateTimeInstance().format(profile.typed.lastUpdated)
|
||||
|
@ -105,6 +107,7 @@ class EditProfileActivity : AbstractActivity() {
|
|||
binding.updateButton.setOnClickListener(this@EditProfileActivity::updateProfile)
|
||||
binding.checkButton.setOnClickListener(this@EditProfileActivity::checkProfile)
|
||||
binding.shareButton.setOnClickListener(this@EditProfileActivity::shareProfile)
|
||||
binding.shareURLButton.setOnClickListener(this@EditProfileActivity::shareProfileURL)
|
||||
binding.profileLayout.isVisible = true
|
||||
binding.progressView.isVisible = false
|
||||
}
|
||||
|
@ -220,4 +223,25 @@ class EditProfileActivity : AbstractActivity() {
|
|||
}
|
||||
}
|
||||
|
||||
private fun shareProfileURL(button: View) {
|
||||
try {
|
||||
startActivity(
|
||||
Intent.createChooser(
|
||||
Intent(Intent.ACTION_SEND).setType("application/octet-stream")
|
||||
.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
|
||||
.putExtra(
|
||||
Intent.EXTRA_STREAM,
|
||||
Libbox.generateRemoteProfileImportLink(
|
||||
profile.name,
|
||||
profile.typed.remoteURL
|
||||
)
|
||||
),
|
||||
getString(com.google.android.material.R.string.abc_shareactionprovider_share_with)
|
||||
)
|
||||
)
|
||||
} catch (e: Exception) {
|
||||
errorDialogBuilder(e).show()
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -148,6 +148,14 @@
|
|||
android:layout_marginTop="8dp"
|
||||
android:text="@string/profile_share" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/shareURLButton"
|
||||
style="@style/Widget.Material3.Button.ElevatedButton"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
android:text="@string/profile_share_url" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/checkButton"
|
||||
style="@style/Widget.Material3.Button.ElevatedButton"
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
<string name="profile_edit_content">Edit Content</string>
|
||||
<string name="profile_check">Check</string>
|
||||
<string name="profile_share">Share</string>
|
||||
<string name="profile_share_url">Share URL</string>
|
||||
<string name="profile_input_required">Required</string>
|
||||
<string name="profile_empty">Empty profiles</string>
|
||||
<string name="profile_last_updated">Last Updated</string>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue