Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update gradle version to 3.0.0. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
89b788860cf94b4eeaab32d87b6ebd4b |
User & Date: | dan 2017-11-23 14:27:13.946 |
Context
2017-11-23
| ||
15:44 | Copy lots of tests files from the Android CTS git repository into this project. The tests do not yet pass. (check-in: beaa7ed530 user: dan tags: trunk) | |
14:27 | Update gradle version to 3.0.0. (check-in: 89b788860c user: dan tags: trunk) | |
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 | // 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:3.0.0' // 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 | #Sun Nov 12 03:46:22 ICT 2017 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip |
Changes to sqlite3/build.gradle.
1 2 3 4 | apply plugin: 'com.android.library' android { compileSdkVersion 25 | < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | apply plugin: 'com.android.library' android { compileSdkVersion 25 defaultConfig { minSdkVersion 16 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { |
︙ | ︙ |