diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-15 06:52:23 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-15 06:52:23 +0000 |
| commit | cc76e4f3cc4e4d958f398ed2899a8d653815985b (patch) | |
| tree | 74befb533f198c0e072bce567317924d051a4157 /.claude | |
| parent | c3f1178d30de7f1c5c536d0863d547299f2ab54e (diff) | |
fix: move weather feature to org/terst/nav package directories
Package declarations were already org.terst.nav.* but files lived under
com/example/androidapp/. Kotlin 2.0 (K2) compiler on CI fails when
package declarations don't match directory structure during kapt stub
generation. Moved all 20 files to their correct locations and renamed
MainActivity (weather) -> WeatherActivity to avoid confusion with the
nav app's MainActivity.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to '.claude')
| -rw-r--r-- | .claude/settings.local.json | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 0000000..6c12812 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,23 @@ +{ + "permissions": { + "allow": [ + "Bash(cd android-app:*)", + "Read(//opt/android-sdk/**)", + "Read(//usr/local/**)", + "Read(//root/**)", + "Bash(find / -name adb -type f)", + "Bash(ANDROID_HOME=/opt/android-sdk cd android-app && ANDROID_HOME=/opt/android-sdk ./gradlew assembleDebug 2>&1 | tail -20)", + "Bash(ANDROID_HOME=/opt/android-sdk ./gradlew assembleDebug 2>&1 | tail -30)", + "Bash(ANDROID_HOME=/opt/android-sdk ./gradlew assembleDebug 2>&1 | tail -20)", + "Bash(git commit:*)", + "Bash(git push:*)", + "Bash(git fetch:*)", + "Bash(git add:*)", + "Bash(cd:*)", + "Bash(ANDROID_HOME=/opt/android-sdk ./gradlew assembleDebug 2>&1 | grep \"^e:\" | head -30)", + "Bash(find:*)", + "Bash(ANDROID_HOME=/opt/android-sdk ./gradlew assembleDebug 2>&1 | grep \"^e:\" | head -20)", + "Bash(ANDROID_HOME=/opt/android-sdk ./gradlew assembleDebug 2>&1 | tail -10)" + ] + } +} |
