SQLite Android Bindings

Check-in [9e0de54b71]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Upgrade build.gradle to include new google() repository.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9e0de54b71bb6bd3cd2eb40790307d0fa67cab82
User & Date: dan 2018-01-22 19:26:17.480
Context
2018-04-02
11:10
Update this project to version 3.23.0. (check-in: b085f3f1fc user: dan tags: trunk)
2018-01-22
19:26
Upgrade build.gradle to include new google() repository. (check-in: 9e0de54b71 user: dan tags: trunk)
18:59
Upgrade this project to version 3.22.0. (check-in: 1dfc539feb user: dan tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to build.gradle.
1
2
3
4
5

6
7
8
9
10
11
12
// 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
    }





>







1
2
3
4
5
6
7
8
9
10
11
12
13
// 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.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }