This repository was archived by the owner on Oct 14, 2022. It is now read-only.
File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ group = 'io.requery'
11
11
version = ' 3.30.1'
12
12
description = ' Android SQLite compatibility library'
13
13
14
+ ext {
15
+ PUBLISH_ARTIFACT_ID = name + " -plangrid"
16
+ }
17
+
14
18
android {
15
19
compileSdkVersion 28
16
20
63
67
sqliteDistributionUrl = ' https://sqlite.org/2019/sqlite-amalgamation-3300100.zip'
64
68
pomXml = {
65
69
resolveStrategy = DELEGATE_FIRST
66
- name project. name
70
+ name project. PUBLISH_ARTIFACT_ID
67
71
description project. description
68
72
url ' https://github.com/requery/sqlite-android'
69
73
scm {
@@ -92,7 +96,7 @@ publishing {
92
96
publications {
93
97
maven(MavenPublication ) {
94
98
groupId project. group
95
- artifactId project. name
99
+ artifactId project. PUBLISH_ARTIFACT_ID
96
100
version project. version
97
101
artifact " build/outputs/aar/${ project.name} -release.aar"
98
102
artifact sourcesJar
@@ -166,4 +170,4 @@ task installSqlite(dependsOn: downloadSqlite, type: Copy) {
166
170
into ' src/main/jni/sqlite'
167
171
}
168
172
169
- preBuild. dependsOn installSqlite
173
+ preBuild. dependsOn installSqlite
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ sqlite_flags := \
30
30
-DSQLITE_DEFAULT_MEMSTATUS=0 \
31
31
-DSQLITE_MAX_EXPR_DEPTH=0 \
32
32
-DSQLITE_USE_ALLOCA \
33
+ -DSQLITE_MAX_VARIABLE_NUMBER=32768 \
33
34
-DSQLITE_ENABLE_BATCH_ATOMIC_WRITE \
34
35
-O3
35
36
You can’t perform that action at this time.
0 commit comments