File tree Expand file tree Collapse file tree 5 files changed +23
-15
lines changed
build-logic/src/main/kotlin/me/nya_n/notificationnotifier Expand file tree Collapse file tree 5 files changed +23
-15
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ internal fun Project.configureApplication(
8
8
extension : ApplicationExtension
9
9
) {
10
10
extension.apply {
11
- compileSdk = 35
11
+ compileSdk = libs.version( " compileSdk " ).toInt()
12
12
defaultConfig {
13
- minSdk = 30
14
- targetSdk = 35
15
- versionCode = 2
16
- versionName = " 1.1 "
13
+ minSdk = libs.version( " minSdk " ).toInt()
14
+ targetSdk = libs.version( " targetSdk " ).toInt()
15
+ versionCode = libs.version( " versionCode " ).toInt()
16
+ versionName = libs.version( " versionName " )
17
17
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
18
18
}
19
19
buildTypes {
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ internal fun Project.configureLibrary(
8
8
extension : LibraryExtension
9
9
) {
10
10
extension.apply {
11
- compileSdk = 35
11
+ compileSdk = libs.version( " compileSdk " ).toInt()
12
12
defaultConfig {
13
- minSdk = 30
13
+ minSdk = libs.version( " minSdk " ).toInt()
14
14
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
15
15
}
16
16
buildTypes {
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- agp = " 8.9.1"
2
+ # --- memo: unusedになっているがbuild-logic内から参照している ---
3
+ # Android Sdk Versions
4
+ compileSdk = " 35"
5
+ minSdk = " 35"
6
+ targetSdk = " 35"
7
+ # App Versions
8
+ versionCode = " 2"
9
+ versionName = " 1.1"
10
+ # ---------------------------------------------------------
11
+
12
+ # Library
13
+ agp = " 8.9.3"
3
14
kotlin = " 2.1.20"
4
15
com-google-devtools-ksp = " 2.1.20-2.0.1" # Kotlinのバージョンに合わせる必要がある
5
16
com-jaredsburrows-license = " 0.9.8"
6
17
androidx-core = " 1.16.0"
7
18
androidx-appcompat = " 1.7.1"
8
19
androidx-security = " 1.1.0-beta01"
9
20
androidx-splashscreen = " 1.0.1"
10
- androidx-compose-bom = " 2025.06.00 "
21
+ androidx-compose-bom = " 2025.06.01 "
11
22
androidx-compose-activity = " 1.10.1"
12
23
androidx-compose-viewmodel = " 2.9.1"
13
- androidx-compose-navigation = " 2.9.0 "
24
+ androidx-compose-navigation = " 2.9.1 "
14
25
androidx-compose-screenshot = " 0.0.1-alpha09"
15
26
junit = " 4.13.2"
16
27
com-google-truth = " 1.4.4"
17
28
androidx-test-ext = " 1.2.1"
18
29
androidx-test-espresso = " 3.6.1"
19
- androidx-room = " 2.7.1 "
30
+ androidx-room = " 2.7.2 "
20
31
io-insert-koin = " 4.1.0"
21
32
com-google-code-gson = " 2.13.1"
22
33
com-squareup-leakcanary = " 2.14"
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14-bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.2 -bin.zip
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -23,6 +23,3 @@ dependencies {
23
23
// その他
24
24
api(libs.com.google.code.gson)
25
25
}
26
-
27
- val Project .catalog
28
- get(): VersionCatalog = extensions.getByType<VersionCatalogsExtension >().named(" libs" )
You can’t perform that action at this time.
0 commit comments