Skip to content

Commit 0058b9f

Browse files
committed
build: fix pipeline
1 parent dcb5b7b commit 0058b9f

File tree

5 files changed

+21
-10
lines changed

5 files changed

+21
-10
lines changed

.github/workflows/actions/build/action.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@ runs:
66
steps:
77
- uses: ./.github/workflows/actions/prepare
88

9-
- name: Build library
9+
- name: Build material-html-text
1010
shell: bash
11-
run: ./gradlew assembleRelease
11+
run: ./gradlew :material-html-text:assembleRelease
12+
13+
- name: Build material3-html-text
14+
shell: bash
15+
run: ./gradlew :material3-html-text:assembleRelease
1216

1317
- name: Build sample apps
1418
shell: bash
15-
run: ./gradlew -p example assembleRelease
19+
run: ./gradlew :sample-app:android-app:assembleRelease
1620

1721
- name: Build dokka
1822
shell: bash
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<resources>
2-
<string name="app_name">HtmlText Example</string>
2+
<string name="app_name">HtmlText Sample</string>
33
</resources>

sample-app/ios-app/iosApp.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
1717
BlueprintIdentifier = "7555FF7A242A565900829871"
18-
BuildableName = "QR Code Scanner Demo.app"
18+
BuildableName = "HtmlText-Sample.app"
1919
BlueprintName = "iosApp"
2020
ReferencedContainer = "container:iosApp.xcodeproj">
2121
</BuildableReference>
@@ -44,7 +44,7 @@
4444
<BuildableReference
4545
BuildableIdentifier = "primary"
4646
BlueprintIdentifier = "7555FF7A242A565900829871"
47-
BuildableName = "QR Code Scanner Demo.app"
47+
BuildableName = "HtmlText-Sample.app"
4848
BlueprintName = "iosApp"
4949
ReferencedContainer = "container:iosApp.xcodeproj">
5050
</BuildableReference>
@@ -61,7 +61,7 @@
6161
<BuildableReference
6262
BuildableIdentifier = "primary"
6363
BlueprintIdentifier = "7555FF7A242A565900829871"
64-
BuildableName = "QR Code Scanner Demo.app"
64+
BuildableName = "HtmlText-Sample.app"
6565
BlueprintName = "iosApp"
6666
ReferencedContainer = "container:iosApp.xcodeproj">
6767
</BuildableReference>
Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
4-
<dict />
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>iosApp.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>0</integer>
11+
</dict>
12+
</dict>
13+
</dict>
514
</plist>

sample-app/ios-app/iosApp/Info.plist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222
<string>1</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
25-
<key>NSCameraUsageDescription</key>
26-
<string>Requires Camera for QR-Code Scanning</string>
2725
<key>UIApplicationSceneManifest</key>
2826
<dict>
2927
<key>UIApplicationSupportsMultipleScenes</key>

0 commit comments

Comments
 (0)