Skip to content

Commit

Permalink
Merge pull request #918 from dl200010/FixSMSDefault
Browse files Browse the repository at this point in the history
Fix Neo Backup not being on default SMS list
  • Loading branch information
hg42 authored Nov 21, 2024
2 parents fa05dcb + 2017aa8 commit 28a14cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@

<activity
android:name=".activities.ComposeSms"
android:exported="false">
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SENDTO" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ object RestoreSMSMMSJSONAction {
throw RuntimeException("No permission for SMS/MMS.")
}
if (!isDefaultSms(context)) {
throw RuntimeException("OAndBackupX not default SMS/MMS app.")
throw RuntimeException("Neo Backup not default SMS/MMS app.")
}
val inputFile = context.contentResolver.openInputStream(Uri.fromFile(File(filePath)))
inputFile?.use { inputStream ->
Expand Down

0 comments on commit 28a14cb

Please sign in to comment.