Skip to content

Commit

Permalink
Updated baseline profile dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthonyy232 committed Oct 13, 2024
1 parent 10240aa commit 2bfd46d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
18 changes: 9 additions & 9 deletions baselineProfile/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ plugins {

android {
namespace = "com.anthonyla.paperize.baselineprofile"
compileSdk = 34
compileSdk = 35

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}

defaultConfig {
minSdk = 28
targetSdk = 34
targetSdk = 35

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand All @@ -48,10 +48,10 @@ baselineProfile {
}

dependencies {
implementation("androidx.test.ext:junit:1.2.1")
implementation("androidx.test.espresso:espresso-core:3.6.1")
implementation("androidx.test.uiautomator:uiautomator:2.3.0")
implementation("androidx.benchmark:benchmark-macro-junit4:1.3.2")
implementation(libs.androidx.junit)
implementation(libs.androidx.espresso.core)
implementation(libs.androidx.uiautomator)
implementation(libs.androidx.benchmark.macro.junit4)
}

androidComponents {
Expand Down
4 changes: 4 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[versions]
androidGradlePlugin = "8.7.0"
benchmarkMacroJunit4 = "1.3.2"
kotlin = "2.0.21"
hilt = "2.52"
ksp = "2.0.21-1.0.25"
Expand Down Expand Up @@ -40,6 +41,7 @@ roomCompiler = "2.6.1"
taskerpluginlibrary = "0.4.10"
toolbarCompose = "2.3.5"
ui = "1.7.3"
uiautomatorVersion = "2.3.0"
workRuntimeKtx = "2.10.0-beta01"
zoomable = "2.0.0-beta01"

Expand All @@ -49,6 +51,7 @@ aboutlibraries-core = { module = "com.mikepenz:aboutlibraries-core", version.ref
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanistPermissions" }
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "activityCompose" }
androidx-animation = { module = "androidx.compose.animation:animation", version.ref = "animation" }
androidx-benchmark-macro-junit4 = { module = "androidx.benchmark:benchmark-macro-junit4", version.ref = "benchmarkMacroJunit4" }
androidx-compose-bom = { module = "androidx.compose:compose-bom", version.ref = "composeBom" }
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "coreKtx" }
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "coreSplashscreen" }
Expand Down Expand Up @@ -76,6 +79,7 @@ androidx-ui-test-junit4 = { module = "androidx.compose.ui:ui-test-junit4", versi
androidx-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "ui" }
androidx-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "ui" }
androidx-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "ui" }
androidx-uiautomator = { module = "androidx.test.uiautomator:uiautomator", version.ref = "uiautomatorVersion" }
androidx-work-runtime-ktx = { module = "androidx.work:work-runtime-ktx", version.ref = "workRuntimeKtx" }
dfc = { module = "com.lazygeniouz:dfc", version.ref = "dfc" }
filament-android = { module = "com.google.ar.sceneform:filament-android", version.ref = "filamentAndroid" }
Expand Down

0 comments on commit 2bfd46d

Please sign in to comment.