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
38 changes: 0 additions & 38 deletions .github/workflows/claude-pr-review.yaml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/claude.yaml

This file was deleted.

16 changes: 13 additions & 3 deletions .idea/gradle.xml

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

1 change: 1 addition & 0 deletions .serena/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/cache
67 changes: 67 additions & 0 deletions .serena/project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# language of the project (csharp, python, rust, java, typescript, go, cpp, or ruby)
# * For C, use cpp
# * For JavaScript, use typescript
# Special requirements:
# * csharp: Requires the presence of a .sln file in the project folder.
language: kotlin

# whether to use the project's gitignore file to ignore files
# Added on 2025-04-07
ignore_all_files_in_gitignore: true
# list of additional paths to ignore
# same syntax as gitignore, so you can use * and **
# Was previously called `ignored_dirs`, please update your config if you are using that.
# Added (renamed) on 2025-04-07
ignored_paths: []

# whether the project is in read-only mode
# If set to true, all editing tools will be disabled and attempts to use them will result in an error
# Added on 2025-04-18
read_only: false

# list of tool names to exclude. We recommend not excluding any tools, see the readme for more details.
# Below is the complete list of tools for convenience.
# To make sure you have the latest list of tools, and to view their descriptions,
# execute `uv run scripts/print_tool_overview.py`.
#
# * `activate_project`: Activates a project by name.
# * `check_onboarding_performed`: Checks whether project onboarding was already performed.
# * `create_text_file`: Creates/overwrites a file in the project directory.
# * `delete_lines`: Deletes a range of lines within a file.
# * `delete_memory`: Deletes a memory from Serena's project-specific memory store.
# * `execute_shell_command`: Executes a shell command.
# * `find_referencing_code_snippets`: Finds code snippets in which the symbol at the given location is referenced.
# * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type).
# * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type).
# * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes.
# * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file.
# * `initial_instructions`: Gets the initial instructions for the current project.
# Should only be used in settings where the system prompt cannot be set,
# e.g. in clients you have no control over, like Claude Desktop.
# * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol.
# * `insert_at_line`: Inserts content at a given line in a file.
# * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol.
# * `list_dir`: Lists files and directories in the given directory (optionally with recursion).
# * `list_memories`: Lists memories in Serena's project-specific memory store.
# * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building).
# * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context).
# * `read_file`: Reads a file within the project directory.
# * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store.
# * `remove_project`: Removes a project from the Serena configuration.
# * `replace_lines`: Replaces a range of lines within a file with new content.
# * `replace_symbol_body`: Replaces the full definition of a symbol.
# * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen.
# * `search_for_pattern`: Performs a search for a pattern in the project.
# * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase.
# * `switch_modes`: Activates modes by providing a list of their names
# * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information.
# * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task.
# * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed.
# * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store.
excluded_tools: []

# initial prompt for the project. It will always be given to the LLM upon activating the project
# (contrary to the memories, which are loaded on demand).
initial_prompt: ""

project_name: "KidsPOS-for-Android"
48 changes: 39 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,39 @@
KidsPOS for android

Overview
============
This program is KidsPOS for android.

Detail
============
キッズビジネスタウンで用いる予定のAndroid用POSシステムです。
# KidsPOS for Android

## 概要
キッズビジネスタウンいちかわで使用するAndroid用POSシステムです。

## 機能
- 商品バーコード読み取り
- 会計処理
- 店舗管理
- スタッフ管理
- レシート発行

## 開発環境
- Android Studio
- Kotlin
- Gradle

## ビルド方法

### デバッグビルド
```bash
./gradlew assembleProdDebug
```

### リリースビルド
```bash
./gradlew assembleProdRelease
```

### テスト実行
```bash
./gradlew test
./gradlew lint
```

## プロジェクト構成
- **app/** - メインアプリケーションモジュール
- **buildSrc/** - ビルド設定の共通化
- **docs/** - ドキュメント
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryErro
org.gradle.parallel=true
android.useAndroidX=true
android.enableJetifier=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
42 changes: 4 additions & 38 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[versions]
converter-scalars = "2.9.0"
desugar_jdk_libs = "2.0.3"
kotlin = "1.8.20"
kotlin = "2.2.20"
kotlinx-coroutines = "1.7.2"
kotlinx-serialization = "1.6.0"
dagger = "2.46.1"

android-gradle-plugin = "8.1.1"
cookpad-lisence-plugin = "1.2.8"
android-gradle-plugin = "8.13.0"

core-ktx = "1.10.1"
activity-ktx = "1.7.2"
fragment-ktx = "1.6.0"
preference-ktx = "1.2.0"
Expand All @@ -17,21 +16,13 @@ viewmodel-ktx = "2.6.1"
appcompat = "1.6.1"
recyclerview = "1.3.0"
material = "1.9.0"
swiperefreshlayout = "1.1.0"
browser = "1.5.0"
exifinterface = "1.3.6"
installreferrer = "2.2"
constraintlayout = "2.1.4"

okhttp = "4.10.0"
retrofit = "2.9.0"
retrofit-kotlin-serialization-converter = "1.0.0"
mockito = "5.0.0"
robolectric = "4.10.3"
espresso = "3.5.1"

[libraries]
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "core-ktx" }
androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "activity-ktx" }
androidx-fragment-ktx = { module = "androidx.fragment:fragment-ktx", version.ref = "fragment-ktx" }
androidx-preference-ktx = { module = "androidx.preference:preference-ktx", version.ref = "preference-ktx" }
Expand All @@ -43,6 +34,7 @@ androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayo
androidx-hilt-compiler = { module = "androidx.hilt:hilt-compiler", version = "1.0.0" }

android-material = { module = "com.google.android.material:material", version.ref = "material" }
converter-scalars = { module = "com.squareup.retrofit2:converter-scalars", version.ref = "converter-scalars" }
desugar_jdk_libs = { module = "com.android.tools:desugar_jdk_libs", version.ref = "desugar_jdk_libs" }
kotlin-std-lib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlinx-coroutines" }
Expand All @@ -64,34 +56,8 @@ retrofit-client = { module = "com.squareup.retrofit2:retrofit", version.ref = "r
retrofit-converter-serialization = { module = "com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter", version.ref = "retrofit-kotlin-serialization-converter" }

logger = { module = "com.orhanobut:logger", version = "2.2.0" }
stetho = { module = "com.facebook.stetho:stetho-okhttp3", version = "1.6.0" }
eventbus = { module = "org.greenrobot:eventbus", version = "3.2.0" }

#Test
test-junit = { module = "junit:junit", version = "4.13.2" }

test-androidx-test-core-ktx = { module = "androidx.test:core-ktx", version = "1.5.0" }
test-androidx-test-runner = { module = "androidx.test:runner", version = "1.5.2" }
test-androidx-test-rules = { module = "androidx.test:rules", version = "1.5.0" }
test-androidx-test-junit-ktx = { module = "androidx.test.ext:junit-ktx", version = "1.1.5" }
test-androidx-core-testing = { module = "androidx.arch.core:core-testing", version = "2.2.0" }
test-hamcrest = { module = "org.hamcrest:hamcrest", version = "2.2" }
test-kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinx-coroutines" }
test-dagger-hilt-android-testing = { module = "com.google.dagger:hilt-android-testing", version.ref = "dagger" }
test-okhttp-mockwebserver = { module = "com.squareup.okhttp3:mockwebserver" }

test-mockito-inline = { module = "org.mockito:mockito-inline", version.ref = "mockito" }
test-mockito-android = { module = "org.mockito:mockito-android", version.ref = "mockito" }
test-mockito-kotlin = { module = "org.mockito.kotlin:mockito-kotlin", version.ref = "mockito" }

test-robolectric-client = { module = "org.robolectric:robolectric", version.ref = "robolectric" }

test-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "espresso" }
test-espresso-contrib = { module = "androidx.test.espresso:espresso-contrib", version.ref = "espresso" }
test-espresso-intents = { module = "androidx.test.espresso:espresso-intents", version.ref = "espresso" }
test-espresso-web = { module = "androidx.test.espresso:espresso-web", version.ref = "espresso" }
test-espresso-idling-resource = { module = "androidx.test.espresso:espresso-idling-resource", version.ref = "espresso" }

[plugins]
android-application = { id = "com.android.application", version.ref = "android-gradle-plugin" }
android-library = { id = "com.android.library", version.ref = "android-gradle-plugin" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Apr 20 15:46:52 JST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME