fix: 低リスク設定調整と依存関係・SDK更新 (9個の警告修正)#9
Merged
Conversation
## 順序1: 低リスク設定調整 (5個修正) ### AndroidManifest.xml - `<uses-sdk>`要素を削除(app/build.gradleと重複のため) - SettingsActivityの`android:exported="false"`に変更(ExportedPreferenceActivity警告対応) ### textboxpref.xml - ScrollView内の不要なLinearLayoutを削除(UselessParent警告対応) ### pref_seekbar_pref.xml - SeekBar1とSeekBar3の`android:layout_weight`属性を削除(ObsoleteLayoutParam警告対応) ## 順序2: 依存関係・SDK更新 (4個修正) ### build.gradle & app/build.gradle - targetSdk: 34 → 35に更新(OldTargetApi警告対応) - compileSdk: 34 → 35に更新 - appcompat: 1.6.1 → 1.7.0に更新(GradleDependency警告対応) - Kotlin依存関係競合: resolution strategyでkotlin-stdlib-jdk重複を解決 ## ビルド確認 - `./gradlew assembleDebug` - BUILD SUCCESSFUL ✅ Co-authored-by: 106- <106-@users.noreply.github.com>
Owner
Author
|
実機でも確認したのだ! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
概要
推奨対応順序1と2の9個の警告を修正しました。
順序1: 低リスク設定調整 (5個修正)
AndroidManifest.xml
<uses-sdk>要素を削除(app/build.gradleと重複のため)android:exported="false"に変更(ExportedPreferenceActivity警告対応)textboxpref.xml
pref_seekbar_pref.xml
android:layout_weight属性を削除(ObsoleteLayoutParam警告対応)順序2: 依存関係・SDK更新 (4個修正)
build.gradle & app/build.gradle
ビルド確認
./gradlew assembleDebug- BUILD SUCCESSFUL ✅関連Issue
Closes #4 (part 2/3)
Generated with Claude Code