diff options
| author | 2011-09-29 13:58:59 -0700 | |
|---|---|---|
| committer | 2011-09-29 13:58:59 -0700 | |
| commit | 77e6a55f2fab30628cb4b5955b17e509eeaf5d74 (patch) | |
| tree | 3205277cd35843f1d8816be06e5ad5de89366b7c | |
| parent | cc3fbb7b699083518340cfd57334d3798d881a49 (diff) | |
bugfix 5381702 MMS app puts temporary files on sdcard in wrong location
move this code into the app
Change-Id: Ieca6c603ee1163524ddb855800ade5e5a8fff0e5
| -rwxr-xr-x | core/java/android/provider/Telephony.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java index e849b71169fe..237a89250cbe 100755 --- a/core/java/android/provider/Telephony.java +++ b/core/java/android/provider/Telephony.java @@ -1574,22 +1574,6 @@ public final class Telephony { public static final String SENT_TIME = "sent_time"; } - public static final class ScrapSpace { - /** - * The content:// style URL for this table - */ - public static final Uri CONTENT_URI = Uri.parse("content://mms/scrapSpace"); - - /** - * This is the scrap file we use to store the media attachment when the user - * chooses to capture a photo to be attached . We pass {#link@Uri} to the Camera app, - * which streams the captured image to the uri. Internally we write the media content - * to this file. It's named '.temp.jpg' so Gallery won't pick it up. - */ - public static final String SCRAP_FILE_PATH = - Environment.getExternalStorageDirectory().getPath() + "/mms/scrapSpace/.temp.jpg"; - } - public static final class Intents { private Intents() { // Non-instantiatable. |