android webview setDatabasePath deprecated
问题 This method was deprecated in API level 19 Database paths are managed by the implementation and calling this method will have no effect. I use setDatabasePath to set the database path of the webview. String databasePath = this.getApplicationContext().getDir("database", Context.MODE_PRIVATE).getPath(); settings.setDatabasePath(databasePath); Does this mean in API 19 it cant find my database anymore?? How to solve this? ( What do they mean with: Database paths are managed by the implementation