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

Commit 85569c2f authored by Ady Abraham's avatar Ady Abraham
Browse files

TouchLatency: upgrade to gradle 8.12.0

Change-Id: I65f52605639e4fe20c99199d545ecea7f6def11a
Test: TouchLatency
Bug: NA
Flag: EXEMPT DEBUG
parent 91c48c69
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -13,7 +13,10 @@ android_test {
    manifest: "app/src/main/AndroidManifest.xml",
    // omit gradle 'build' dir
    srcs: ["app/src/main/java/**/*.java"],
    static_libs: ["com.google.android.material_material"],
    static_libs: [
        "com.google.android.material_material",
        "androidx.appcompat_appcompat",
    ],
    resource_dirs: ["app/src/main/res"],
    aaptflags: ["--auto-add-overlay"],
    sdk_version: "current",
+1 −0
Original line number Diff line number Diff line
@@ -21,4 +21,5 @@ android {
        implementation 'androidx.appcompat:appcompat:1.5.1'
        implementation 'com.google.android.material:material:1.6.0'
    }
    namespace 'com.prefabulated.touchlatency'
}
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ buildscript {
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:7.4.2'
        classpath 'com.android.tools.build:gradle:8.12.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
+3 −0
Original line number Diff line number Diff line
@@ -16,4 +16,7 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
android.nonTransitiveRClass=false
android.useAndroidX=true
 No newline at end of file
Loading