[android] Fix saving to Google Drive #8817

Merged
krozhdestvenski merged 2 commits from fix_save_to_google_drive into master 2024-08-07 11:18:33 +00:00
krozhdestvenski commented 2024-08-01 14:00:50 +00:00 (Migrated from github.com)
Fix issue https://git.omaps.dev/organicmaps/organicmaps/issues/8806
biodranik (Migrated from github.com) reviewed 2024-08-01 14:22:29 +00:00
@ -229,3 +231,3 @@
final Uri fileUri = StorageUtils.getUriForFilePath(context, info.mFileName);
Logger.i(TAG, "Sharing file " + info.mMimeType + " " + info.mFileName + " with URI " + fileUri);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, new ArrayList<>(List.of(fileUri)));
biodranik (Migrated from github.com) commented 2024-08-01 14:22:29 +00:00

Should it be inside if (context instanceof Application), as it is done in other apps?

Should it be inside `if (context instanceof Application)`, as it is done in other apps?
krozhdestvenski (Migrated from github.com) reviewed 2024-08-01 14:44:55 +00:00
@ -229,3 +231,3 @@
final Uri fileUri = StorageUtils.getUriForFilePath(context, info.mFileName);
Logger.i(TAG, "Sharing file " + info.mMimeType + " " + info.mFileName + " with URI " + fileUri);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, new ArrayList<>(List.of(fileUri)));
krozhdestvenski (Migrated from github.com) commented 2024-08-01 14:44:55 +00:00

In this case context is Activity.

In this case context is Activity.
biodranik (Migrated from github.com) reviewed 2024-08-01 14:46:54 +00:00
@ -229,3 +231,3 @@
final Uri fileUri = StorageUtils.getUriForFilePath(context, info.mFileName);
Logger.i(TAG, "Sharing file " + info.mMimeType + " " + info.mFileName + " with URI " + fileUri);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, new ArrayList<>(List.of(fileUri)));
biodranik (Migrated from github.com) commented 2024-08-01 14:46:54 +00:00

Does it allow to come back into Organic Maps after the file is exported?

Does it allow to come back into Organic Maps after the file is exported?
krozhdestvenski (Migrated from github.com) reviewed 2024-08-01 15:13:51 +00:00
@ -229,3 +231,3 @@
final Uri fileUri = StorageUtils.getUriForFilePath(context, info.mFileName);
Logger.i(TAG, "Sharing file " + info.mMimeType + " " + info.mFileName + " with URI " + fileUri);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, new ArrayList<>(List.of(fileUri)));
krozhdestvenski (Migrated from github.com) commented 2024-08-01 15:13:51 +00:00

Yes. After exporting we return to Organic Maps (checked it for exporting to Google Drive and local deevice)

Yes. After exporting we return to Organic Maps (checked it for exporting to Google Drive and local deevice)
biodranik (Migrated from github.com) reviewed 2024-08-01 16:59:56 +00:00
@ -229,3 +231,3 @@
final Uri fileUri = StorageUtils.getUriForFilePath(context, info.mFileName);
Logger.i(TAG, "Sharing file " + info.mMimeType + " " + info.mFileName + " with URI " + fileUri);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, new ArrayList<>(List.of(fileUri)));
biodranik (Migrated from github.com) commented 2024-08-01 16:59:56 +00:00

There are several more places in the code where this function is called. Did you test it on different Android versions too? Does it work on Android 5?

There are several more places in the code where this function is called. Did you test it on different Android versions too? Does it work on Android 5?
krozhdestvenski (Migrated from github.com) reviewed 2024-08-01 21:05:52 +00:00
@ -229,3 +231,3 @@
final Uri fileUri = StorageUtils.getUriForFilePath(context, info.mFileName);
Logger.i(TAG, "Sharing file " + info.mMimeType + " " + info.mFileName + " with URI " + fileUri);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, new ArrayList<>(List.of(fileUri)));
krozhdestvenski (Migrated from github.com) commented 2024-08-01 21:05:52 +00:00

i tested it in send bug report functionality.
It works correcctly on Android 10
On Android 5 send e-mail and savind to documents work too. Saving to Google Drive i can't check

i tested it in send bug report functionality. It works correcctly on Android 10 On Android 5 send e-mail and savind to documents work too. Saving to Google Drive i can't check
biodranik (Migrated from github.com) reviewed 2024-08-03 10:48:49 +00:00
@ -229,3 +231,3 @@
final Uri fileUri = StorageUtils.getUriForFilePath(context, info.mFileName);
Logger.i(TAG, "Sharing file " + info.mMimeType + " " + info.mFileName + " with URI " + fileUri);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, new ArrayList<>(List.of(fileUri)));
biodranik (Migrated from github.com) commented 2024-08-03 10:48:49 +00:00

Should FLAG_ACTIVITY_NEW_TASK be used when a single bookmark or POI is shared from the Place Page?

Should FLAG_ACTIVITY_NEW_TASK be used when a single bookmark or POI is shared from the Place Page?
biodranik (Migrated from github.com) reviewed 2024-08-06 07:10:34 +00:00
@ -229,3 +231,3 @@
final Uri fileUri = StorageUtils.getUriForFilePath(context, info.mFileName);
Logger.i(TAG, "Sharing file " + info.mMimeType + " " + info.mFileName + " with URI " + fileUri);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, new ArrayList<>(List.of(fileUri)));
biodranik (Migrated from github.com) commented 2024-08-06 07:10:34 +00:00
      intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_ACTIVITY_NEW_TASK);
```suggestion intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_ACTIVITY_NEW_TASK); ```
krozhdestvenski (Migrated from github.com) reviewed 2024-08-06 08:01:36 +00:00
@ -229,3 +231,3 @@
final Uri fileUri = StorageUtils.getUriForFilePath(context, info.mFileName);
Logger.i(TAG, "Sharing file " + info.mMimeType + " " + info.mFileName + " with URI " + fileUri);
intent.putExtra(Intent.EXTRA_STREAM, fileUri);
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, new ArrayList<>(List.of(fileUri)));
krozhdestvenski (Migrated from github.com) commented 2024-08-06 08:01:36 +00:00

On current version works correctly

On current version works correctly
Jean-BaptisteC (Migrated from github.com) approved these changes 2024-08-07 05:15:31 +00:00
Jean-BaptisteC (Migrated from github.com) left a comment

Pixel 6 - Android 14
Tested with Telegram and GPX Viewer

✅ Pixel 6 - Android 14 Tested with Telegram and GPX Viewer
biodranik (Migrated from github.com) approved these changes 2024-08-07 11:18:25 +00:00
biodranik (Migrated from github.com) left a comment

Thanks! Let's beta test it.

Thanks! Let's beta test it.
This repo is archived. You cannot comment on pull requests.
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
1 participant
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#8817
No description provided.