-
Notifications
You must be signed in to change notification settings - Fork 0
/
conveyor.conf
35 lines (27 loc) · 1.51 KB
/
conveyor.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// This is a hashbang include. You can run the command after the #! to see what
// configuration is being extracted from the Gradle build using the Conveyor plugin.
include "#!./gradlew -q printConveyorConfig"
// This enables native library extraction, which improves app startup time and robustness.
// It's optional but a good idea to have it. You can remove this if you get tired of specifying
// system properties for Java libraries with native components.
//
// See https://hydraulic.dev/blog/11-in-jar-signing.html for more.
include required("https://raw.githubusercontent.com/hydraulic-software/conveyor/master/configs/jvm/extract-native-libraries.conf")
// Config file documentation: https://conveyor.hydraulic.dev/latest/configs
app {
// The base URL is where the download site will be placed. Packages will check here for updates.
site.base-url = "localhost:3000"
// This is optional. If not specified the last component of the rdns name will be turned into a display name.
display-name = "AABtoAPK"
// A global identifier for the app.
rdns-name = "com.aabtoapk.desktop"
// Use the Compose logo as an icon and include it so we can pass it to the Window constructor.
icons = icons/icon.png
windows.inputs += TASK/rendered-icons/windows
linux.inputs += TASK/rendered-icons/linux
// For iteration speed. Remove for release.
compression-level = low
// Check for and apply updates synchronously on every app launch instead of in the background.
// updates = aggressive
}
conveyor.compatibility-level = 15