Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Upgrade gradle version to 3.1.4. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
193bea893f31a2d70bc54fe715a45676 |
User & Date: | dan 2018-09-04 17:24:47.415 |
Context
2018-09-18
| ||
19:25 | Update this project to 3.25.0. (check-in: 5efce2bd32 user: dan tags: trunk) | |
2018-09-04
| ||
17:24 | Upgrade gradle version to 3.1.4. (check-in: 193bea893f user: dan tags: trunk) | |
2018-06-04
| ||
19:55 | Update this project to version 3.24.0. (check-in: 6f830dd323 user: dan tags: trunk) | |
Changes
Changes to build.gradle.
1 2 3 4 5 6 7 8 | // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() google() } dependencies { | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:3.1.4' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { |
︙ | ︙ |
Changes to gradle/wrapper/gradle-wrapper.properties.
|
| | | | 1 2 3 4 5 6 | #Tue Sep 04 03:46:04 ICT 2018 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip |
Changes to sqlite3/build.gradle.
︙ | ︙ | |||
17 18 19 20 21 22 23 | } debug { minifyEnabled false debuggable true jniDebuggable true ndk { // Building with NDK_DEBUG=1 for mips crashes the compiler in ndk 14. | | < | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | } debug { minifyEnabled false debuggable true jniDebuggable true ndk { // Building with NDK_DEBUG=1 for mips crashes the compiler in ndk 14. abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' } } } //sourceSets.main.jni.srcDirs = [] //disable automatic ndk-build call externalNativeBuild { ndkBuild { path 'src/main/jni/Android.mk' |
︙ | ︙ |