Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update gradle plugin to 2.3.1 and buildToolsVersion to 25.0.0. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
493c4380421ef92b246d2d908c9c7559 |
User & Date: | dan 2017-04-27 17:28:39.432 |
Context
2017-04-27
| ||
17:50 | Upgrade this branch to use the build.gradle from the api-level-9 branch. To support building both the libraries and java classes in a single step (or from within Android Studio). (check-in: 3a63f88d36 user: dan tags: trunk) | |
17:28 | Update gradle plugin to 2.3.1 and buildToolsVersion to 25.0.0. (check-in: 493c438042 user: dan tags: trunk) | |
2017-03-30
| ||
14:34 | Update this project to SQLite version 3.18.0. (check-in: dc68ae8e82 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.3.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 | #Thu Apr 27 23:58:23 ICT 2017 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-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 '25.0.0' 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 '25.0.0' defaultConfig { applicationId "org.sqlite.customsqlitetest" minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" |
︙ | ︙ |