Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f17c8ac authored by Joey's avatar Joey
Browse files

Update gradle deps



Change-Id: I8cc4367b925a4442864b5f27fd54e98e7065652f
Signed-off-by: default avatarJoey <joey@lineageos.org>
parent 4243ee0d
Loading
Loading
Loading
Loading
+6 −6
Original line number Original line Diff line number Diff line
apply plugin: 'com.android.application'
apply plugin: 'com.android.application'


android {
android {
    compileSdkVersion 26
    compileSdkVersion 27
    buildToolsVersion "26.0.2"
    buildToolsVersion "27.0.2"
    defaultConfig {
    defaultConfig {
        applicationId "org.lineageos.recorder"
        applicationId "org.lineageos.recorder"
        minSdkVersion 26
        minSdkVersion 26
        targetSdkVersion 26
        targetSdkVersion 27
        versionCode 1
        versionCode 1
        versionName "1.1"
        versionName "1.1"
    }
    }
@@ -26,9 +26,9 @@ android {


dependencies {
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:26.0.1'
    compile 'com.android.support:appcompat-v7:27.0.2'
    compile 'com.android.support:design:26.0.1'
    compile 'com.android.support:design:27.0.2'
    compile 'com.android.support:cardview-v7:26.0.1'
    compile 'com.android.support:cardview-v7:27.0.2'
    // Beta3 breaks ConstraintSets
    // Beta3 breaks ConstraintSets
    //noinspection GradleDependency
    //noinspection GradleDependency
    compile 'com.android.support.constraint:constraint-layout:1.1.0-beta2'
    compile 'com.android.support.constraint:constraint-layout:1.1.0-beta2'
+3 −1
Original line number Original line Diff line number Diff line
@@ -3,9 +3,10 @@
buildscript {
buildscript {
    repositories {
    repositories {
        jcenter()
        jcenter()
        google()
    }
    }
    dependencies {
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'
        classpath 'com.android.tools.build:gradle:3.0.1'


        // NOTE: Do not place your application dependencies here; they belong
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        // in the individual module build.gradle files
@@ -18,6 +19,7 @@ allprojects {
        maven {
        maven {
            url 'https://maven.google.com'
            url 'https://maven.google.com'
        }
        }
        google()
    }
    }
}
}