Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Things #453

Merged
merged 1 commit into from
Aug 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

| versionName | versionCode | name | year |
|--------------------------------------------|-------------|-------|------|
| Build.VERSION_CODES.UPSIDE_DOWN_CAKE | 34 | 14 | 2023 |
| Build.VERSION_CODES.TIRAMISU | 33 | 13 | 2022 |
| Build.VERSION_CODES.S_V2 | 32 | 12L | 2022 |
| Build.VERSION_CODES.S | 31 | 12.0 | 2021 |
Expand Down
1 change: 0 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ android {
resValue("string", "app_name", "$appName.debug")
signingConfig = releaseSigning
isJniDebuggable = true
isRenderscriptDebuggable = true
isCrunchPngs = false
}
}
Expand Down
1 change: 0 additions & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,4 @@ dependencies {

testImplementation(libs.kotlin.junit5)
testImplementation(libs.square.okHttp.mock)
testImplementation(libs.square.okHttp.mockJunit5)
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ org.gradle.jvmargs=-Dfile.encoding=UTF-8 \
org.gradle.parallel=true

# https://android-developers.googleblog.com/2023/07/try-k2-compiler-in-your-android-projects.html
android.experimental.lint.version=8.2.0-alpha15
android.experimental.lint.version=8.2.0-beta01
android.lint.useK2Uast=true
kotlin.experimental.tryK2=true
3 changes: 1 addition & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ androidX-activity = "1.7.2"
androidX-appCompat = "1.6.1"
androidX-collection = "1.2.0"
androidX-compose = "1.3.1"
androidX-composeCompiler = "1.5.1"
androidX-composeCompiler = "1.5.2"
androidX-core = "1.10.1"
androidX-fragment = "1.6.1"
androidX-lifecycle = "2.6.1"
Expand Down Expand Up @@ -75,7 +75,6 @@ square-moshi-compiler = { module = "com.squareup.moshi:moshi-kotlin-codegen", ve
square-okHttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "square-okHttp" }
square-okHttp-LogInterceptor = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "square-okHttp" }
square-okHttp-mock = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "square-okHttp" }
square-okHttp-mockJunit5 = { module = "com.squareup.okhttp3:mockwebserver3-junit5", version.ref = "square-okHttp" }
square-retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "square-retrofit" }
square-retrofit-gson = { module = "com.squareup.retrofit2:converter-gson", version.ref = "square-retrofit" }
square-retrofit-moshi = { module = "com.squareup.retrofit2:converter-moshi", version.ref = "square-retrofit" }
Expand Down