This repository was archived by the owner on Oct 14, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ group = 'io.requery'
1111version = ' 3.30.1'
1212description = ' Android SQLite compatibility library'
1313
14+ ext {
15+ PUBLISH_ARTIFACT_ID = name + " -plangrid"
16+ }
17+
1418android {
1519 compileSdkVersion 28
1620
6367 sqliteDistributionUrl = ' https://sqlite.org/2019/sqlite-amalgamation-3300100.zip'
6468 pomXml = {
6569 resolveStrategy = DELEGATE_FIRST
66- name project. name
70+ name project. PUBLISH_ARTIFACT_ID
6771 description project. description
6872 url ' https://github.com/requery/sqlite-android'
6973 scm {
@@ -92,7 +96,7 @@ publishing {
9296 publications {
9397 maven(MavenPublication ) {
9498 groupId project. group
95- artifactId project. name
99+ artifactId project. PUBLISH_ARTIFACT_ID
96100 version project. version
97101 artifact " build/outputs/aar/${ project.name} -release.aar"
98102 artifact sourcesJar
@@ -166,4 +170,4 @@ task installSqlite(dependsOn: downloadSqlite, type: Copy) {
166170 into ' src/main/jni/sqlite'
167171}
168172
169- preBuild. dependsOn installSqlite
173+ preBuild. dependsOn installSqlite
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ sqlite_flags := \
3030 -DSQLITE_DEFAULT_MEMSTATUS=0 \
3131 -DSQLITE_MAX_EXPR_DEPTH=0 \
3232 -DSQLITE_USE_ALLOCA \
33+ -DSQLITE_MAX_VARIABLE_NUMBER=32768 \
3334 -DSQLITE_ENABLE_BATCH_ATOMIC_WRITE \
3435 -O3
3536
You can’t perform that action at this time.
0 commit comments