Skip to content
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
2 changes: 1 addition & 1 deletion AndroidApp/.idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions AndroidApp/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id("common.android")
alias(libs.plugins.about.libraries)
}

android {
Expand All @@ -26,4 +27,5 @@ dependencies {
// その他
implementation(libs.io.insert.koin)
debugImplementation(libs.com.squareup.leakcanary.android)
implementation(libs.about.libraries.core)
}
12 changes: 0 additions & 12 deletions AndroidApp/app/licenses.yml

This file was deleted.

2 changes: 1 addition & 1 deletion AndroidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ plugins {
alias(libs.plugins.org.jetbrains.kotlin.android) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.com.google.devtools.ksp) apply false
alias(libs.plugins.com.jaredsburrows.license) apply false
alias(libs.plugins.about.libraries) apply false
}
12 changes: 9 additions & 3 deletions AndroidApp/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ agp = "9.0.0"
kotlin = "2.3.0"
kotlinx-coroutines = "1.10.2"
com-google-devtools-ksp = "2.3.4"
com-jaredsburrows-license = "0.9.8"
androidx-core = "1.17.0"
androidx-appcompat = "1.7.1"
androidx-security = "1.1.0"
Expand All @@ -33,15 +32,16 @@ io-insert-koin = "4.1.1"
com-google-code-gson = "2.13.2"
com-squareup-leakcanary = "2.14"
mockk = "1.14.7"
about-libraries = "14.0.0-b01"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🌐 Web query:

aboutlibraries mikepenz latest stable version 14.0.0

💡 Result:

Short answer: No — 14.0.0 is not a stable release yet. The latest stable release of AboutLibraries is 13.1.0; 14.0.0 artifacts are published as pre-releases (14.0.0-a*/b*). [1][2][3]

Sources:

  • com.mikepenz artifact listing (shows aboutlibraries latest = 13.1.0). [1]
  • Maven / mvnrepository entry for aboutlibraries-core 13.1.0 (stable, Oct 13, 2025). [2]
  • Gradle Plugin Portal showing 14.0.0 pre-release versions (a01 / b01). [3]

References:
[1] (javadoc.io)
[2] (mvnrepository.com)
[3] (plugins.gradle.org)

Citations:


about-libraries を安定版にアップグレードしてください。

現在使用している 14.0.0-b01 はベータ版です。最新の安定版は 13.1.0 (2025年10月13日リリース)です。本番環境では安定版を使用してください。バージョンを 13.1.0 に更新することをお勧めします。

🤖 Prompt for AI Agents
In `@AndroidApp/gradle/libs.versions.toml` at line 36, Update the about-libraries
dependency from the beta version to the stable release by changing the toml
entry about-libraries = "14.0.0-b01" to about-libraries = "13.1.0" so the
project uses the recommended stable 13.1.0 release instead of the beta.


[plugins]
com-android-application = { id = "com.android.application", version.ref = "agp" }
com-android-library = { id = "com.android.library", version.ref = "agp" }
org-jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
com-google-devtools-ksp = { id = "com.google.devtools.ksp", version.ref = "com-google-devtools-ksp" }
com-jaredsburrows-license = { id = "com.jaredsburrows.license", version.ref = "com-jaredsburrows-license" }
screenshot = { id = "com.android.compose.screenshot", version.ref = "androidx-compose-screenshot" }
about-libraries = { id = "com.mikepenz.aboutlibraries.plugin.android", version.ref = "about-libraries" }

[libraries]
# androidx
Expand Down Expand Up @@ -77,10 +77,16 @@ screenshot-validation-api = { group = "com.android.tools.screenshot", name = "sc
android-gradle-plugin = { module = "com.android.tools.build:gradle", version.ref = "agp" }

# その他
com-google-code-gson = { module = "com.google.code.gson:gson", version.ref = "com-google-code-gson" }
# DI
io-insert-koin = { module = "io.insert-koin:koin-android", version.ref = "io-insert-koin" }
io-insert-koin-compose = { module = "io.insert-koin:koin-androidx-compose", version.ref = "io-insert-koin" }
com-google-code-gson = { module = "com.google.code.gson:gson", version.ref = "com-google-code-gson" }
# analyze
com-squareup-leakcanary-android = { module = "com.squareup.leakcanary:leakcanary-android", version.ref = "com-squareup-leakcanary" }
# license
about-libraries-core = { module = "com.mikepenz:aboutlibraries-core", version.ref = "about-libraries" }
about-libraries-compose-core = { module = "com.mikepenz:aboutlibraries-compose-core", version.ref = "about-libraries" }
about-libraries-compose-m3 = { module = "com.mikepenz:aboutlibraries-compose-m3", version.ref = "about-libraries" }

[bundles]
androidx-compose = [
Expand Down
4 changes: 2 additions & 2 deletions AndroidApp/ui/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
plugins {
id("common.library.compose")
// note: 最新のgradle/agp非対応
// alias(libs.plugins.com.jaredsburrows.license)
alias(libs.plugins.screenshot)
}

Expand Down Expand Up @@ -29,4 +27,6 @@ dependencies {
// その他
implementation(libs.io.insert.koin)
implementation(libs.io.insert.koin.compose)
implementation(libs.about.libraries.compose.core)
implementation(libs.about.libraries.compose.m3)
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1>Test Summary</h1>
<tr>
<td>
<div class="infoBox" id="tests">
<div class="counter">16</div>
<div class="counter">17</div>
<p>tests</p>
</div>
</td>
Expand All @@ -43,7 +43,7 @@ <h1>Test Summary</h1>
</td>
<td>
<div class="infoBox" id="duration">
<div class="counter">3.154s</div>
<div class="counter">3.747s</div>
<p>duration</p>
</div>
</td>
Expand Down Expand Up @@ -88,11 +88,11 @@ <h2>Packages</h2>
<td class="success">
<a href="me.nya_n.notificationnotifier.html">me.nya_n.notificationnotifier</a>
</td>
<td>16</td>
<td>17</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>3.154s</td>
<td>3.747s</td>
<td class="success">100%</td>
</tr>
</tbody>
Expand Down Expand Up @@ -120,17 +120,17 @@ <h2>Classes</h2>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1.615s</td>
<td>1.931s</td>
<td class="success">100%</td>
</tr>
<tr>
<td class="success"/>
<a href="me.nya_n.notificationnotifier.ContentScreenshotTest.html">me.nya_n.notificationnotifier.ContentScreenshotTest</a>
<td>5</td>
<td>6</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1.539s</td>
<td>1.816s</td>
<td class="success">100%</td>
</tr>
</tbody>
Expand All @@ -139,7 +139,7 @@ <h2>Classes</h2>
</div>
<div id="footer">
<p>Generated by
<a href="http://www.gradle.org">Gradle 8.14.3</a> at Jan 19, 2026, 11:38:47 PM</p>
<a href="http://www.gradle.org">Gradle 9.1.0</a> at Jan 21, 2026, 12:05:22 AM</p>
</div>
</div>
</body>
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h1>Class me.nya_n.notificationnotifier.ComponentScreenshotTest</h1>
</td>
<td>
<div class="infoBox" id="duration">
<div class="counter">1.615s</div>
<div class="counter">1.931s</div>
<p>duration</p>
</div>
</td>
Expand Down Expand Up @@ -361,7 +361,7 @@ <h3 class="success">TopBarComponentScreenshotTest</h3>
</div>
<div id="footer">
<p>Generated by
<a href="http://www.gradle.org">Gradle 8.14.3</a> at Jan 19, 2026, 11:38:47 PM</p>
<a href="http://www.gradle.org">Gradle 9.1.0</a> at Jan 21, 2026, 12:05:22 AM</p>
</div>
</div>
</body>

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1>Package me.nya_n.notificationnotifier</h1>
<tr>
<td>
<div class="infoBox" id="tests">
<div class="counter">16</div>
<div class="counter">17</div>
<p>tests</p>
</div>
</td>
Expand All @@ -45,7 +45,7 @@ <h1>Package me.nya_n.notificationnotifier</h1>
</td>
<td>
<div class="infoBox" id="duration">
<div class="counter">3.154s</div>
<div class="counter">3.747s</div>
<p>duration</p>
</div>
</td>
Expand Down Expand Up @@ -90,26 +90,26 @@ <h2>Classes</h2>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1.615s</td>
<td>1.931s</td>
<td class="success">100%</td>
</tr>
<tr>
<td class="success">
<a href="me.nya_n.notificationnotifier.ContentScreenshotTest.html">ContentScreenshotTest</a>
</td>
<td>5</td>
<td>6</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1.539s</td>
<td>1.816s</td>
<td class="success">100%</td>
</tr>
</table>
</div>
</div>
<div id="footer">
<p>Generated by
<a href="http://www.gradle.org">Gradle 8.14.3</a> at Jan 19, 2026, 11:38:47 PM</p>
<a href="http://www.gradle.org">Gradle 9.1.0</a> at Jan 21, 2026, 12:05:22 AM</p>
</div>
</div>
</body>
Loading