-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unuseable On Android 10, sql error -> un #155
Comments
thanks for the report. Unfortunatley i have no android 10 device to verify whether this is something special to your android-device or whether this is an antdoir-10 incompatibility issue. your device does not allow to
may be this an android-10 security feature. |
Thanks for your reply. It's an Essential Phone with a clean Android. I would like to assist to debug this issue, if this is possible. I have, though, no root access to the device and I will not change that. Anything I can do, just let me know. |
thanks for your assist offer but i donot think that we can remotely solve this problem. A Photo manger uses the media-content provider "content://media/external/file" to save and search photo data. it uses some database columns that are not available at content://media/external/photo to store non standard infos (tags, rating and private-photos) i am afraid that android-10 does not allow accessing all existing columns via "content://media/external/file" any more :-( you can use https://github.com/k3b/ContentProviderHelper/ (available on f-droid) to explore the contentproviders i have to borrow some android-10 device to find out more According to https://developer.android.com/reference/android/provider/MediaStore.MediaColumns.html the api should still work |
Seems not easy. I tried ContentProviderHelper and it worked; the query for one specific _id within content://media/external/files showed width, height with correct values. Sharing the result unfortunately doesn't seem to work. |
What region in Germany you're from? Maybe we should email details (how?) |
On Redit i asked Other android-10 users all having the same problem as you :-( I need to reimplement some basic functionality :-( :-( :-( :-( |
@gmanic: under https://github.com/k3b/APhotoManager/releases/tag/t0.8.0.191121-A10 there is a special apk for download that replaces the sqLite-sql function "max(...)". Can you check if the gallery is working again? |
Installed the apk and no error on startup anymore. Top. Major lag noticeable on scrolling through images. Switching to "date filter" gives a short error "error while loading folder date" (Fehler beim Laden des Ordners Datum). Selecting "Map filter" gives crash of the app. Let me know if I should test anything. Here's the link to the logfile with all logs enabled in settings. |
thanks for the logs. it seems that android media-conten- provider does not accept sqLite-functions any more as colums i found these in the logs [ 11-21 20:16:43.260 28522:28660 W/k3bFoto ] GalleryA- from openPicker(dirQueryID=Datum)-DirectoryLoaderTask SELECT max(_id) AS _id, strftime('/%Y/%m/%d/', datetaken / 1000, 'unixepoch', 'localtime') AS disp_txt, count(*) AS count, max(longitude) AS longitude, max(_data) AS _data FROM content://media/external/file GROUP BY strftime('/%Y/%m/%d/', datetaken / 1000, 'unixepoch', 'localtime') ORDER BY strftime('/%Y/%m/%d/', datetaken / 1000, 'unixepoch', 'localtime') Invalid column strftime('/%Y/%m/%d/', datetaken / 1000, 'unixepoch', 'localtime') AS disp_txt [ 11-21 20:17:04.792 28522:28522 D/k3bFoto ] LocationMapFragment#1 reloadFotoMarker(onScroll) zoom 3.0, query SELECT max(_id) AS _id, ((round((latitude * 0.2) - 0.5) /0.2) + 2.5) AS latitude, ((round((longitude * 0.2) - 0.5) /0.2) + 2.5) AS longitude, count(*) AS count FROM content://media/external/file WHERE (latitude >= ?) AND (latitude < ?) AND (longitude >= ?) AND (longitude < ?) PARAMETERS -89.781164, -62.554498, -80.312500, 100.000000 GROUP BY ((round((latitude * 0.2) - 0.5) /0.2) + 2.5), ((round((longitude * 0.2) - 0.5) /0.2) + 2.5) ORDER BY ((round((latitude * 0.2) - 0.5) /0.2) + 2.5), ((round((longitude * 0.2) - 0.5) /0.2) + 2.5) LocationMapFragment#1 -FotoMarkerLoaderTask#1-doInBackground : exception : Invalid column ((round((latitude * 0.2) - 0.5) /0.2) + 2.5) AS latitude java.lang.IllegalArgumentException: Invalid column ((round((latitude * 0.2) - 0.5) /0.2) + 2.5) AS latitude at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:170) at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:140) at android.content.ContentProviderProxy.query(ContentProviderNative.java:423) ... at de.k3b.android.androFotoFinder.locationmap.MarkerLoaderTask.doInBackground(MarkerLoaderTask.java:99) at de.k3b.android.androFotoFinder.locationmap.MarkerLoaderTaskWithRecycling.doInBackground(MarkerLoaderTaskWithRecycling.java:74) at de.k3b.android.androFotoFinder.locationmap.MarkerLoaderTaskWithRecycling.doInBackground(MarkerLoaderTaskWithRecycling.java:37) |
…nt(own db-table copy of media db); refactored all context.contentresolver.query/insert/update/delete into seperate ContentProviderMediaExecuter
…l static method calls of ContentProviderMediaExecuter(ContentProviderMediaImpl) with dynamic Interface IMediaDBApi calls
@gmanic I have started to refactor out all old-incompatible api calls into a seperate module with an alternative android-10-compatible implementation. much work ahead :-( |
Thanks. Anything I could do? No idea of Java and android programming, though. |
…m AndroFotoFinderApp to MediaContent2DBUpdateService
commit 155a8fb1500a240323fb327e16bc38901e7c7731 Author: k3b <[email protected]> Date: Sat Dec 12 20:11:58 2020 +0100 #169: Update exif-file-info also updates mediadb without changing mediadb-id commit 04cef1a Author: k3b <[email protected]> Date: Fri Dec 11 12:58:29 2020 +0100 #155: Fix crash if missing file permissions commit 461b889 Author: k3b <[email protected]> Date: Thu Dec 10 20:27:05 2020 +0100 #169: Update exif-file-info also updates mediadb without changing mediadb-id commit 1f51e1c Author: k3b <[email protected]> Date: Mon Sep 28 19:54:02 2020 +0200 #169: Experiment to trace file rename
@gmanic current status under android 10:
Next milesone will be:
|
… from localDB and from contentProvider; Copy2Clipboard
… from localDB and from contentProvider; Copy2Clipboard
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
`Invalid SQL - use default instead
SQL-error 'Invalid column max(width, height) as col_width'
SELECT _id._data AS disp_text, max(width, height) AS col_width, longitude, datetaken, _data, orientation
FROM content://media/external/file
WHERE (( media_type=1)) `
The app has to be killed with the app switcher. There is no log written.
Expected behavior
Start of App showing map with photos.
Smartphone (please complete the following information):
Additional context
Add any other context about the problem here.
Crash Report
If you report an app crash: Can you add the crash logfile to this ticket?
When APhotoManager crashes it tries to write a crash log file in the Error Log Folder.
For more details on Error Loging see diagnostic settings.
[Update 2020-04-13]
Technical Problem
Android-10 (api29) prevents apps from using sql-functions on media-content-provider colums where APhotoManager heavily depends on.
To achive android-10 compatibility i have seperated all database access logic into a seperate layer where there are two implementations for:
** is used since APhotoManager-0.8.1
** will be used in android-10 and up, when finished
** done: code to one-time copy all data from media-contentprovider to database
** done: code to query database
** done: datachanges from within APhotoManager are written to media-contentprovider and to database
** open todo: when changes are done to media-contentprovider outside APhotoManager (i.e. when camera shoots a photo) the changes must be transfered to database, too
Currently work on this ticket is stopped, because i work on sd-card-support #169 to make APhotoManager run on my new android-9 device.
[Update k3b 20210122]
since android-10 it is not allowed to query the media database for latitude/longitude any more ( https://developer.android.com/reference/android/provider/MediaStore.Images.ImageColumns#LATITUDE ) :-(
As consequence APhotoManager needs
The text was updated successfully, but these errors were encountered: