Skip to content

Commit b87bfd3

Browse files
committed
refactor: Remove usage baseline
1 parent 90c7a86 commit b87bfd3

4 files changed

Lines changed: 33 additions & 33 deletions

File tree

app/build.gradle.kts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
id(libs.plugins.android.application.get().pluginId)
88
id(libs.plugins.kotlin.android.get().pluginId)
99
// id(libs.plugins.compose.compiler.get().pluginId)
10-
id(libs.plugins.baseline.profile.get().pluginId)
10+
// id(libs.plugins.baseline.profile.get().pluginId)
1111
}
1212

1313
android {
@@ -55,13 +55,13 @@ android {
5555
abortOnError = false
5656
}
5757

58-
buildTypes {
59-
create("benchmark") {
60-
signingConfig = signingConfigs.getByName("debug")
61-
matchingFallbacks += listOf("release")
62-
isDebuggable = false
63-
}
64-
}
58+
// buildTypes {
59+
// create("benchmark") {
60+
// signingConfig = signingConfigs.getByName("debug")
61+
// matchingFallbacks += listOf("release")
62+
// isDebuggable = false
63+
// }
64+
// }
6565
}
6666

6767
dependencies {
@@ -95,5 +95,5 @@ dependencies {
9595
// logger
9696
implementation(libs.stream.log)
9797

98-
baselineProfile(project(":benchmark"))
98+
// baselineProfile(project(":benchmark"))
9999
}

stream-webrtc-android-compose/build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
id(libs.plugins.android.library.get().pluginId)
88
id(libs.plugins.kotlin.android.get().pluginId)
99
// id(libs.plugins.compose.compiler.get().pluginId)
10-
id(libs.plugins.baseline.profile.get().pluginId)
10+
// id(libs.plugins.baseline.profile.get().pluginId)
1111
}
1212

1313
rootProject.extra.apply {
@@ -54,12 +54,12 @@ android {
5454
// reportsDestination = layout.buildDirectory.dir("compose_compiler")
5555
// }
5656

57-
baselineProfile {
58-
baselineProfileOutputDir = "."
59-
filter {
60-
include("io.getstream.webrtc.android.compose.**")
61-
}
62-
}
57+
// baselineProfile {
58+
// baselineProfileOutputDir = "."
59+
// filter {
60+
// include("io.getstream.webrtc.android.compose.**")
61+
// }
62+
// }
6363
}
6464

6565
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
@@ -82,5 +82,5 @@ dependencies {
8282
implementation(libs.androidx.compose.foundation)
8383
implementation(libs.androidx.compose.material)
8484

85-
baselineProfile(project(":benchmark"))
85+
// baselineProfile(project(":benchmark"))
8686
}

stream-webrtc-android-ktx/build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import io.getstream.Configurations
66
plugins {
77
id(libs.plugins.android.library.get().pluginId)
88
id(libs.plugins.kotlin.android.get().pluginId)
9-
id(libs.plugins.baseline.profile.get().pluginId)
9+
// id(libs.plugins.baseline.profile.get().pluginId)
1010
}
1111

1212
rootProject.extra.apply {
@@ -34,12 +34,12 @@ android {
3434
abortOnError = false
3535
}
3636

37-
baselineProfile {
38-
baselineProfileOutputDir = "."
39-
filter {
40-
include("io.getstream.webrtc.android.ktx.**")
41-
}
42-
}
37+
// baselineProfile {
38+
// baselineProfileOutputDir = "."
39+
// filter {
40+
// include("io.getstream.webrtc.android.ktx.**")
41+
// }
42+
// }
4343
}
4444

4545
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
@@ -56,5 +56,5 @@ tasks.withType(JavaCompile::class.java).configureEach {
5656
dependencies {
5757
api(project(":stream-webrtc-android"))
5858

59-
baselineProfile(project(":benchmark"))
59+
// baselineProfile(project(":benchmark"))
6060
}

stream-webrtc-android-ui/build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import io.getstream.Configurations
55
@Suppress("DSL_SCOPE_VIOLATION") plugins {
66
id(libs.plugins.android.library.get().pluginId)
77
id(libs.plugins.kotlin.android.get().pluginId)
8-
id(libs.plugins.baseline.profile.get().pluginId)
8+
// id(libs.plugins.baseline.profile.get().pluginId)
99
}
1010

1111
rootProject.extra.apply {
@@ -33,12 +33,12 @@ android {
3333
abortOnError = false
3434
}
3535

36-
baselineProfile {
37-
baselineProfileOutputDir = "."
38-
filter {
39-
include("io.getstream.webrtc.android.ui.**")
40-
}
41-
}
36+
// baselineProfile {
37+
// baselineProfileOutputDir = "."
38+
// filter {
39+
// include("io.getstream.webrtc.android.ui.**")
40+
// }
41+
// }
4242
}
4343

4444
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
@@ -55,5 +55,5 @@ tasks.withType(JavaCompile::class.java).configureEach {
5555
dependencies {
5656
api(project(":stream-webrtc-android"))
5757

58-
baselineProfile(project(":benchmark"))
58+
// baselineProfile(project(":benchmark"))
5959
}

0 commit comments

Comments
 (0)