Skip to content

Commit 7f67fda

Browse files
Use release SDK version for compilation
The `app/build.gradle.kts` file has been updated to use a release version of the compile SDK, specifically version 36. Previously, the `compileSdk` was set directly to an integer. The new configuration uses the `release()` function to explicitly denote that a release version of the SDK is being targeted. This change improves the clarity and specificity of the build configuration.
1 parent 8fc73d0 commit 7f67fda

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ val versionCodeBase =
2929
android {
3030
namespace = "com.github.codeworkscreativehub.mlauncher"
3131

32-
compileSdk = 36
32+
compileSdk {
33+
version = release(36)
34+
}
3335

3436
defaultConfig {
3537
minSdk = 28

0 commit comments

Comments
 (0)