Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Upgrade gradle plugin to 2.14. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a2f61e3931dd55ad57f5cd7a819bafb5 |
User & Date: | dan 2016-10-19 18:28:04.252 |
Context
2016-11-04
| ||
12:29 | Upgrade this project to SQLite version 3.15.1. (check-in: 747a3d937a user: dan tags: trunk) | |
2016-10-19
| ||
18:28 | Upgrade gradle plugin to 2.14. (check-in: a2f61e3931 user: dan tags: trunk) | |
2016-10-14
| ||
11:36 | Upgrade this project to SQLite version 3.15. (check-in: 4c92d6406c user: dan tags: trunk) | |
Changes
Changes to build.gradle.
1 2 3 4 5 6 7 | // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { jcenter() } dependencies { | | | 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 { classpath 'com.android.tools.build:gradle:2.2.1' // 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 | #Wed Oct 19 18:56:36 ICT 2016 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip |
Changes to sqlite3/build.gradle.
1 2 3 4 | apply plugin: 'com.android.library' android { compileSdkVersion 23 | | | 1 2 3 4 5 6 7 8 9 10 11 12 | apply plugin: 'com.android.library' android { compileSdkVersion 23 buildToolsVersion '24.0.3' defaultConfig { minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" } |
︙ | ︙ |
Changes to sqlite3test/build.gradle.
1 2 3 4 | apply plugin: 'com.android.application' android { compileSdkVersion 23 | | | 1 2 3 4 5 6 7 8 9 10 11 12 | apply plugin: 'com.android.application' android { compileSdkVersion 23 buildToolsVersion '24.0.3' defaultConfig { applicationId "org.sqlite.customsqlitetest" minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" |
︙ | ︙ |