Skip to content

Commit

Permalink
Load sqlite3 system library on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy351 committed Jul 1, 2020
1 parent 6f61d5f commit 5b09699
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions android/app/src/main/kotlin/app/ehredux/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ class MainActivity : FlutterActivity() {
"volumeDown" to KeyEvent.KEYCODE_VOLUME_DOWN,
"volumeUp" to KeyEvent.KEYCODE_VOLUME_UP
)

init {
System.loadLibrary("sqlite3")
}
}

private val interceptedKeyDownEvents = HashSet<Int>()
Expand Down

0 comments on commit 5b09699

Please sign in to comment.