Skip to content

Commit 84a57e4

Browse files
committed
fix: is active
1 parent a80a983 commit 84a57e4

27 files changed

+402
-315
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,17 @@ jobs:
1515
- uses: pnpm/[email protected]
1616
with:
1717
version: 6.22.2
18+
- name: Install dependencies
19+
id: install_code
20+
run: pnpm i
1821
- name: Lint
19-
id: docker_build_master
20-
uses: docker/build-push-action@v2
21-
with:
22-
push: true
23-
tags: riderx/lemverse:latest
24-
- name: Image digest
25-
run: echo ${{ steps.prepare.outputs.tag }}
22+
id: lint_code
23+
run:
24+
- pnpm lint:markup
25+
- pnpm lint:script
26+
- name: Build
27+
id: build_code
28+
run:
29+
- pnpm run build
30+
31+

android/.idea/misc.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

android/app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
<intent-filter>
2121
<action android:name="android.intent.action.MAIN" />
2222
<category android:name="android.intent.category.LAUNCHER" />
23+
<action android:name="android.intent.action.VIEW" />
24+
<category android:name="android.intent.category.DEFAULT" />
25+
<category android:name="android.intent.category.BROWSABLE" />
26+
<data android:scheme="@string/custom_url_scheme" />
2327
</intent-filter>
2428

2529
</activity>

android/app/src/main/assets/public/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<meta name="apple-mobile-web-app-capable" content="yes" />
2020
<meta name="apple-mobile-web-app-title" content="Mimesis" />
2121
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
22-
<script type="module" crossorigin src="/assets/index.9ccd3585.js"></script>
23-
<link rel="modulepreload" href="/assets/vendor.af20d7fa.js">
24-
<link rel="stylesheet" href="/assets/index.0e754974.css">
22+
<script type="module" crossorigin src="/assets/index.360b963e.js"></script>
23+
<link rel="modulepreload" href="/assets/vendor.284e5751.js">
24+
<link rel="stylesheet" href="/assets/index.2badd4ef.css">
2525
</head>
2626

2727
<body>
-1.92 KB
Loading
-1.08 KB
Loading
-3 KB
Loading
-5.75 KB
Loading
-8.5 KB
Loading
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
<color name="ic_launcher_background">#FFFFFF</color>
3+
<color name="ic_launcher_background">#e67f3c</color>
44
</resources>

0 commit comments

Comments
 (0)