File tree Expand file tree Collapse file tree 14 files changed +27
-188
lines changed
src/main/java/dev/johnoreilly/confetti/benchmark
backend/datastore/src/jvmTest/kotlin/test
build-logic/src/main/kotlin
wearBenchmark/src/main/java/dev/johnoreilly/confetti/benchmark Expand file tree Collapse file tree 14 files changed +27
-188
lines changed Original file line number Diff line number Diff line change @@ -113,18 +113,18 @@ android {
113113
114114 matchingFallbacks + = listOf (" release" )
115115 }
116- create(" benchmark" ) {
117- isShrinkResources = true
118- isMinifyEnabled = true
119- signingConfig = signingConfigs.getByName(" confetti" )
120- setProguardFiles(
121- listOf (
122- getDefaultProguardFile(" proguard-android.txt" ),
123- " proguard-benchmark.pro"
124- )
125- )
126- matchingFallbacks.addAll(listOf (" release" ))
127- }
116+ // create("benchmark") {
117+ // isShrinkResources = true
118+ // isMinifyEnabled = true
119+ // signingConfig = signingConfigs.getByName("confetti")
120+ // setProguardFiles(
121+ // listOf(
122+ // getDefaultProguardFile("proguard-android.txt"),
123+ // "proguard-benchmark.pro"
124+ // )
125+ // )
126+ // matchingFallbacks.addAll(listOf("release"))
127+ // }
128128 getByName(" debug" ) {
129129 signingConfig = signingConfigs.getByName(" confetti" )
130130 }
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ plugins {
44}
55
66android {
7- compileSdk = 33
7+ compileSdk = 35
88
99 defaultConfig {
1010 minSdk = 29
11- targetSdk = 33
11+ targetSdk = 35
1212 testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
1313 }
1414
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class BaselineProfile {
1818
1919 @Test
2020 fun openAndScroll () {
21- baselineRule.collectBaselineProfile (
21+ baselineRule.collect (
2222 packageName = " dev.johnoreilly.confetti"
2323 ) {
2424 pressHome()
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ object WearSdk {
1414
1515object AutomotiveSdk {
1616 const val min = 29
17- const val compile = 34
17+ const val compile = 35
1818 const val target = 33
1919}
2020
Original file line number Diff line number Diff line change @@ -2811,12 +2811,7 @@ wrappy@1:
28112811 resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
28122812 integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
28132813
2814- ws@8.5.0 :
2815- version "8.5.0"
2816- resolved "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz#bfb4be96600757fe5382de12c670dab984a1ed4f"
2817- integrity sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==
2818-
2819- ws@^8.13.0 :
2814+ ws@8.18.0, ws@^8.13.0 :
28202815 version "8.18.0"
28212816 resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
28222817 integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ pluginManagement {
3232
3333rootProject.name = " Confetti"
3434include(" :androidApp" )
35- include(" :androidBenchmark" )
36- include(" :automotiveApp" )
35+ // include(":androidBenchmark")
36+ // include(":automotiveApp")
3737include(" :common:car" )
3838include(" :shared" )
3939include(" :backend" )
@@ -44,7 +44,6 @@ include(":backend:terraform")
4444include(" :landing-page" )
4545include(" :wearApp" )
4646include(" :wearBenchmark" )
47- include(" :webApp" )
4847include(" :compose-desktop" )
4948include(" :compose-web" )
5049include(" :proto" )
Original file line number Diff line number Diff line change @@ -99,13 +99,13 @@ android {
9999 signingConfig = signingConfigs.getByName(" release" )
100100 setProguardFiles(listOf (getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro" ))
101101 }
102- create(" benchmark" ) {
103- isShrinkResources = true
104- isMinifyEnabled = true
105- signingConfig = signingConfigs.getByName(" confetti" )
106- setProguardFiles(listOf (getDefaultProguardFile(" proguard-android.txt" ), " proguard-benchmark.pro" ))
107- matchingFallbacks.addAll(listOf (" release" ))
108- }
102+ // create("benchmark") {
103+ // isShrinkResources = true
104+ // isMinifyEnabled = true
105+ // signingConfig = signingConfigs.getByName("confetti")
106+ // setProguardFiles(listOf(getDefaultProguardFile("proguard-android.txt"), "proguard-benchmark.pro"))
107+ // matchingFallbacks.addAll(listOf("release"))
108+ // }
109109 create(" githubRelease" ) {
110110 isShrinkResources = true
111111 isMinifyEnabled = true
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class BaselineProfile {
1212
1313 @Test
1414 fun profile () {
15- baselineRule.collectBaselineProfile (
15+ baselineRule.collect (
1616 packageName = " dev.johnoreilly.confetti"
1717 ) {
1818 startActivityAndWait()
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments