Skip to content

Commit 80eb991

Browse files
committed
update sqlite to 3.15.1 and apsq to 3.15.0-r1 both with FTS4 enabled
1 parent 9fa15b7 commit 80eb991

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pythonforandroid/recipes/apsw/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sh
44

55
class ApswRecipe(PythonRecipe):
6-
version = '3.11.1-r1'
6+
version = '3.15.0-r1'
77
url = 'https://github.com/rogerbinns/apsw/archive/{version}.tar.gz'
88
depends = ['sqlite3', 'hostpython2', 'python2', 'setuptools']
99
call_hostpython_via_targetpython = False
@@ -17,7 +17,7 @@ def build_arch(self, arch):
1717
shprint(hostpython,
1818
'setup.py',
1919
'build_ext',
20-
'--enable=fts3'
20+
'--enable=fts4'
2121
, _env=env)
2222
# Install python bindings
2323
super(ApswRecipe, self).build_arch(arch)

pythonforandroid/recipes/sqlite3/Android.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ LOCAL_SRC_FILES := sqlite3.c
66

77
LOCAL_MODULE := sqlite3
88

9-
LOCAL_CFLAGS := -DSQLITE_ENABLE_FTS3
9+
LOCAL_CFLAGS := -DSQLITE_ENABLE_FTS4
1010

1111
include $(BUILD_SHARED_LIBRARY)

pythonforandroid/recipes/sqlite3/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import sh
44

55
class Sqlite3Recipe(NDKRecipe):
6-
version = '3.12.2'
6+
version = '3.15.1'
77
# Don't forget to change the URL when changing the version
8-
url = 'https://www.sqlite.org/2016/sqlite-amalgamation-3120200.zip'
8+
url = 'https://www.sqlite.org/2016/sqlite-amalgamation-3150100.zip'
99
generated_libraries = ['sqlite3']
1010

1111
def should_build(self, arch):

0 commit comments

Comments
 (0)