How to use SmsManager.importMultimediaMessage()? How to import MMS in Android's database?
So, I'm building an app to copy all my messages (AND mms, WITH attachments) from iOS (iTunes backup) to Android Pie (OxygenOS).
I went through Android's SmsManager.java file, and I noticed two methods:
importTextMessage(...)
does the job perfectly for SMS!!
importMultimediaMessage(...)
, hum.. MMS is a big deal.
Can someone explain me how to use importMultimediaMessage
?
What are the first 2 params?
I wish I could just import the attachments (byte
) and somehow, link it to a message..
PS: These 2 methods are part of internal APIs, and thus, they are not well documented.
To use it in a project, we have to:
- use a modified version of android.jar (see version 28 here github.com/anggrayudi/android-hidden-api)
Run the following command from the computer
adb shell settings put global hidden_api_policy_pre_p_apps 1
adb shell settings put global hidden_api_policy_p_apps 1
according to developer.android.com/about/versions/pie/restrictions-non-sdk-interfaces
PS2: For those wondering why I'm using internal APIs, I will not publish this app. It's just for personal purposes. I'll probably delete it after all my Message restored. That's why I feel free to use Android's internal APIs.
PS3: I also tried this accepted answer (stackoverflow.com/a/15224716/2559851), but I don't know why, the res
variable is always null here
Uri res = context.getContentResolver().insert(partUri, mmsPartValue);
android android-studio android-contentresolver smsmanager android-mms
add a comment |
So, I'm building an app to copy all my messages (AND mms, WITH attachments) from iOS (iTunes backup) to Android Pie (OxygenOS).
I went through Android's SmsManager.java file, and I noticed two methods:
importTextMessage(...)
does the job perfectly for SMS!!
importMultimediaMessage(...)
, hum.. MMS is a big deal.
Can someone explain me how to use importMultimediaMessage
?
What are the first 2 params?
I wish I could just import the attachments (byte
) and somehow, link it to a message..
PS: These 2 methods are part of internal APIs, and thus, they are not well documented.
To use it in a project, we have to:
- use a modified version of android.jar (see version 28 here github.com/anggrayudi/android-hidden-api)
Run the following command from the computer
adb shell settings put global hidden_api_policy_pre_p_apps 1
adb shell settings put global hidden_api_policy_p_apps 1
according to developer.android.com/about/versions/pie/restrictions-non-sdk-interfaces
PS2: For those wondering why I'm using internal APIs, I will not publish this app. It's just for personal purposes. I'll probably delete it after all my Message restored. That's why I feel free to use Android's internal APIs.
PS3: I also tried this accepted answer (stackoverflow.com/a/15224716/2559851), but I don't know why, the res
variable is always null here
Uri res = context.getContentResolver().insert(partUri, mmsPartValue);
android android-studio android-contentresolver smsmanager android-mms
add a comment |
So, I'm building an app to copy all my messages (AND mms, WITH attachments) from iOS (iTunes backup) to Android Pie (OxygenOS).
I went through Android's SmsManager.java file, and I noticed two methods:
importTextMessage(...)
does the job perfectly for SMS!!
importMultimediaMessage(...)
, hum.. MMS is a big deal.
Can someone explain me how to use importMultimediaMessage
?
What are the first 2 params?
I wish I could just import the attachments (byte
) and somehow, link it to a message..
PS: These 2 methods are part of internal APIs, and thus, they are not well documented.
To use it in a project, we have to:
- use a modified version of android.jar (see version 28 here github.com/anggrayudi/android-hidden-api)
Run the following command from the computer
adb shell settings put global hidden_api_policy_pre_p_apps 1
adb shell settings put global hidden_api_policy_p_apps 1
according to developer.android.com/about/versions/pie/restrictions-non-sdk-interfaces
PS2: For those wondering why I'm using internal APIs, I will not publish this app. It's just for personal purposes. I'll probably delete it after all my Message restored. That's why I feel free to use Android's internal APIs.
PS3: I also tried this accepted answer (stackoverflow.com/a/15224716/2559851), but I don't know why, the res
variable is always null here
Uri res = context.getContentResolver().insert(partUri, mmsPartValue);
android android-studio android-contentresolver smsmanager android-mms
So, I'm building an app to copy all my messages (AND mms, WITH attachments) from iOS (iTunes backup) to Android Pie (OxygenOS).
I went through Android's SmsManager.java file, and I noticed two methods:
importTextMessage(...)
does the job perfectly for SMS!!
importMultimediaMessage(...)
, hum.. MMS is a big deal.
Can someone explain me how to use importMultimediaMessage
?
What are the first 2 params?
I wish I could just import the attachments (byte
) and somehow, link it to a message..
PS: These 2 methods are part of internal APIs, and thus, they are not well documented.
To use it in a project, we have to:
- use a modified version of android.jar (see version 28 here github.com/anggrayudi/android-hidden-api)
Run the following command from the computer
adb shell settings put global hidden_api_policy_pre_p_apps 1
adb shell settings put global hidden_api_policy_p_apps 1
according to developer.android.com/about/versions/pie/restrictions-non-sdk-interfaces
PS2: For those wondering why I'm using internal APIs, I will not publish this app. It's just for personal purposes. I'll probably delete it after all my Message restored. That's why I feel free to use Android's internal APIs.
PS3: I also tried this accepted answer (stackoverflow.com/a/15224716/2559851), but I don't know why, the res
variable is always null here
Uri res = context.getContentResolver().insert(partUri, mmsPartValue);
android android-studio android-contentresolver smsmanager android-mms
android android-studio android-contentresolver smsmanager android-mms
edited Nov 21 at 8:27
asked Nov 21 at 2:07
David
2,24032041
2,24032041
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Answering myself, I end up not using importMultimediaMessage()
.
If you want a working project, see here https://github.com/let-aurn/iosmessagetoandroid.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404357%2fhow-to-use-smsmanager-importmultimediamessage-how-to-import-mms-in-androids%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Answering myself, I end up not using importMultimediaMessage()
.
If you want a working project, see here https://github.com/let-aurn/iosmessagetoandroid.
add a comment |
Answering myself, I end up not using importMultimediaMessage()
.
If you want a working project, see here https://github.com/let-aurn/iosmessagetoandroid.
add a comment |
Answering myself, I end up not using importMultimediaMessage()
.
If you want a working project, see here https://github.com/let-aurn/iosmessagetoandroid.
Answering myself, I end up not using importMultimediaMessage()
.
If you want a working project, see here https://github.com/let-aurn/iosmessagetoandroid.
answered Nov 22 at 14:42
David
2,24032041
2,24032041
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404357%2fhow-to-use-smsmanager-importmultimediamessage-how-to-import-mms-in-androids%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown