Ship Android AI console and remove web UI

This commit is contained in:
Codex
2026-06-26 22:56:42 +03:00
parent 4e811daaf2
commit ab2557ea26
12 changed files with 1086 additions and 2026 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ android {
applicationId = "xyz.kusoft.tradebotmonitor"
minSdk = 26
targetSdk = 36
versionCode = 2
versionName = "0.1.1"
versionCode = 3
versionName = "0.2.0"
}
}
@@ -5,13 +5,17 @@
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:allowBackup="true"
android:label="TradeBot"
android:allowBackup="false"
android:icon="@drawable/ic_launcher"
android:label="TradeBot AI"
android:roundIcon="@drawable/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true">
<activity
android:name=".MainActivity"
android:exported="true">
android:exported="true"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
@@ -20,18 +20,18 @@ data class AppPalette(
companion object {
fun dark() = AppPalette(
isDark = true,
page = Color.rgb(10, 14, 20),
panel = Color.rgb(18, 24, 32),
panelAlt = Color.rgb(24, 31, 41),
line = Color.rgb(49, 60, 75),
text = Color.rgb(237, 242, 247),
muted = Color.rgb(145, 158, 175),
green = Color.rgb(26, 188, 121),
red = Color.rgb(235, 85, 85),
amber = Color.rgb(236, 173, 74),
blue = Color.rgb(91, 141, 239),
chartBg = Color.rgb(9, 13, 19),
chartGrid = Color.rgb(38, 48, 61),
page = Color.rgb(7, 8, 12),
panel = Color.rgb(17, 20, 26),
panelAlt = Color.rgb(21, 25, 34),
line = Color.rgb(36, 42, 54),
text = Color.rgb(244, 246, 251),
muted = Color.rgb(119, 127, 142),
green = Color.rgb(22, 199, 132),
red = Color.rgb(255, 80, 102),
amber = Color.rgb(245, 166, 35),
blue = Color.rgb(109, 131, 255),
chartBg = Color.rgb(8, 10, 15),
chartGrid = Color.rgb(27, 32, 41),
)
fun light() = AppPalette(
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#07080B"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#111722"
android:pathData="M20,20h68a10,10 0,0 1,10 10v48a10,10 0,0 1,-10 10h-68a10,10 0,0 1,-10 -10v-48a10,10 0,0 1,10 -10z" />
<path
android:strokeColor="#28303D"
android:strokeWidth="2"
android:fillColor="@android:color/transparent"
android:pathData="M20,20h68a10,10 0,0 1,10 10v48a10,10 0,0 1,-10 10h-68a10,10 0,0 1,-10 -10v-48a10,10 0,0 1,10 -10z" />
<path
android:strokeColor="#16C784"
android:strokeWidth="5"
android:strokeLineCap="round"
android:strokeLineJoin="round"
android:fillColor="@android:color/transparent"
android:pathData="M22,66 L35,58 L46,62 L58,42 L72,49 L86,31" />
<path
android:strokeColor="#F5A623"
android:strokeWidth="3"
android:strokeLineCap="round"
android:fillColor="@android:color/transparent"
android:pathData="M24,78h60" />
<path
android:fillColor="#16C784"
android:pathData="M28,31h8v22h-8z M50,36h8v17h-8z M72,29h8v24h-8z" />
<path
android:fillColor="#FF5066"
android:pathData="M39,38h8v15h-8z M61,33h8v20h-8z" />
<path
android:fillColor="#F5A623"
android:pathData="M82,26a6,6 0,1 0,0.1 0z" />
</vector>