pakstr 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android-template/app/build.gradle.kts +59 -0
- package/android-template/app/proguard-rules.pro +21 -0
- package/android-template/app/src/androidTest/java/com/nostrappshell/app/ExampleInstrumentedTest.kt +24 -0
- package/android-template/app/src/main/AndroidManifest.xml +32 -0
- package/android-template/app/src/main/assets/nip07.js +35 -0
- package/android-template/app/src/main/assets/www/assets/hero-CLDdwZDr.png +0 -0
- package/android-template/app/src/main/assets/www/assets/index-CsUDhMuy.css +1 -0
- package/android-template/app/src/main/assets/www/assets/index-D-e3tQW5.js +56 -0
- package/android-template/app/src/main/assets/www/assets/vite-BF8QNONU.svg +1 -0
- package/android-template/app/src/main/assets/www/favicon.svg +1 -0
- package/android-template/app/src/main/assets/www/icons.svg +24 -0
- package/android-template/app/src/main/assets/www/index.html +14 -0
- package/android-template/app/src/main/assets/www/test.html +17 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/ApplicationClass.kt +11 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/Config.kt +7 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/LocalServer.kt +51 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/MainActivity.kt +160 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/ShellRuntime.kt +125 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/WebViewController.kt +139 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/signer/AmberSigner.kt +167 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/signer/BunkerSigner.kt +28 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/signer/FakeSigner.kt +31 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/signer/NostrBridge.kt +97 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/signer/SignerManager.kt +155 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/signer/SignerType.kt +9 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/signer/interfaces/NostrSigner.kt +25 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/ui/theme/Color.kt +11 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/ui/theme/Theme.kt +57 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/ui/theme/Type.kt +34 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/utils/AppPreferences.kt +31 -0
- package/android-template/app/src/main/java/com/nostrappshell/app/utils/SignerPickerBottomSheet.kt +40 -0
- package/android-template/app/src/main/res/drawable/bg_bottom_sheet.xml +7 -0
- package/android-template/app/src/main/res/drawable/custom_loader.xml +25 -0
- package/android-template/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
- package/android-template/app/src/main/res/drawable/ic_launcher_foreground.xml +30 -0
- package/android-template/app/src/main/res/drawable/ic_menu_browser.xml +9 -0
- package/android-template/app/src/main/res/drawable/selector_radio_card.xml +17 -0
- package/android-template/app/src/main/res/drawable/selector_radio_checkmark.xml +5 -0
- package/android-template/app/src/main/res/drawable/selector_radio_tint.xml +5 -0
- package/android-template/app/src/main/res/layout/activity_layout.xml +21 -0
- package/android-template/app/src/main/res/layout/dialog_picker.xml +101 -0
- package/android-template/app/src/main/res/mipmap-anydpi/ic_launcher.xml +6 -0
- package/android-template/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml +6 -0
- package/android-template/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
- package/android-template/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- package/android-template/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
- package/android-template/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- package/android-template/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
- package/android-template/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- package/android-template/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
- package/android-template/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- package/android-template/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
- package/android-template/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- package/android-template/app/src/main/res/values/colors.xml +10 -0
- package/android-template/app/src/main/res/values/dimes.xml +6 -0
- package/android-template/app/src/main/res/values/strings.xml +3 -0
- package/android-template/app/src/main/res/values/themes.xml +13 -0
- package/android-template/app/src/main/res/xml/backup_rules.xml +13 -0
- package/android-template/app/src/main/res/xml/data_extraction_rules.xml +19 -0
- package/android-template/app/src/main/res/xml/network_security_config.xml +7 -0
- package/android-template/app/src/test/java/com/nostrappshell/app/ExampleUnitTest.kt +17 -0
- package/android-template/build.gradle.kts +5 -0
- package/android-template/gradle/gradle-daemon-jvm.properties +12 -0
- package/android-template/gradle/libs.versions.toml +41 -0
- package/android-template/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android-template/gradle/wrapper/gradle-wrapper.properties +9 -0
- package/android-template/gradle.properties +15 -0
- package/android-template/gradlew +251 -0
- package/android-template/gradlew.bat +94 -0
- package/android-template/settings.gradle.kts +27 -0
- package/bin/cli.js +10 -0
- package/bin/cli.ts +5 -0
- package/package.json +49 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<LinearLayout xmlns:app="http://android.com"
|
|
3
|
+
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
4
|
+
android:layout_width="match_parent"
|
|
5
|
+
android:layout_height="wrap_content"
|
|
6
|
+
android:background="@drawable/bg_bottom_sheet"
|
|
7
|
+
android:orientation="vertical"
|
|
8
|
+
android:paddingBottom="32dp"
|
|
9
|
+
android:paddingEnd="24dp"
|
|
10
|
+
android:paddingStart="24dp"
|
|
11
|
+
android:paddingTop="16dp">
|
|
12
|
+
|
|
13
|
+
<!-- Handle Indicator (Modern Pill) -->
|
|
14
|
+
<View
|
|
15
|
+
android:layout_width="48dp"
|
|
16
|
+
android:layout_height="5dp"
|
|
17
|
+
android:layout_gravity="center_horizontal"
|
|
18
|
+
android:layout_marginBottom="28dp"
|
|
19
|
+
android:background="#E5E7EB" />
|
|
20
|
+
|
|
21
|
+
<!-- Header Title -->
|
|
22
|
+
<TextView
|
|
23
|
+
android:layout_width="wrap_content"
|
|
24
|
+
android:layout_height="wrap_content"
|
|
25
|
+
android:text="Welcome"
|
|
26
|
+
android:textColor="#1F2937"
|
|
27
|
+
android:textSize="24sp"
|
|
28
|
+
android:fontFamily="sans-serif-medium"
|
|
29
|
+
android:textStyle="bold" />
|
|
30
|
+
|
|
31
|
+
<!-- Header Subtitle -->
|
|
32
|
+
<TextView
|
|
33
|
+
android:layout_width="wrap_content"
|
|
34
|
+
android:layout_height="wrap_content"
|
|
35
|
+
android:layout_marginBottom="24dp"
|
|
36
|
+
android:layout_marginTop="6dp"
|
|
37
|
+
android:text="Please select one of the options to continue:"
|
|
38
|
+
android:textColor="#4B5563"
|
|
39
|
+
android:textSize="15sp" />
|
|
40
|
+
|
|
41
|
+
<!-- RadioGroup za selekciju opcija -->
|
|
42
|
+
<RadioGroup
|
|
43
|
+
android:id="@+id/options_radio_group"
|
|
44
|
+
android:layout_width="match_parent"
|
|
45
|
+
android:layout_height="wrap_content"
|
|
46
|
+
android:orientation="vertical">
|
|
47
|
+
|
|
48
|
+
<!-- OPCIJA 1: Launch Web Application -->
|
|
49
|
+
<RadioButton
|
|
50
|
+
android:id="@+id/radio_option_one"
|
|
51
|
+
android:layout_width="match_parent"
|
|
52
|
+
android:layout_height="64dp"
|
|
53
|
+
android:layout_marginBottom="12dp"
|
|
54
|
+
android:background="@drawable/selector_radio_card"
|
|
55
|
+
android:button="@null"
|
|
56
|
+
android:checked="true"
|
|
57
|
+
android:drawableEnd="@drawable/selector_radio_checkmark"
|
|
58
|
+
android:drawableStart="@drawable/ic_menu_browser"
|
|
59
|
+
android:drawablePadding="16dp"
|
|
60
|
+
android:drawableTint="@drawable/selector_radio_tint"
|
|
61
|
+
android:paddingEnd="20dp"
|
|
62
|
+
android:paddingStart="20dp"
|
|
63
|
+
android:text="Continue with Amber"
|
|
64
|
+
android:textColor="#1F2937"
|
|
65
|
+
android:textSize="16sp"
|
|
66
|
+
android:fontFamily="sans-serif-medium" />
|
|
67
|
+
|
|
68
|
+
<!-- OPCIJA 2: Bunker -->
|
|
69
|
+
<RadioButton
|
|
70
|
+
android:id="@+id/radio_option_two"
|
|
71
|
+
android:layout_width="match_parent"
|
|
72
|
+
android:layout_height="64dp"
|
|
73
|
+
android:layout_marginBottom="24dp"
|
|
74
|
+
android:background="@drawable/selector_radio_card"
|
|
75
|
+
android:button="@null"
|
|
76
|
+
android:drawableEnd="@drawable/selector_radio_checkmark"
|
|
77
|
+
android:drawableStart="@drawable/ic_menu_browser"
|
|
78
|
+
android:drawablePadding="16dp"
|
|
79
|
+
android:drawableTint="@drawable/selector_radio_tint"
|
|
80
|
+
android:paddingEnd="20dp"
|
|
81
|
+
android:paddingStart="20dp"
|
|
82
|
+
android:text="Connect to remote signer (Bunker)"
|
|
83
|
+
android:textColor="#1F2937"
|
|
84
|
+
android:textSize="16sp"
|
|
85
|
+
android:fontFamily="sans-serif-medium" />
|
|
86
|
+
|
|
87
|
+
</RadioGroup>
|
|
88
|
+
|
|
89
|
+
<!-- Glavno akciono dugme na dnu -->
|
|
90
|
+
<com.google.android.material.button.MaterialButton
|
|
91
|
+
android:id="@+id/button_confirm"
|
|
92
|
+
android:layout_width="match_parent"
|
|
93
|
+
android:layout_height="56dp"
|
|
94
|
+
android:text="Continue"
|
|
95
|
+
android:textAllCaps="false"
|
|
96
|
+
android:textSize="16sp"
|
|
97
|
+
android:textColor="@android:color/white"
|
|
98
|
+
android:backgroundTint="#2563EB"
|
|
99
|
+
app:cornerRadius="16dp" />
|
|
100
|
+
|
|
101
|
+
</LinearLayout>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
|
3
|
+
<background android:drawable="@drawable/ic_launcher_background" />
|
|
4
|
+
<foreground android:drawable="@drawable/ic_launcher_foreground" />
|
|
5
|
+
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
|
|
6
|
+
</adaptive-icon>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
|
3
|
+
<background android:drawable="@drawable/ic_launcher_background" />
|
|
4
|
+
<foreground android:drawable="@drawable/ic_launcher_foreground" />
|
|
5
|
+
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
|
|
6
|
+
</adaptive-icon>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<resources>
|
|
3
|
+
<color name="purple_200">#FFBB86FC</color>
|
|
4
|
+
<color name="purple_500">#FF6200EE</color>
|
|
5
|
+
<color name="purple_700">#FF3700B3</color>
|
|
6
|
+
<color name="teal_200">#FF03DAC5</color>
|
|
7
|
+
<color name="teal_700">#FF018786</color>
|
|
8
|
+
<color name="black">#FF000000</color>
|
|
9
|
+
<color name="white">#FFFFFFFF</color>
|
|
10
|
+
</resources>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<resources>
|
|
3
|
+
|
|
4
|
+
<style name="Theme.NostrAppShell" parent="Theme.MaterialComponents.Light.NoActionBar"/>
|
|
5
|
+
|
|
6
|
+
<!-- Splash Screen -->
|
|
7
|
+
<style name="Theme.App.Starting" parent="Theme.SplashScreen">
|
|
8
|
+
<item name="windowSplashScreenBackground">@color/white</item>
|
|
9
|
+
<item name="windowSplashScreenAnimatedIcon">@mipmap/ic_launcher</item>
|
|
10
|
+
<item name="windowSplashScreenAnimationDuration">1000</item>
|
|
11
|
+
<item name="postSplashScreenTheme">@style/Theme.NostrAppShell</item>
|
|
12
|
+
</style>
|
|
13
|
+
</resources>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><!--
|
|
2
|
+
Sample backup rules file; uncomment and customize as necessary.
|
|
3
|
+
See https://developer.android.com/guide/topics/data/autobackup
|
|
4
|
+
for details.
|
|
5
|
+
Note: This file is ignored for devices older than API 31
|
|
6
|
+
See https://developer.android.com/about/versions/12/backup-restore
|
|
7
|
+
-->
|
|
8
|
+
<full-backup-content>
|
|
9
|
+
<!--
|
|
10
|
+
<include domain="sharedpref" path="."/>
|
|
11
|
+
<exclude domain="sharedpref" path="device.xml"/>
|
|
12
|
+
-->
|
|
13
|
+
</full-backup-content>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><!--
|
|
2
|
+
Sample data extraction rules file; uncomment and customize as necessary.
|
|
3
|
+
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
|
|
4
|
+
for details.
|
|
5
|
+
-->
|
|
6
|
+
<data-extraction-rules>
|
|
7
|
+
<cloud-backup>
|
|
8
|
+
<!-- TODO: Use <include> and <exclude> to control what is backed up.
|
|
9
|
+
<include .../>
|
|
10
|
+
<exclude .../>
|
|
11
|
+
-->
|
|
12
|
+
</cloud-backup>
|
|
13
|
+
<!--
|
|
14
|
+
<device-transfer>
|
|
15
|
+
<include .../>
|
|
16
|
+
<exclude .../>
|
|
17
|
+
</device-transfer>
|
|
18
|
+
-->
|
|
19
|
+
</data-extraction-rules>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<network-security-config>
|
|
3
|
+
<domain-config cleartextTrafficPermitted="true">
|
|
4
|
+
<domain includeSubdomains="true">localhost</domain>
|
|
5
|
+
<domain includeSubdomains="true">127.0.0.1</domain>
|
|
6
|
+
</domain-config>
|
|
7
|
+
</network-security-config>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
package com.nostrappshell.app
|
|
2
|
+
|
|
3
|
+
import org.junit.Test
|
|
4
|
+
|
|
5
|
+
import org.junit.Assert.*
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Example local unit test, which will execute on the development machine (host).
|
|
9
|
+
*
|
|
10
|
+
* See [testing documentation](http://d.android.com/tools/testing).
|
|
11
|
+
*/
|
|
12
|
+
class ExampleUnitTest {
|
|
13
|
+
@Test
|
|
14
|
+
fun addition_isCorrect() {
|
|
15
|
+
assertEquals(4, 2 + 2)
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#This file is generated by updateDaemonJvm
|
|
2
|
+
toolchainUrl.FREE_BSD.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect
|
|
3
|
+
toolchainUrl.FREE_BSD.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect
|
|
4
|
+
toolchainUrl.LINUX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect
|
|
5
|
+
toolchainUrl.LINUX.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect
|
|
6
|
+
toolchainUrl.MAC_OS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/73bcfb608d1fde9fb62e462f834a3299/redirect
|
|
7
|
+
toolchainUrl.MAC_OS.X86_64=https\://api.foojay.io/disco/v3.0/ids/846ee0d876d26a26f37aa1ce8de73224/redirect
|
|
8
|
+
toolchainUrl.UNIX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect
|
|
9
|
+
toolchainUrl.UNIX.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect
|
|
10
|
+
toolchainUrl.WINDOWS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/9482ddec596298c84656d31d16652665/redirect
|
|
11
|
+
toolchainUrl.WINDOWS.X86_64=https\://api.foojay.io/disco/v3.0/ids/39701d92e1756bb2f141eb67cd4c660e/redirect
|
|
12
|
+
toolchainVersion=21
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
[versions]
|
|
2
|
+
agp = "9.1.1"
|
|
3
|
+
appcompat = "1.7.1"
|
|
4
|
+
coreKtx = "1.18.0"
|
|
5
|
+
coreSplashscreen = "1.2.0"
|
|
6
|
+
junit = "4.13.2"
|
|
7
|
+
junitVersion = "1.3.0"
|
|
8
|
+
espressoCore = "3.7.0"
|
|
9
|
+
lifecycleRuntimeKtx = "2.10.0"
|
|
10
|
+
activityCompose = "1.13.0"
|
|
11
|
+
kotlin = "2.2.10"
|
|
12
|
+
composeBom = "2024.09.00"
|
|
13
|
+
nanohttpd = "2.3.1"
|
|
14
|
+
activityKtx = "1.9.3"
|
|
15
|
+
material = "1.14.0"
|
|
16
|
+
|
|
17
|
+
[libraries]
|
|
18
|
+
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
|
|
19
|
+
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
20
|
+
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "coreSplashscreen" }
|
|
21
|
+
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
22
|
+
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
|
|
23
|
+
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
|
24
|
+
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
|
|
25
|
+
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
|
|
26
|
+
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
|
|
27
|
+
androidx-compose-ui = { group = "androidx.compose.ui", name = "ui" }
|
|
28
|
+
androidx-compose-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
|
|
29
|
+
androidx-compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
|
|
30
|
+
androidx-compose-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
|
|
31
|
+
androidx-compose-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
|
|
32
|
+
androidx-compose-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
|
|
33
|
+
androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3" }
|
|
34
|
+
nanohttpd = { module = "org.nanohttpd:nanohttpd", version.ref = "nanohttpd" }
|
|
35
|
+
androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref = "activityKtx" }
|
|
36
|
+
material = { module = "com.google.android.material:material", version.ref = "material" }
|
|
37
|
+
|
|
38
|
+
[plugins]
|
|
39
|
+
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
40
|
+
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
|
41
|
+
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#Tue Jun 30 09:20:55 CEST 2026
|
|
2
|
+
distributionBase=GRADLE_USER_HOME
|
|
3
|
+
distributionPath=wrapper/dists
|
|
4
|
+
distributionSha256Sum=b266d5ff6b90eada6dc3b20cb090e3731302e553a27c5d3e4df1f0d76beaff06
|
|
5
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
|
|
6
|
+
networkTimeout=10000
|
|
7
|
+
validateDistributionUrl=true
|
|
8
|
+
zipStoreBase=GRADLE_USER_HOME
|
|
9
|
+
zipStorePath=wrapper/dists
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Project-wide Gradle settings.
|
|
2
|
+
# IDE (e.g. Android Studio) users:
|
|
3
|
+
# Gradle settings configured through the IDE *will override*
|
|
4
|
+
# any settings specified in this file.
|
|
5
|
+
# For more details on how to configure your build environment visit
|
|
6
|
+
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
7
|
+
# Specifies the JVM arguments used for the daemon process.
|
|
8
|
+
# The setting is particularly useful for tweaking memory settings.
|
|
9
|
+
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
|
|
10
|
+
# When configured, Gradle will run in incubating parallel mode.
|
|
11
|
+
# This option should only be used with decoupled projects. For more details, visit
|
|
12
|
+
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
|
|
13
|
+
# org.gradle.parallel=true
|
|
14
|
+
# Kotlin code style for this project: "official" or "obsolete":
|
|
15
|
+
kotlin.code.style=official
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
# Copyright © 2015 the original authors.
|
|
5
|
+
#
|
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
# See the License for the specific language governing permissions and
|
|
16
|
+
# limitations under the License.
|
|
17
|
+
#
|
|
18
|
+
# SPDX-License-Identifier: Apache-2.0
|
|
19
|
+
#
|
|
20
|
+
|
|
21
|
+
##############################################################################
|
|
22
|
+
#
|
|
23
|
+
# Gradle start up script for POSIX generated by Gradle.
|
|
24
|
+
#
|
|
25
|
+
# Important for running:
|
|
26
|
+
#
|
|
27
|
+
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
|
|
28
|
+
# noncompliant, but you have some other compliant shell such as ksh or
|
|
29
|
+
# bash, then to run this script, type that shell name before the whole
|
|
30
|
+
# command line, like:
|
|
31
|
+
#
|
|
32
|
+
# ksh Gradle
|
|
33
|
+
#
|
|
34
|
+
# Busybox and similar reduced shells will NOT work, because this script
|
|
35
|
+
# requires all of these POSIX shell features:
|
|
36
|
+
# * functions;
|
|
37
|
+
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
|
38
|
+
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
|
39
|
+
# * compound commands having a testable exit status, especially «case»;
|
|
40
|
+
# * various built-in commands including «command», «set», and «ulimit».
|
|
41
|
+
#
|
|
42
|
+
# Important for patching:
|
|
43
|
+
#
|
|
44
|
+
# (2) This script targets any POSIX shell, so it avoids extensions provided
|
|
45
|
+
# by Bash, Ksh, etc; in particular arrays are avoided.
|
|
46
|
+
#
|
|
47
|
+
# The "traditional" practice of packing multiple parameters into a
|
|
48
|
+
# space-separated string is a well documented source of bugs and security
|
|
49
|
+
# problems, so this is (mostly) avoided, by progressively accumulating
|
|
50
|
+
# options in "$@", and eventually passing that to Java.
|
|
51
|
+
#
|
|
52
|
+
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
|
|
53
|
+
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
|
|
54
|
+
# see the in-line comments for details.
|
|
55
|
+
#
|
|
56
|
+
# There are tweaks for specific operating systems such as AIX, CygWin,
|
|
57
|
+
# Darwin, MinGW, and NonStop.
|
|
58
|
+
#
|
|
59
|
+
# (3) This script is generated from the Groovy template
|
|
60
|
+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
|
61
|
+
# within the Gradle project.
|
|
62
|
+
#
|
|
63
|
+
# You can find Gradle at https://github.com/gradle/gradle/.
|
|
64
|
+
#
|
|
65
|
+
##############################################################################
|
|
66
|
+
|
|
67
|
+
# Attempt to set APP_HOME
|
|
68
|
+
|
|
69
|
+
# Resolve links: $0 may be a link
|
|
70
|
+
app_path=$0
|
|
71
|
+
|
|
72
|
+
# Need this for daisy-chained symlinks.
|
|
73
|
+
while
|
|
74
|
+
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
|
75
|
+
[ -h "$app_path" ]
|
|
76
|
+
do
|
|
77
|
+
ls=$( ls -ld "$app_path" )
|
|
78
|
+
link=${ls#*' -> '}
|
|
79
|
+
case $link in #(
|
|
80
|
+
/*) app_path=$link ;; #(
|
|
81
|
+
*) app_path=$APP_HOME$link ;;
|
|
82
|
+
esac
|
|
83
|
+
done
|
|
84
|
+
|
|
85
|
+
# This is normally unused
|
|
86
|
+
# shellcheck disable=SC2034
|
|
87
|
+
APP_BASE_NAME=${0##*/}
|
|
88
|
+
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
|
89
|
+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
|
|
90
|
+
|
|
91
|
+
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
|
92
|
+
MAX_FD=maximum
|
|
93
|
+
|
|
94
|
+
warn () {
|
|
95
|
+
echo "$*"
|
|
96
|
+
} >&2
|
|
97
|
+
|
|
98
|
+
die () {
|
|
99
|
+
echo
|
|
100
|
+
echo "$*"
|
|
101
|
+
echo
|
|
102
|
+
exit 1
|
|
103
|
+
} >&2
|
|
104
|
+
|
|
105
|
+
# OS specific support (must be 'true' or 'false').
|
|
106
|
+
cygwin=false
|
|
107
|
+
msys=false
|
|
108
|
+
darwin=false
|
|
109
|
+
nonstop=false
|
|
110
|
+
case "$( uname )" in #(
|
|
111
|
+
CYGWIN* ) cygwin=true ;; #(
|
|
112
|
+
Darwin* ) darwin=true ;; #(
|
|
113
|
+
MSYS* | MINGW* ) msys=true ;; #(
|
|
114
|
+
NONSTOP* ) nonstop=true ;;
|
|
115
|
+
esac
|
|
116
|
+
|
|
117
|
+
CLASSPATH="\\\"\\\""
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
# Determine the Java command to use to start the JVM.
|
|
121
|
+
if [ -n "$JAVA_HOME" ] ; then
|
|
122
|
+
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
|
123
|
+
# IBM's JDK on AIX uses strange locations for the executables
|
|
124
|
+
JAVACMD=$JAVA_HOME/jre/sh/java
|
|
125
|
+
else
|
|
126
|
+
JAVACMD=$JAVA_HOME/bin/java
|
|
127
|
+
fi
|
|
128
|
+
if [ ! -x "$JAVACMD" ] ; then
|
|
129
|
+
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
|
130
|
+
|
|
131
|
+
Please set the JAVA_HOME variable in your environment to match the
|
|
132
|
+
location of your Java installation."
|
|
133
|
+
fi
|
|
134
|
+
else
|
|
135
|
+
JAVACMD=java
|
|
136
|
+
if ! command -v java >/dev/null 2>&1
|
|
137
|
+
then
|
|
138
|
+
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
|
139
|
+
|
|
140
|
+
Please set the JAVA_HOME variable in your environment to match the
|
|
141
|
+
location of your Java installation."
|
|
142
|
+
fi
|
|
143
|
+
fi
|
|
144
|
+
|
|
145
|
+
# Increase the maximum file descriptors if we can.
|
|
146
|
+
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
|
147
|
+
case $MAX_FD in #(
|
|
148
|
+
max*)
|
|
149
|
+
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
|
150
|
+
# shellcheck disable=SC2039,SC3045
|
|
151
|
+
MAX_FD=$( ulimit -H -n ) ||
|
|
152
|
+
warn "Could not query maximum file descriptor limit"
|
|
153
|
+
esac
|
|
154
|
+
case $MAX_FD in #(
|
|
155
|
+
'' | soft) :;; #(
|
|
156
|
+
*)
|
|
157
|
+
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
|
158
|
+
# shellcheck disable=SC2039,SC3045
|
|
159
|
+
ulimit -n "$MAX_FD" ||
|
|
160
|
+
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
|
161
|
+
esac
|
|
162
|
+
fi
|
|
163
|
+
|
|
164
|
+
# Collect all arguments for the java command, stacking in reverse order:
|
|
165
|
+
# * args from the command line
|
|
166
|
+
# * the main class name
|
|
167
|
+
# * -classpath
|
|
168
|
+
# * -D...appname settings
|
|
169
|
+
# * --module-path (only if needed)
|
|
170
|
+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
|
|
171
|
+
|
|
172
|
+
# For Cygwin or MSYS, switch paths to Windows format before running java
|
|
173
|
+
if "$cygwin" || "$msys" ; then
|
|
174
|
+
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
|
|
175
|
+
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
|
|
176
|
+
|
|
177
|
+
JAVACMD=$( cygpath --unix "$JAVACMD" )
|
|
178
|
+
|
|
179
|
+
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
|
180
|
+
for arg do
|
|
181
|
+
if
|
|
182
|
+
case $arg in #(
|
|
183
|
+
-*) false ;; # don't mess with options #(
|
|
184
|
+
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
|
|
185
|
+
[ -e "$t" ] ;; #(
|
|
186
|
+
*) false ;;
|
|
187
|
+
esac
|
|
188
|
+
then
|
|
189
|
+
arg=$( cygpath --path --ignore --mixed "$arg" )
|
|
190
|
+
fi
|
|
191
|
+
# Roll the args list around exactly as many times as the number of
|
|
192
|
+
# args, so each arg winds up back in the position where it started, but
|
|
193
|
+
# possibly modified.
|
|
194
|
+
#
|
|
195
|
+
# NB: a `for` loop captures its iteration list before it begins, so
|
|
196
|
+
# changing the positional parameters here affects neither the number of
|
|
197
|
+
# iterations, nor the values presented in `arg`.
|
|
198
|
+
shift # remove old arg
|
|
199
|
+
set -- "$@" "$arg" # push replacement arg
|
|
200
|
+
done
|
|
201
|
+
fi
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
|
205
|
+
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
|
206
|
+
|
|
207
|
+
# Collect all arguments for the java command:
|
|
208
|
+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
|
209
|
+
# and any embedded shellness will be escaped.
|
|
210
|
+
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
|
211
|
+
# treated as '${Hostname}' itself on the command line.
|
|
212
|
+
|
|
213
|
+
set -- \
|
|
214
|
+
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
|
215
|
+
-classpath "$CLASSPATH" \
|
|
216
|
+
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
|
|
217
|
+
"$@"
|
|
218
|
+
|
|
219
|
+
# Stop when "xargs" is not available.
|
|
220
|
+
if ! command -v xargs >/dev/null 2>&1
|
|
221
|
+
then
|
|
222
|
+
die "xargs is not available"
|
|
223
|
+
fi
|
|
224
|
+
|
|
225
|
+
# Use "xargs" to parse quoted args.
|
|
226
|
+
#
|
|
227
|
+
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
|
228
|
+
#
|
|
229
|
+
# In Bash we could simply go:
|
|
230
|
+
#
|
|
231
|
+
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
|
|
232
|
+
# set -- "${ARGS[@]}" "$@"
|
|
233
|
+
#
|
|
234
|
+
# but POSIX shell has neither arrays nor command substitution, so instead we
|
|
235
|
+
# post-process each arg (as a line of input to sed) to backslash-escape any
|
|
236
|
+
# character that might be a shell metacharacter, then use eval to reverse
|
|
237
|
+
# that process (while maintaining the separation between arguments), and wrap
|
|
238
|
+
# the whole thing up as a single "set" statement.
|
|
239
|
+
#
|
|
240
|
+
# This will of course break if any of these variables contains a newline or
|
|
241
|
+
# an unmatched quote.
|
|
242
|
+
#
|
|
243
|
+
|
|
244
|
+
eval "set -- $(
|
|
245
|
+
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
|
|
246
|
+
xargs -n1 |
|
|
247
|
+
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
|
|
248
|
+
tr '\n' ' '
|
|
249
|
+
)" '"$@"'
|
|
250
|
+
|
|
251
|
+
exec "$JAVACMD" "$@"
|