Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Upgrade to gradle 3.0. Remove ApplicationTest class (not required?). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | experimental |
Files: | files | file ages | folders |
SHA1: |
df18f2546551feb0185e27a4db9df440 |
User & Date: | dan 2017-11-13 18:48:50.728 |
Context
2017-11-13
| ||
21:02 | Add modified versions of some of the test files from the Android Compatibility Test Suite (https://android.googlesource.com/platform/cts/). (check-in: 2574c498b9 user: dan tags: experimental) | |
18:48 | Upgrade to gradle 3.0. Remove ApplicationTest class (not required?). (check-in: df18f25465 user: dan tags: experimental) | |
2017-10-24
| ||
19:33 | Update this project to version 3.21.0 (check-in: 9fa38e007e user: dan tags: trunk) | |
Changes
Changes to build.gradle.
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | - + | // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() } dependencies { |
︙ |
Changes to gradle/wrapper/gradle-wrapper.properties.
| 1 2 3 4 5 6 | - + - + |
|
Changes to sqlite3/build.gradle.
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 | - - | apply plugin: 'com.android.library' android { compileSdkVersion 25 |
︙ |
Deleted sqlite3/src/androidTest/java/org/sqlite/database/ApplicationTest.java.
| - - - - - - - - - - - - - |
|
Changes to sqlite3/src/main/jni/sqlite/sqlite3.c.
︙ | |||
941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 | 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 | + + | ** you should probably leave LFS enabled. But some embedded platforms might ** lack LFS in which case the SQLITE_DISABLE_LFS macro might still be useful. ** ** Similar is true for Mac OS X. LFS is only supported on Mac OS X 9 and later. */ #ifndef SQLITE_DISABLE_LFS # define _LARGE_FILE 1 #if 0 # ifndef _FILE_OFFSET_BITS # define _FILE_OFFSET_BITS 64 # endif #endif # define _LARGEFILE_SOURCE 1 #endif /* The GCC_VERSION and MSVC_VERSION macros are used to ** conditionally include optimizations for each of these compilers. A ** value of 0 means that compiler is not being used. The ** SQLITE_DISABLE_INTRINSIC macro means do not use any compiler-specific |
︙ |
Changes to sqlite3test/build.gradle.
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 | - | apply plugin: 'com.android.application' android { compileSdkVersion 23 |
︙ |