Skip to content
Open
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
1,150 changes: 1,150 additions & 0 deletions AGENTS.md

Large diffs are not rendered by default.

82 changes: 59 additions & 23 deletions CLAUDE.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ dependencies {
implementation(files("../libs/ai_sd-release.aar"))
implementation(libs.kotlinx.coroutines.android)
implementation(libs.kotlinx.serialization.json)
implementation(libs.onnxruntime.android)

// DI
implementation(libs.hilt.android)
Expand Down
8 changes: 7 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<queries>
<intent>
<action android:name="android.speech.RecognitionService" />
</intent>
</queries>

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
Expand Down Expand Up @@ -106,4 +112,4 @@
</provider>
</application>

</manifest>
</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import com.dark.tool_neuron.service.server.IRemoteServerCallback;
interface IRemoteServerService {

void start(String configJson);
void refreshCatalog(String configJson);
void stop();
boolean isRunning();
String currentSnapshotJson();
Expand Down
Loading