-
Notifications
You must be signed in to change notification settings - Fork 55
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
Support for Android SDK v30 #91
Comments
Hi |
@brodybits I am also wondering if this is something that you intend to fix in this version of the plugin. Very soon, this will start affecting people trying to submit new apps (if it has not already). Just curious if it is planned to be fixed in the near future. Thanks! |
@marpstar I have the same problem as you |
estou com o mesmo problema |
cannot submit my new app. |
@brodybits do you have any update for us on this issue? We are quickly approaching the November deadline when this is going to be a MAJOR issue for those of us with existing apps that use this plugin extensively. |
Has anyone created a branch of this plugin by any chance? I'll be happy to use it until this issue is fixed. |
I've created a fork here: |
Hey guys, if you don't use the extra features of cordova-sqlite-ext, you might want to switch to cordova-sqlite-storage which works with Android SDK version 30. That's what we did, it this can help... |
I wish I could. I need the ability to read a pre populated db... :-( |
Seems like the fork I did allows opening the database, it removed the BASE64 support which is not so cool as I needed that, but I'll handle without it... |
@ekrapfl I don't think the hack I did is a proper solution to this issue :-) it's just a hack to better understand what's wrong and maybe have a workaround until I fully understand everything that's going on here. As I already said in a previous comment, I can't use the "main" fork as it lack the pre-populate database functionality (as far as I understand from the documentation, I haven't tried using it though). |
Yep, I am totally in the same boat @HarelM. |
Turns out that I can use the |
@HarelM did you do this by forking the repository? If so, where are you making changes? |
I created a fork and hacked some stuff, but the db provider configuration already exists in current version so I ended up not using my fork. |
So are you calling openDatabase exactly as in the readme? |
I'm using ionic wrapper as can be seen here: var db = window.sqlitePlugin.openDatabase({
name: 'my.db',
location: 'default',
androidDatabaseProvider: 'system'
}); |
Should be solved now |
@brodybits Thanks for fixing this! |
Our app uses this plugin and we recently ran into issues trying to upgrade our Android Target SDK from 29 to 30. After further investigation, we found that this issue has been addressed in the
cordova-sqlite-storage
plugin, but those changes to not appear to have been merged into this one.storesafe/cordova-sqlite-storage#954
Is this something on the road map, or is there a general timeline for when such fixes will be ported to the
-ext
version of the plugin?The text was updated successfully, but these errors were encountered: