-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add demo app to ci builds * run from subdir * add jar * fixing build * need to touch the demo local.properties too * demo app gets its on version catalog * try and get renovate to chill out in the demo app project * add name * scale image down * more dep updates * remove root local.properties * add target sdk for app * simplify catalog
- Loading branch information
1 parent
1723ab2
commit b18e01a
Showing
14 changed files
with
83 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.idea | ||
.gradle | ||
/local.properties | ||
demo-app/local.properties | ||
.DS_Store | ||
**/build/ | ||
**/build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[versions] | ||
opentelemetry = "1.38.0" | ||
junit = "5.10.2" | ||
spotless = "6.25.0" | ||
kotlin = "1.9.24" | ||
|
||
[libraries] | ||
androidx-appcompat = "androidx.appcompat:appcompat:1.6.1" | ||
opentelemetry-exporter-otlp = { module = "io.opentelemetry:opentelemetry-exporter-otlp", version.ref = "opentelemetry" } | ||
|
||
#Test tools | ||
androidx-junit = "androidx.test.ext:junit:1.1.5" | ||
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" } | ||
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" } | ||
junit-vintage-engine = { module = "org.junit.vintage:junit-vintage-engine", version.ref = "junit" } | ||
|
||
#Compilation tools | ||
desugarJdkLibs = "com.android.tools:desugar_jdk_libs:2.0.4" | ||
|
||
# demo-app | ||
androidx-core-ktx = "androidx.core:core-ktx:1.13.1" | ||
androidx-lifecycle-runtime-ktx = "androidx.lifecycle:lifecycle-runtime-ktx:2.8.0" | ||
androidx-compose-bom = "androidx.compose:compose-bom:2024.05.00" | ||
androidx-activity-compose = "androidx.activity:activity-compose:1.9.0" | ||
androidx-ui = { group = "androidx.compose.ui", name = "ui" } | ||
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" } | ||
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" } | ||
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" } | ||
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" } | ||
androidx-material3 = { group = "androidx.compose.material3", name = "material3" } | ||
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version = "2.1.4" } | ||
material = { group = "com.google.android.material", name = "material", version = "1.12.0" } | ||
androidx-lifecycle-livedata-ktx = { group = "androidx.lifecycle", name = "lifecycle-livedata-ktx", version = "2.8.0" } | ||
androidx-lifecycle-viewmodel-ktx = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", version = "2.8.0" } | ||
androidx-navigation-fragment-ktx = { group = "androidx.navigation", name = "navigation-fragment-ktx", version = "2.7.7" } | ||
androidx-navigation-ui-ktx = { group = "androidx.navigation", name = "navigation-ui-ktx", version = "2.7.7" } | ||
|
||
[bundles] | ||
junit = ["junit-jupiter-api", "junit-jupiter-engine", "junit-vintage-engine"] | ||
|
||
[plugins] | ||
spotless = { id = "com.diffplug.spotless", version.ref = "spotless" } | ||
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-dontwarn com.fasterxml.jackson.core.JsonFactory | ||
-dontwarn com.fasterxml.jackson.core.JsonGenerator | ||
-dontwarn com.google.auto.value.AutoValue$Builder | ||
-dontwarn com.google.auto.value.AutoValue | ||
-dontwarn com.google.auto.value.extension.memoized.Memoized |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters