Skip to content

Commit ff70e4c

Browse files
authored
Merge pull request #1549 from joreilly/project_cleanup
Initial attempt at getting build task running for project
2 parents d6071a0 + d0566f5 commit ff70e4c

File tree

14 files changed

+27
-188
lines changed

14 files changed

+27
-188
lines changed

androidApp/build.gradle.kts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff 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
}

androidBenchmark/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ plugins {
44
}
55

66
android {
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

androidBenchmark/src/main/java/dev/johnoreilly/confetti/benchmark/BaselineProfile.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()

backend/datastore/src/jvmTest/kotlin/test/MainTest.kt

Lines changed: 0 additions & 15 deletions
This file was deleted.

build-logic/src/main/kotlin/Dependencies.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ object WearSdk {
1414

1515
object AutomotiveSdk {
1616
const val min = 29
17-
const val compile = 34
17+
const val compile = 35
1818
const val target = 33
1919
}
2020

kotlin-js-store/yarn.lock

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff 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==

settings.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ pluginManagement {
3232

3333
rootProject.name = "Confetti"
3434
include(":androidApp")
35-
include(":androidBenchmark")
36-
include(":automotiveApp")
35+
//include(":androidBenchmark")
36+
//include(":automotiveApp")
3737
include(":common:car")
3838
include(":shared")
3939
include(":backend")
@@ -44,7 +44,6 @@ include(":backend:terraform")
4444
include(":landing-page")
4545
include(":wearApp")
4646
include(":wearBenchmark")
47-
include(":webApp")
4847
include(":compose-desktop")
4948
include(":compose-web")
5049
include(":proto")

wearApp/build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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

wearBenchmark/src/main/java/dev/johnoreilly/confetti/benchmark/BaselineProfile.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()

webApp/build.gradle.kts

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)