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(
88 extension : ApplicationExtension
99) {
1010 extension.apply {
11- compileSdk = 35
11+ compileSdk = libs.version( " compileSdk " ).toInt()
1212 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 " )
1717 testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
1818 }
1919 buildTypes {
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ internal fun Project.configureLibrary(
88 extension : LibraryExtension
99) {
1010 extension.apply {
11- compileSdk = 35
11+ compileSdk = libs.version( " compileSdk " ).toInt()
1212 defaultConfig {
13- minSdk = 30
13+ minSdk = libs.version( " minSdk " ).toInt()
1414 testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
1515 }
1616 buildTypes {
Original file line number Diff line number Diff line change 11[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"
314kotlin = " 2.1.20"
415com-google-devtools-ksp = " 2.1.20-2.0.1" # Kotlinのバージョンに合わせる必要がある
516com-jaredsburrows-license = " 0.9.8"
617androidx-core = " 1.16.0"
718androidx-appcompat = " 1.7.1"
819androidx-security = " 1.1.0-beta01"
920androidx-splashscreen = " 1.0.1"
10- androidx-compose-bom = " 2025.06.00 "
21+ androidx-compose-bom = " 2025.06.01 "
1122androidx-compose-activity = " 1.10.1"
1223androidx-compose-viewmodel = " 2.9.1"
13- androidx-compose-navigation = " 2.9.0 "
24+ androidx-compose-navigation = " 2.9.1 "
1425androidx-compose-screenshot = " 0.0.1-alpha09"
1526junit = " 4.13.2"
1627com-google-truth = " 1.4.4"
1728androidx-test-ext = " 1.2.1"
1829androidx-test-espresso = " 3.6.1"
19- androidx-room = " 2.7.1 "
30+ androidx-room = " 2.7.2 "
2031io-insert-koin = " 4.1.0"
2132com-google-code-gson = " 2.13.1"
2233com-squareup-leakcanary = " 2.14"
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -23,6 +23,3 @@ dependencies {
2323 // その他
2424 api(libs.com.google.code.gson)
2525}
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