WIP: non-working init

This commit is contained in:
2026-08-17 18:32:40 +09:00
commit dea88084b7
80 changed files with 3668 additions and 0 deletions
@@ -0,0 +1,20 @@
- [x] Task 1: Define Colors and Theme
- [x] Task 2: Create Initial Reusable Components
- [x] Task 3: Implement Initial Screens (Splash, Onboarding)
- [ ] Task 4: Complete Wallet Setup Flow
- [ ] Add `MnemonicDisplayScreen` (24-word grid)
- [ ] Add `MnemonicVerifyScreen` (Verification challenge)
- [ ] Add `MnemonicInputScreen` (Recovery input)
- [ ] Add `SetupSuccessScreen` (Reusable success layout)
- [ ] Task 5: Implement Transaction Flow
- [ ] Add `SendFormScreen` (Amount, Address, Dropdowns)
- [ ] Add `SendReviewScreen` (Confirmation)
- [ ] Add `QRScannerScreen` (Scanning mockup)
- [ ] Add `QRReceiveScreen` (QR display)
- [ ] Task 6: Implement Management & Settings
- [ ] Add `SettingsScreen` (Biometrics toggle)
- [ ] Add `ManageOverviewScreen` (Wallets/Accounts list)
- [ ] Add `WalletDetailScreen` and `AccountDetailScreen`
- [ ] Add `DeleteConfirmationScreen`
- [ ] Add `ExplorerScreen` (Placeholder for Transactions)
- [ ] Task 7: Update Router in MainActivity
@@ -0,0 +1,30 @@
# Walkthrough - Edge-to-Edge Layout Fixes
I have implemented comprehensive edge-to-edge layout support across the GajuMobile wallet. This ensures that UI elements, particularly bottom action buttons, are correctly positioned above system software navigation bars and below the status bar, preventing any awkward overlap on modern Android devices.
## Changes Made
### [core]
- **[MODIFY] [MainActivity.kt](file:///home/ceverett/vcs/android/MyApplication/app/src/main/java/swiss/qpq/gajumobile/MainActivity.kt):** Disabled `isNavigationBarContrastEnforced` to allow the app's custom theme and backgrounds to flow seamlessly into the system navigation area.
### [ui-components]
- **[MODIFY] [GajuComponents.kt](file:///home/ceverett/vcs/android/MyApplication/app/src/main/java/swiss/qpq/gajumobile/ui/components/GajuComponents.kt):**
- Updated `GajuBottomNavigation` to use `windowInsetsPadding(WindowInsets.navigationBars)`, ensuring the navigation icons stay above the system buttons.
- Refactored `SuccessLayout` to use a proper `Scaffold` with a fixed `bottomBar` for action buttons, utilizing `innerPadding` for the main scrollable content.
### [ui-screens]
- **[OnboardingFlow.kt](file:///home/ceverett/vcs/android/MyApplication/app/src/main/java/swiss/qpq/gajumobile/ui/screens/OnboardingFlow.kt) & [SplashScreen.kt](file:///home/ceverett/vcs/android/MyApplication/app/src/main/java/swiss/qpq/gajumobile/ui/screens/SplashScreen.kt):** Applied `safeDrawingPadding()` to top-level containers to keep branding and buttons within the safe viewport.
- **[WalletSetupScreens.kt](file:///home/ceverett/vcs/android/MyApplication/app/src/main/java/swiss/qpq/gajumobile/ui/screens/WalletSetupScreens.kt), [TransactionScreens.kt](file:///home/ceverett/vcs/android/MyApplication/app/src/main/java/swiss/qpq/gajumobile/ui/screens/TransactionScreens.kt), & [ManagementScreens.kt](file:///home/ceverett/vcs/android/MyApplication/app/src/main/java/swiss/qpq/gajumobile/ui/screens/ManagementScreens.kt):**
- Refactored screens with bottom buttons (e.g., Mnemonic Grid, Send Form, Manage Detail) to use `Scaffold`.
- Moved action buttons into the `bottomBar` slot, ensuring they are fixed and correctly spaced above system navigation.
- Wrapped middle content in `verticalScroll` and applied `innerPadding`, allowing long lists (like the 24-word recovery grid) to scroll properly without being cut off.
## Layout Improvements
- **Fixed Overlap:** Critical buttons like "CONTINUE", "NEXT", and "SEND" are now guaranteed to be tappable and visible above software buttons.
- **Scrolling Robustness:** Long forms and lists now utilize the full height of the screen, scrolling behind the transparent system bars while maintaining clear interaction boundaries.
## Verification Results
### Build & Deploy
- Successfully executed `./gradlew assembleDebug`.
- Verified in Compose Preview that the `bottomBar` correctly accounts for system insets in both Dark and Light modes.
+15
View File
@@ -0,0 +1,15 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
+3
View File
@@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml
Generated
+1
View File
@@ -0,0 +1 @@
GajuMobile
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AndroidProjectSystem">
<option name="providerId" value="com.android.tools.idea.GradleProjectSystem" />
</component>
</project>
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="21" />
</component>
</project>
+23
View File
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="deploymentTargetSelector">
<selectionStates>
<SelectionState runConfigName="app">
<option name="selectionMode" value="DROPDOWN" />
<DialogSelection />
</SelectionState>
<SelectionState runConfigName="main">
<option name="selectionMode" value="DROPDOWN" />
<DialogSelection />
</SelectionState>
<SelectionState runConfigName="unitTest">
<option name="selectionMode" value="DROPDOWN" />
<DialogSelection />
</SelectionState>
<SelectionState runConfigName="androidTest">
<option name="selectionMode" value="DROPDOWN" />
<DialogSelection />
</SelectionState>
</selectionStates>
</component>
</project>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DeviceTable">
<option name="columnSorters">
<list>
<ColumnSorterState>
<option name="column" value="Name" />
<option name="order" value="ASCENDING" />
</ColumnSorterState>
</list>
</option>
</component>
</project>
+18
View File
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="CHOOSE_PER_TEST" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
</GradleProjectSettings>
</option>
</component>
</project>
+61
View File
@@ -0,0 +1,61 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="ComposePreviewDimensionRespectsLimit" enabled="true" level="WARNING" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="ComposePreviewMustBeTopLevelFunction" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="ComposePreviewNeedsComposableAnnotation" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="ComposePreviewNotSupportedInUnitTestFiles" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="GlancePreviewDimensionRespectsLimit" enabled="true" level="WARNING" enabled_by_default="true">
<option name="composableFile" value="true" />
</inspection_tool>
<inspection_tool class="GlancePreviewMustBeTopLevelFunction" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
</inspection_tool>
<inspection_tool class="GlancePreviewNeedsComposableAnnotation" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
</inspection_tool>
<inspection_tool class="GlancePreviewNotSupportedInUnitTestFiles" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
</inspection_tool>
<inspection_tool class="PreviewAnnotationInFunctionWithParameters" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="PreviewApiLevelMustBeValid" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="PreviewDeviceShouldUseNewSpec" enabled="true" level="WEAK WARNING" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="PreviewFontScaleMustBeGreaterThanZero" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="PreviewMultipleParameterProviders" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="PreviewParameterProviderOnFirstParameter" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="PreviewPickerAnnotation" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
</profile>
</component>
+10
View File
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>
+10
View File
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="PlanningModeManager">
<option name="approvalStates">
<map>
<entry key="b3cb996b-7f1f-4810-999d-5be96c526f74" value="false" />
</map>
</option>
</component>
</project>
+17
View File
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="com.intellij.execution.junit.AbstractAllInDirectoryConfigurationProducer" />
<option value="com.intellij.execution.junit.AllInPackageConfigurationProducer" />
<option value="com.intellij.execution.junit.PatternConfigurationProducer" />
<option value="com.intellij.execution.junit.TestInClassConfigurationProducer" />
<option value="com.intellij.execution.junit.UniqueIdConfigurationProducer" />
<option value="com.intellij.execution.junit.testDiscovery.JUnitTestDiscoveryConfigurationProducer" />
<option value="org.jetbrains.kotlin.idea.junit.KotlinJUnitRunConfigurationProducer" />
<option value="org.jetbrains.kotlin.idea.junit.KotlinPatternConfigurationProducer" />
</set>
</option>
</component>
</project>
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
/build
+57
View File
@@ -0,0 +1,57 @@
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.compose)
}
android {
namespace = "swiss.qpq.gajumobile"
compileSdk {
version = release(36) {
minorApiLevel = 1
}
}
defaultConfig {
applicationId = "swiss.qpq.gajumobile"
minSdk = 34
targetSdk = 36
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
optimization {
enable = false
}
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
buildFeatures {
compose = true
}
}
dependencies {
implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.compose.material3)
implementation(libs.androidx.compose.material3.adaptive.navigation.suite)
implementation(libs.androidx.compose.ui)
implementation(libs.androidx.compose.ui.graphics)
implementation(libs.androidx.compose.ui.tooling.preview)
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)
testImplementation(libs.junit)
androidTestImplementation(platform(libs.androidx.compose.bom))
androidTestImplementation(libs.androidx.compose.ui.test.junit4)
androidTestImplementation(libs.androidx.espresso.core)
androidTestImplementation(libs.androidx.junit)
debugImplementation(libs.androidx.compose.ui.test.manifest)
debugImplementation(libs.androidx.compose.ui.tooling)
}
@@ -0,0 +1,24 @@
package swiss.qpq.gajumobile
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Assert.*
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("swiss.qpq.gajumobile", appContext.packageName)
}
}
+28
View File
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.GajuMobile">
<activity
android:name=".MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.GajuMobile"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
@@ -0,0 +1,223 @@
package swiss.qpq.gajumobile
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import androidx.compose.runtime.*
import androidx.compose.runtime.saveable.rememberSaveable
import swiss.qpq.gajumobile.ui.screens.*
import swiss.qpq.gajumobile.ui.theme.MyApplicationTheme
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
enableEdgeToEdge()
window.isNavigationBarContrastEnforced = false
setContent {
MyApplicationTheme {
GajuRouter()
}
}
}
}
enum class Screen {
SPLASH,
ONBOARDING_CONTINUE,
BIOMETRICS_PROMPT,
SETUP_CHOICE,
CREATE_MNEMONIC,
MNEMONIC_GRID,
MNEMONIC_VERIFY,
RECOVER_MNEMONIC,
SETUP_SUCCESS,
DASHBOARD,
QR_SCANNER,
QR_RECEIVE,
SEND_FORM,
SEND_REVIEW,
SEND_SUCCESS,
SETTINGS,
MANAGE_OVERVIEW,
MANAGE_WALLET,
MANAGE_ACCOUNT,
DELETE_CONFIRM,
EXPLORER
}
@Composable
fun GajuRouter() {
var currentScreen by rememberSaveable { mutableStateOf(value = Screen.SPLASH) }
var setupRecovered by rememberSaveable { mutableStateOf(value = false) }
var selectedWallet by rememberSaveable { mutableStateOf(value = "Primary") }
var selectedAccount by rememberSaveable { mutableStateOf(value = "Daily") }
var deleteType by rememberSaveable { mutableStateOf(value = "WALLET") }
var deleteName by rememberSaveable { mutableStateOf(value = "") }
when (currentScreen) {
Screen.SPLASH -> {
SplashScreen { currentScreen = Screen.ONBOARDING_CONTINUE }
}
Screen.ONBOARDING_CONTINUE -> {
WelcomeContinueScreen { currentScreen = Screen.BIOMETRICS_PROMPT }
}
Screen.BIOMETRICS_PROMPT -> {
BiometricsPromptScreen(
onYes = { currentScreen = Screen.SETUP_CHOICE },
) { currentScreen = Screen.SETUP_CHOICE }
}
Screen.SETUP_CHOICE -> {
SetupChoiceScreen(
onCreate = {
setupRecovered = false
currentScreen = Screen.CREATE_MNEMONIC
},
) {
setupRecovered = true
currentScreen = Screen.RECOVER_MNEMONIC
}
}
Screen.CREATE_MNEMONIC -> {
CreateAccountMnemonicScreen(
onNext = { currentScreen = Screen.MNEMONIC_GRID },
) { currentScreen = Screen.SETUP_CHOICE }
}
Screen.MNEMONIC_GRID -> {
MnemonicGridScreen(
onNext = { currentScreen = Screen.MNEMONIC_VERIFY },
) { currentScreen = Screen.CREATE_MNEMONIC }
}
Screen.MNEMONIC_VERIFY -> {
MnemonicVerifyScreen(
onFinish = { currentScreen = Screen.SETUP_SUCCESS },
) { currentScreen = Screen.MNEMONIC_GRID }
}
Screen.RECOVER_MNEMONIC -> {
RecoverMnemonicScreen(
onRecover = { currentScreen = Screen.SETUP_SUCCESS },
) { currentScreen = Screen.SETUP_CHOICE }
}
Screen.SETUP_SUCCESS -> {
SetupSuccessScreen(
isRecovered = setupRecovered,
onProceed = { currentScreen = Screen.DASHBOARD },
)
}
Screen.DASHBOARD -> {
DashboardScreen(
onSend = { currentScreen = Screen.QR_SCANNER },
onReceive = { currentScreen = Screen.QR_RECEIVE },
onNavigate = { dest ->
currentScreen = when (dest) {
"settings" -> Screen.SETTINGS
"manage" -> Screen.MANAGE_OVERVIEW
"transactions" -> Screen.EXPLORER
else -> Screen.DASHBOARD
}
},
)
}
Screen.QR_SCANNER -> {
QRScannerScreen(
onGenerate = { currentScreen = Screen.QR_RECEIVE },
onUpload = { /* TODO */ },
) { currentScreen = Screen.DASHBOARD }
}
Screen.QR_RECEIVE -> {
QRReceiveScreen(
onDone = { currentScreen = Screen.DASHBOARD },
) { currentScreen = Screen.DASHBOARD }
}
Screen.SEND_FORM -> {
SendFormScreen(
onReview = { currentScreen = Screen.SEND_REVIEW },
) { currentScreen = Screen.DASHBOARD }
}
Screen.SEND_REVIEW -> {
SendReviewScreen(
onSend = { currentScreen = Screen.SEND_SUCCESS },
) { currentScreen = Screen.SEND_FORM }
}
Screen.SEND_SUCCESS -> {
TransactionSuccessScreen { currentScreen = Screen.DASHBOARD }
}
Screen.SETTINGS -> {
SettingsScreen(
onNavigate = { dest ->
currentScreen = when (dest) {
"dashboard" -> Screen.DASHBOARD
"manage" -> Screen.MANAGE_OVERVIEW
"transactions" -> Screen.EXPLORER
else -> Screen.SETTINGS
}
},
onBack = { currentScreen = Screen.DASHBOARD },
)
}
Screen.MANAGE_OVERVIEW -> {
ManageOverviewScreen(
onWalletDetail = {
selectedWallet = it
currentScreen = Screen.MANAGE_WALLET
},
onAccountDetail = {
selectedAccount = it
currentScreen = Screen.MANAGE_ACCOUNT
},
onNavigate = { dest ->
currentScreen = when (dest) {
"dashboard" -> Screen.DASHBOARD
"settings" -> Screen.SETTINGS
"transactions" -> Screen.EXPLORER
else -> Screen.MANAGE_OVERVIEW
}
},
)
}
Screen.MANAGE_WALLET -> {
ManageWalletScreen(
walletName = selectedWallet,
onDelete = {
deleteType = "WALLET"
deleteName = selectedWallet
currentScreen = Screen.DELETE_CONFIRM
},
onBack = { currentScreen = Screen.MANAGE_OVERVIEW },
)
}
Screen.MANAGE_ACCOUNT -> {
ManageAccountScreen(
accountName = selectedAccount,
walletName = selectedWallet,
onDelete = {
deleteType = "ACCOUNT"
deleteName = selectedAccount
currentScreen = Screen.DELETE_CONFIRM
},
onBack = { currentScreen = Screen.MANAGE_OVERVIEW },
)
}
Screen.DELETE_CONFIRM -> {
DeleteConfirmationScreen(
type = deleteType,
name = deleteName,
onConfirm = { currentScreen = Screen.MANAGE_OVERVIEW },
onCancel = { currentScreen = Screen.MANAGE_OVERVIEW },
)
}
Screen.EXPLORER -> {
ExplorerScreen(
onNavigate = { dest ->
currentScreen = when (dest) {
"dashboard" -> Screen.DASHBOARD
"settings" -> Screen.SETTINGS
"manage" -> Screen.MANAGE_OVERVIEW
else -> Screen.EXPLORER
}
},
onBack = { currentScreen = Screen.DASHBOARD },
)
}
}
}
@@ -0,0 +1,352 @@
package swiss.qpq.gajumobile.ui.components
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import swiss.qpq.gajumobile.R
@Composable
fun GajuButton(
text: String,
onClick: () -> Unit,
modifier: Modifier = Modifier,
containerColor: Color = MaterialTheme.colorScheme.primary,
contentColor: Color = MaterialTheme.colorScheme.onPrimary,
) {
Button(
onClick = onClick,
modifier = modifier
.fillMaxWidth()
.height(56.dp),
shape = RoundedCornerShape(16.dp),
colors = ButtonDefaults.buttonColors(
containerColor = containerColor,
contentColor = contentColor,
),
) {
Text(
text = text.uppercase(),
fontSize = 18.sp,
fontWeight = FontWeight.Bold,
)
}
}
@Composable
fun GajuHeader() {
Row(
modifier = Modifier
.fillMaxWidth()
.padding(16.dp),
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.Center,
) {
Icon(
painter = painterResource(id = R.drawable.gajumobile_icon_colored),
contentDescription = null,
modifier = Modifier.size(32.dp),
tint = Color.Unspecified,
)
Spacer(modifier = Modifier.width(8.dp))
Text(
text = "GajuMobile",
fontSize = 24.sp,
fontWeight = FontWeight.Bold,
color = MaterialTheme.colorScheme.onBackground,
)
}
}
@Composable
fun GajuBottomNavigation(
currentDestination: String,
onNavigate: (String) -> Unit,
) {
Surface(
modifier = Modifier.fillMaxWidth(),
color = MaterialTheme.colorScheme.surface,
tonalElevation = 8.dp,
) {
Row(
modifier = Modifier
.windowInsetsPadding(WindowInsets.navigationBars)
.fillMaxWidth()
.padding(vertical = 8.dp, horizontal = 16.dp),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically,
) {
Icon(
painter = painterResource(id = R.drawable.gajumobile_icon_colored),
contentDescription = "Home",
modifier = Modifier
.size(40.dp)
.clickable { onNavigate("dashboard") },
tint = Color.Unspecified,
)
NavigationItem(
label = "SETTINGS",
icon = R.drawable.settings,
selected = currentDestination == "settings",
) { onNavigate("settings") }
NavigationItem(
label = "MANAGE",
icon = R.drawable.ic_account_box,
selected = currentDestination == "manage",
) { onNavigate("manage") }
NavigationItem(
label = "TRANSACTIONS",
icon = R.drawable.ic_favorite,
selected = currentDestination == "transactions",
) { onNavigate("transactions") }
}
}
}
@Composable
private fun NavigationItem(
label: String,
icon: Int,
selected: Boolean,
onClick: () -> Unit,
) {
Column(
horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier.clickable { onClick() },
) {
Icon(
painter = painterResource(id = icon),
contentDescription = label,
modifier = Modifier.size(24.dp),
tint = if (selected) MaterialTheme.colorScheme.primary else MaterialTheme.colorScheme.onSurfaceVariant,
)
Text(
text = label,
fontSize = 10.sp,
fontWeight = FontWeight.Bold,
color = if (selected) MaterialTheme.colorScheme.primary else MaterialTheme.colorScheme.onSurfaceVariant,
)
}
}
@Composable
fun ActionCircle(
text: String,
containerColor: Color,
contentColor: Color,
onClick: () -> Unit,
) {
Box(
modifier = Modifier
.size(120.dp)
.clip(CircleShape)
.background(containerColor)
.clickable { onClick() },
contentAlignment = Alignment.Center,
) {
Text(
text = text.uppercase(),
color = contentColor,
fontWeight = FontWeight.Bold,
)
}
}
@Composable
fun MnemonicReveal(
mnemonic: String,
modifier: Modifier = Modifier,
) {
var revealed by remember { mutableStateOf(value = false) }
Box(
modifier = modifier
.fillMaxWidth()
.background(MaterialTheme.colorScheme.surfaceVariant, RoundedCornerShape(8.dp))
.clickable { revealed = !revealed }
.padding(16.dp),
contentAlignment = Alignment.Center,
) {
if (revealed) {
Text(
text = mnemonic,
color = MaterialTheme.colorScheme.onSurfaceVariant,
textAlign = TextAlign.Center,
)
} else {
Column(horizontalAlignment = Alignment.CenterHorizontally) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite),
contentDescription = null,
tint = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.6f),
)
Text(
text = "TAP TO REVEAL",
color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.6f),
fontWeight = FontWeight.Bold,
)
}
}
}
}
@Composable
fun GajuTextField(
value: String,
onValueChange: (String) -> Unit,
label: String,
modifier: Modifier = Modifier,
placeholder: String = "",
trailingIcon: @Composable (() -> Unit)? = null,
) {
Column(modifier = modifier) {
Text(
text = label.uppercase(),
fontSize = 14.sp,
color = MaterialTheme.colorScheme.onBackground,
modifier = Modifier.padding(bottom = 8.dp),
)
OutlinedTextField(
value = value,
onValueChange = onValueChange,
placeholder = { Text(placeholder, color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.5f)) },
modifier = Modifier.fillMaxWidth(),
colors = OutlinedTextFieldDefaults.colors(
unfocusedContainerColor = MaterialTheme.colorScheme.surfaceVariant,
focusedContainerColor = MaterialTheme.colorScheme.surfaceVariant,
unfocusedTextColor = MaterialTheme.colorScheme.onSurfaceVariant,
focusedTextColor = MaterialTheme.colorScheme.onSurfaceVariant,
unfocusedBorderColor = Color.Transparent,
focusedBorderColor = MaterialTheme.colorScheme.primary,
),
shape = RoundedCornerShape(8.dp),
trailingIcon = trailingIcon,
)
}
}
@Composable
fun WarningBox(
title: String,
content: String,
modifier: Modifier = Modifier,
icon: Int = R.drawable.ic_favorite, // Default warning icon placeholder
) {
Surface(
modifier = modifier.fillMaxWidth(),
color = MaterialTheme.colorScheme.surfaceVariant,
shape = RoundedCornerShape(8.dp),
) {
Column(
modifier = Modifier.padding(16.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
Icon(
painter = painterResource(id = icon),
contentDescription = null,
tint = MaterialTheme.colorScheme.primary,
modifier = Modifier.size(48.dp),
)
Text(
text = title.uppercase(),
fontWeight = FontWeight.ExtraBold,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
Text(
text = content,
textAlign = TextAlign.Center,
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontSize = 14.sp,
modifier = Modifier.padding(vertical = 8.dp),
)
}
}
}
@Composable
fun SuccessLayout(
title: String,
content: @Composable ColumnScope.() -> Unit,
onProceed: () -> Unit,
proceedText: String = "PROCEED TO DASHBOARD",
) {
var checked by remember { mutableStateOf(value = false) }
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Column(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
) {
Row(
verticalAlignment = Alignment.CenterVertically,
modifier = Modifier
.padding(bottom = 24.dp)
.clickable { checked = !checked },
) {
Checkbox(
checked = checked,
onCheckedChange = { checked = it },
colors = CheckboxDefaults.colors(
checkedColor = MaterialTheme.colorScheme.primary,
uncheckedColor = MaterialTheme.colorScheme.onBackground,
),
)
Text(
text = "I understand and fully assume the risks.",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 14.sp,
modifier = Modifier.padding(start = 8.dp),
)
}
GajuButton(
text = proceedText,
onClick = onProceed,
containerColor = if (checked) Color.White else Color.LightGray,
contentColor = Color.Black,
modifier = Modifier.fillMaxWidth(),
)
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = title.uppercase(),
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(vertical = 24.dp),
)
content()
}
}
}
@@ -0,0 +1,148 @@
package swiss.qpq.gajumobile.ui.screens
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import swiss.qpq.gajumobile.R
import swiss.qpq.gajumobile.ui.components.ActionCircle
import swiss.qpq.gajumobile.ui.components.GajuBottomNavigation
import swiss.qpq.gajumobile.ui.components.GajuHeader
@Composable
fun DashboardScreen(
onSend: () -> Unit,
onReceive: () -> Unit,
onNavigate: (String) -> Unit,
) {
var selectedTab by remember { mutableIntStateOf(0) }
val tabs = listOf("DAILY", "SHOPPING", "INCIDENTALS")
Scaffold(
bottomBar = { GajuBottomNavigation("dashboard", onNavigate) },
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "EXPENSES",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Light,
modifier = Modifier.padding(top = 16.dp),
)
SecondaryTabRow(
selectedTabIndex = selectedTab,
containerColor = Color.Transparent,
contentColor = MaterialTheme.colorScheme.onBackground,
divider = {},
indicator = {
TabRowDefaults.SecondaryIndicator(
Modifier.tabIndicatorOffset(selectedTab),
color = MaterialTheme.colorScheme.primary,
)
},
modifier = Modifier.padding(vertical = 16.dp),
) {
tabs.forEachIndexed { index, title ->
Tab(
selected = selectedTab == index,
onClick = { selectedTab = index },
text = {
Text(
title,
color = if (selectedTab == index) MaterialTheme.colorScheme.primary else MaterialTheme.colorScheme.onSurfaceVariant,
fontWeight = FontWeight.Bold,
)
}
)
}
}
Box(
modifier = Modifier
.fillMaxWidth()
.padding(horizontal = 24.dp)
.background(MaterialTheme.colorScheme.surfaceVariant, RoundedCornerShape(16.dp))
.padding(24.dp),
) {
Column {
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically,
) {
Text("BALANCE", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 14.sp)
Icon(
painter = painterResource(id = R.drawable.ic_favorite), // Replace with eye icon
contentDescription = null,
tint = MaterialTheme.colorScheme.onSurfaceVariant,
modifier = Modifier.size(24.dp),
)
}
Spacer(modifier = Modifier.height(16.dp))
Row(verticalAlignment = Alignment.CenterVertically) {
Text("", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 24.sp)
Spacer(modifier = Modifier.width(8.dp))
Text(
text = "128,990,422",
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontSize = 32.sp,
fontWeight = FontWeight.Bold,
)
Text(
text = ".129,853",
color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.6f),
fontSize = 18.sp,
)
}
Row(modifier = Modifier.padding(start = 32.dp)) {
Text("Gajus", color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.6f), fontSize = 10.sp)
Spacer(modifier = Modifier.width(16.dp))
Text("Pucks", color = MaterialTheme.colorScheme.onSurfaceVariant.copy(alpha = 0.6f), fontSize = 10.sp)
}
}
}
Spacer(modifier = Modifier.weight(1f))
Row(
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 64.dp),
horizontalArrangement = Arrangement.SpaceEvenly,
) {
ActionCircle(
text = "SEND",
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
onClick = onSend,
)
ActionCircle(
text = "RECEIVE",
containerColor = MaterialTheme.colorScheme.primary,
contentColor = MaterialTheme.colorScheme.onPrimary,
onClick = onReceive,
)
}
}
}
}
@@ -0,0 +1,570 @@
package swiss.qpq.gajumobile.ui.screens
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import swiss.qpq.gajumobile.R
import swiss.qpq.gajumobile.ui.components.*
@Composable
fun SettingsScreen(
onNavigate: (String) -> Unit,
onBack: () -> Unit,
) {
var biometricsEnabled by remember { mutableStateOf(value = true) }
Scaffold(
bottomBar = { GajuBottomNavigation("settings", onNavigate) },
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(24.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "SETTINGS",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Light,
modifier = Modifier.padding(vertical = 16.dp),
)
Icon(
painter = painterResource(id = R.drawable.settings),
contentDescription = null,
modifier = Modifier.size(32.dp),
tint = MaterialTheme.colorScheme.onBackground,
)
Spacer(modifier = Modifier.height(32.dp))
Surface(
modifier = Modifier.fillMaxWidth(),
color = MaterialTheme.colorScheme.surfaceVariant,
shape = RoundedCornerShape(8.dp),
) {
Text(
text = "APP SECURITY",
textAlign = TextAlign.Center,
color = MaterialTheme.colorScheme.onSurfaceVariant,
modifier = Modifier.padding(16.dp),
)
}
Spacer(modifier = Modifier.height(24.dp))
Row(
modifier = Modifier.fillMaxWidth(),
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.SpaceBetween,
) {
Text(
text = "ENABLE BIOMETRICS LOGIN",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 14.sp,
)
Switch(
checked = biometricsEnabled,
onCheckedChange = { biometricsEnabled = it },
colors = SwitchDefaults.colors(
checkedThumbColor = Color.White,
checkedTrackColor = MaterialTheme.colorScheme.primary,
),
)
}
Spacer(modifier = Modifier.weight(1f))
IconButton(onClick = onBack, modifier = Modifier.align(Alignment.Start)) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite),
contentDescription = "Back",
tint = MaterialTheme.colorScheme.primary,
)
}
}
}
}
@Composable
fun ManageOverviewScreen(
onWalletDetail: (String) -> Unit,
onAccountDetail: (String) -> Unit,
onNavigate: (String) -> Unit,
) {
Scaffold(
bottomBar = { GajuBottomNavigation("manage", onNavigate) },
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(24.dp)
.verticalScroll(rememberScrollState()),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "MANAGE",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Light,
modifier = Modifier.padding(vertical = 16.dp),
)
Text(
text = "Every wallet can have multiple accounts.\nEvery account within a wallet has its own mnemonic phrase.\nMake sure you save the mnemonics for each account. Lost mnemonics cannot be retrieved.",
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontSize = 12.sp,
textAlign = TextAlign.Center,
modifier = Modifier.padding(bottom = 32.dp),
)
WalletCard(
name = "PRIMARY WALLET",
accounts = listOf("DAILY", "SHOPPING", "INCIDENTALS"),
onWalletClick = { onWalletDetail("Primary") },
onAccountClick = onAccountDetail,
)
Spacer(modifier = Modifier.height(24.dp))
WalletCard(
name = "SAVINGS WALLET",
accounts = listOf("EMERGENCY"),
onWalletClick = { onWalletDetail("Savings") },
onAccountClick = onAccountDetail,
)
Spacer(modifier = Modifier.height(32.dp))
FloatingActionButton(
onClick = { /* TODO */ },
containerColor = MaterialTheme.colorScheme.primary,
contentColor = Color.White,
shape = CircleShape,
) {
Icon(painterResource(R.drawable.ic_favorite), contentDescription = "Add Wallet")
}
Text("Add a new wallet", color = MaterialTheme.colorScheme.onBackground, fontSize = 12.sp, modifier = Modifier.padding(top = 8.dp))
}
}
}
@Composable
private fun WalletCard(
name: String,
accounts: List<String>,
onWalletClick: () -> Unit,
onAccountClick: (String) -> Unit,
) {
Column(horizontalAlignment = Alignment.CenterHorizontally) {
Surface(
modifier = Modifier.fillMaxWidth().clickable { onWalletClick() },
color = Color.White,
shape = RoundedCornerShape(8.dp),
) {
Row(
modifier = Modifier.padding(16.dp),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically,
) {
Spacer(modifier = Modifier.width(32.dp))
Text(text = name, color = Color.Black, fontWeight = FontWeight.Bold)
Icon(painterResource(R.drawable.settings), null, tint = Color.Black, modifier = Modifier.size(24.dp))
}
}
Row(verticalAlignment = Alignment.CenterVertically, modifier = Modifier.padding(top = 16.dp)) {
Text("Accounts within this wallet:", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 14.sp)
}
accounts.forEach { account ->
Surface(
modifier = Modifier.padding(top = 8.dp).width(200.dp).clickable { onAccountClick(account) },
color = Color.Gray,
shape = RoundedCornerShape(8.dp),
) {
Row(
modifier = Modifier.padding(12.dp),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically,
) {
Text(text = account, color = Color.White, fontSize = 14.sp)
Icon(painterResource(R.drawable.settings), null, tint = Color.White, modifier = Modifier.size(16.dp))
}
}
}
Row(
modifier = Modifier.padding(top = 16.dp).clickable { /* TODO */ },
verticalAlignment = Alignment.CenterVertically,
) {
Icon(painterResource(R.drawable.ic_favorite), null, tint = MaterialTheme.colorScheme.onSurface, modifier = Modifier.size(20.dp))
Spacer(modifier = Modifier.width(8.dp))
Text("Add a new account within this wallet", color = MaterialTheme.colorScheme.onSurface, fontSize = 12.sp)
}
}
}
@Composable
fun ExplorerScreen(
onNavigate: (String) -> Unit,
onBack: () -> Unit,
) {
Scaffold(
bottomBar = { GajuBottomNavigation("transactions", onNavigate) },
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "TRANSACTIONS",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Light,
modifier = Modifier.padding(vertical = 16.dp),
)
Text("Loading Groot", color = MaterialTheme.colorScheme.primary, fontStyle = androidx.compose.ui.text.font.FontStyle.Italic)
Spacer(modifier = Modifier.height(16.dp))
Surface(
modifier = Modifier.fillMaxWidth().weight(1f).padding(horizontal = 24.dp, vertical = 8.dp),
color = Color.White,
shape = RoundedCornerShape(4.dp),
) {
Box(contentAlignment = Alignment.Center) {
Text("Gaju Explorer Content", color = Color.Gray)
}
}
IconButton(onClick = onBack, modifier = Modifier.align(Alignment.Start).padding(16.dp)) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite),
contentDescription = "Back",
tint = MaterialTheme.colorScheme.primary,
)
}
}
}
}
@Composable
fun ManageWalletScreen(
walletName: String,
onDelete: () -> Unit,
onBack: () -> Unit,
) {
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Column(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
ManageAction(label = "Delete this wallet", icon = R.drawable.ic_favorite, isDestructive = true, onClick = onDelete)
Spacer(modifier = Modifier.height(16.dp))
IconButton(onClick = onBack, modifier = Modifier.align(Alignment.Start)) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite),
contentDescription = "Back",
tint = MaterialTheme.colorScheme.primary,
)
}
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp)
.verticalScroll(rememberScrollState()),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "MANAGE WALLET",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Light,
modifier = Modifier.padding(vertical = 16.dp),
)
Surface(
modifier = Modifier.fillMaxWidth(),
color = Color.White,
shape = RoundedCornerShape(8.dp),
) {
Row(
modifier = Modifier.padding(16.dp),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically,
) {
Spacer(modifier = Modifier.width(32.dp))
Text(text = walletName.uppercase(), color = Color.Black, fontWeight = FontWeight.Bold)
Icon(painterResource(R.drawable.settings), null, tint = Color.Black)
}
}
Spacer(modifier = Modifier.height(32.dp))
Text("Accounts within this wallet", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 14.sp)
Text("DAILY 木 128,990,422.129,853", color = MaterialTheme.colorScheme.onBackground, modifier = Modifier.padding(top = 16.dp))
Text("SHOPPING 木 65,829,121.9,803", color = MaterialTheme.colorScheme.onBackground, modifier = Modifier.padding(top = 8.dp))
Text("INCIDENTALS 木 45,001,442.223,000,034", color = MaterialTheme.colorScheme.onBackground, modifier = Modifier.padding(top = 8.dp))
Spacer(modifier = Modifier.height(32.dp))
Row(modifier = Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.SpaceEvenly) {
ManageAction(label = "Rename this wallet", icon = R.drawable.ic_favorite)
ManageAction(label = "Add a new account", icon = R.drawable.ic_favorite)
}
}
}
}
@Composable
fun ManageAccountScreen(
accountName: String,
walletName: String,
onDelete: () -> Unit,
onBack: () -> Unit,
) {
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Column(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
ManageAction(label = "Delete this account", icon = R.drawable.ic_favorite, isDestructive = true, onClick = onDelete)
Spacer(modifier = Modifier.height(16.dp))
IconButton(onClick = onBack, modifier = Modifier.align(Alignment.Start)) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite),
contentDescription = "Back",
tint = MaterialTheme.colorScheme.primary,
)
}
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "MANAGE ACCOUNT",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Light,
modifier = Modifier.padding(vertical = 16.dp),
)
Surface(
modifier = Modifier.fillMaxWidth(),
color = Color.Transparent,
shape = RoundedCornerShape(8.dp),
border = androidx.compose.foundation.BorderStroke(1.dp, Color.White),
) {
Text(
text = walletName.uppercase(),
color = Color.White,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(16.dp),
textAlign = TextAlign.Center,
)
}
Spacer(modifier = Modifier.height(32.dp))
GajuButton(
text = accountName,
onClick = {},
containerColor = MaterialTheme.colorScheme.primary,
modifier = Modifier.width(200.dp),
)
Text("木 128,990,422.129,853", color = MaterialTheme.colorScheme.onBackground, modifier = Modifier.padding(top = 8.dp))
Spacer(modifier = Modifier.height(64.dp))
ManageAction(label = "Rename this account", icon = R.drawable.ic_favorite)
}
}
}
@Composable
fun DeleteConfirmationScreen(
type: String, // "WALLET" or "ACCOUNT"
name: String,
onConfirm: () -> Unit,
onCancel: () -> Unit,
) {
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Column(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
) {
GajuButton(
text = "CANCEL",
onClick = onCancel,
modifier = Modifier.fillMaxWidth(),
containerColor = Color.White,
contentColor = Color.Black,
)
Spacer(modifier = Modifier.height(16.dp))
GajuButton(
text = "CONFIRM\nDELETE",
onClick = onConfirm,
modifier = Modifier.fillMaxWidth(),
containerColor = Color(0xFFF44336),
)
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp)
.verticalScroll(rememberScrollState()),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "DELETE $type",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(vertical = 24.dp),
)
Surface(
modifier = Modifier.fillMaxWidth(),
color = Color.White,
shape = RoundedCornerShape(8.dp),
) {
Text(
text = name.uppercase(),
color = Color.Black,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(16.dp),
textAlign = TextAlign.Center,
)
}
Spacer(modifier = Modifier.height(32.dp))
Text("Accounts within this wallet", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 14.sp)
Text("DAILY 木 128,990,422.129,853", color = MaterialTheme.colorScheme.onBackground, modifier = Modifier.padding(top = 16.dp))
Spacer(modifier = Modifier.height(32.dp))
Text(
text = "WARNING: Deleting a $type will delete all accounts within it.",
color = Color.Yellow,
fontWeight = FontWeight.Bold,
fontSize = 12.sp,
textAlign = TextAlign.Center,
)
Text(
text = """
To recover a deleted account, you will need your mnemonic phrase. Lost mnemonic phrases cannot be retrieved.
All funds within a lost account are also lost.
Back up your mnemonic phrases for every account before making any changes here to be safe.
This action cannot be undone.
""".trimIndent(),
color = MaterialTheme.colorScheme.onBackground,
fontSize = 12.sp,
textAlign = TextAlign.Center,
modifier = Modifier.padding(vertical = 16.dp),
)
var checked by remember { mutableStateOf(value = false) }
Row(verticalAlignment = Alignment.CenterVertically, modifier = Modifier.clickable { checked = !checked }) {
Checkbox(checked = checked, onCheckedChange = { checked = it })
Text(
"I understand and assume all risks from this action. I would like to proceed.",
fontSize = 12.sp,
color = MaterialTheme.colorScheme.onBackground,
)
}
}
}
}
@Composable
private fun ManageAction(label: String, icon: Int, isDestructive: Boolean = false, onClick: () -> Unit = {}) {
Row(verticalAlignment = Alignment.CenterVertically, modifier = Modifier.clickable { onClick() }) {
Icon(
painterResource(icon),
null,
tint = if (isDestructive) Color.Red else MaterialTheme.colorScheme.onSurface,
modifier = Modifier.size(20.dp),
)
Spacer(modifier = Modifier.width(8.dp))
Text(
text = label,
color = if (isDestructive) Color.Red else MaterialTheme.colorScheme.onSurface,
fontSize = 12.sp,
)
}
}
@@ -0,0 +1,116 @@
package swiss.qpq.gajumobile.ui.screens
import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.material3.*
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import swiss.qpq.gajumobile.R
import swiss.qpq.gajumobile.ui.components.GajuButton
@Composable
fun WelcomeContinueScreen(onContinue: () -> Unit) {
Box(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.safeDrawingPadding(),
contentAlignment = Alignment.Center,
) {
Column(horizontalAlignment = Alignment.CenterHorizontally) {
Surface(
modifier = Modifier.size(180.dp),
shape = androidx.compose.foundation.shape.RoundedCornerShape(40.dp),
color = Color.Transparent,
border = androidx.compose.foundation.BorderStroke(1.dp, Color.Gray),
) {
Box(contentAlignment = Alignment.Center) {
Icon(
painter = painterResource(id = R.drawable.ic_account_box), // Replace with actual alien icon if available
contentDescription = null,
modifier = Modifier.size(120.dp),
tint = MaterialTheme.colorScheme.onSurface,
)
}
}
Spacer(modifier = Modifier.height(64.dp))
GajuButton(
text = "CONTINUE",
onClick = onContinue,
modifier = Modifier.width(200.dp),
)
}
}
}
@Composable
fun BiometricsPromptScreen(
onYes: () -> Unit,
onNo: () -> Unit,
) {
Box(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.safeDrawingPadding(),
contentAlignment = Alignment.Center,
) {
Column(
horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier.padding(32.dp),
) {
Image(
painter = painterResource(id = R.drawable.gajumobile_icon_colored),
contentDescription = null,
modifier = Modifier.size(100.dp),
)
Spacer(modifier = Modifier.height(48.dp))
Text(
text = "Would you like to use your phone biometrics for logging in to this app?",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Bold,
textAlign = TextAlign.Center,
)
Spacer(modifier = Modifier.height(16.dp))
Text(
text = "Don't worry. You can still change this in your settings later.",
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontSize = 14.sp,
textAlign = TextAlign.Center,
)
Spacer(modifier = Modifier.height(64.dp))
Row(modifier = Modifier.fillMaxWidth()) {
GajuButton(
text = "NO",
onClick = onNo,
modifier = Modifier.weight(1f),
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
)
Spacer(modifier = Modifier.width(16.dp))
GajuButton(
text = "YES",
onClick = onYes,
modifier = Modifier.weight(1f),
)
}
}
}
}
@@ -0,0 +1,50 @@
package swiss.qpq.gajumobile.ui.screens
import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import kotlinx.coroutines.delay
import swiss.qpq.gajumobile.R
import kotlin.time.Duration.Companion.seconds
@Composable
fun SplashScreen(onTimeout: () -> Unit) {
LaunchedEffect(Unit) {
delay(2.seconds)
onTimeout()
}
Box(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.safeDrawingPadding(),
contentAlignment = Alignment.Center,
) {
Column(horizontalAlignment = Alignment.CenterHorizontally) {
Image(
painter = painterResource(id = R.drawable.gajumobile_logo_colored),
contentDescription = null,
modifier = Modifier.size(200.dp),
)
Spacer(modifier = Modifier.height(24.dp))
Text(
text = "Welcome to smarter, safer finance.",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 16.sp,
fontWeight = FontWeight.Medium,
)
}
}
}
@@ -0,0 +1,423 @@
package swiss.qpq.gajumobile.ui.screens
import androidx.compose.foundation.background
import androidx.compose.foundation.border
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import swiss.qpq.gajumobile.R
import swiss.qpq.gajumobile.ui.components.*
@Composable
fun QRScannerScreen(
onGenerate: () -> Unit,
onUpload: () -> Unit,
onBack: () -> Unit,
) {
Box(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.safeDrawingPadding(),
) {
Column(
modifier = Modifier.fillMaxSize(),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "SCAN QR",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Light,
modifier = Modifier.padding(top = 16.dp),
)
Spacer(modifier = Modifier.weight(1f))
// Scanner Viewfinder Mockup
Box(
modifier = Modifier
.size(280.dp)
.border(2.dp, Color.White, RoundedCornerShape(16.dp)),
contentAlignment = Alignment.Center,
) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite), // Replace with scan icon
contentDescription = null,
modifier = Modifier.size(80.dp),
tint = MaterialTheme.colorScheme.primary,
)
}
Spacer(modifier = Modifier.weight(1f))
Row(
modifier = Modifier
.fillMaxWidth()
.padding(bottom = 48.dp),
horizontalArrangement = Arrangement.SpaceEvenly,
) {
ScannerAction(label = "GENERATE QR", icon = R.drawable.ic_favorite, onClick = onGenerate)
ScannerAction(label = "UPLOAD QR", icon = R.drawable.ic_favorite, onClick = onUpload)
}
}
// Back arrow button from mockup
IconButton(
onClick = onBack,
modifier = Modifier.align(Alignment.CenterStart).padding(start = 16.dp).size(48.dp),
) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite), // Replace with back arrow
contentDescription = "Back",
tint = MaterialTheme.colorScheme.primary,
modifier = Modifier.size(32.dp),
)
}
}
}
@Composable
private fun ScannerAction(label: String, icon: Int, onClick: () -> Unit) {
Column(horizontalAlignment = Alignment.CenterHorizontally) {
Surface(
modifier = Modifier.size(48.dp).clickable { onClick() },
shape = RoundedCornerShape(8.dp),
color = MaterialTheme.colorScheme.surfaceVariant,
) {
Box(contentAlignment = Alignment.Center) {
Icon(
painter = painterResource(id = icon),
contentDescription = null,
modifier = Modifier.size(24.dp),
tint = MaterialTheme.colorScheme.onSurfaceVariant,
)
}
}
Text(
text = label,
fontSize = 10.sp,
color = MaterialTheme.colorScheme.onBackground,
modifier = Modifier.padding(top = 8.dp),
)
}
}
@Composable
fun QRReceiveScreen(
onDone: () -> Unit,
onBack: () -> Unit,
) {
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Column(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(horizontal = 24.dp, vertical = 32.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuButton(
text = "DONE",
onClick = onDone,
modifier = Modifier.width(160.dp),
)
Spacer(modifier = Modifier.height(16.dp))
IconButton(onClick = onBack, modifier = Modifier.align(Alignment.Start)) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite),
contentDescription = "Back",
tint = MaterialTheme.colorScheme.primary,
)
}
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Spacer(modifier = Modifier.weight(1f))
// QR Code Placeholder
Surface(
modifier = Modifier.size(240.dp),
color = Color.White,
shape = RoundedCornerShape(16.dp),
) {
Box(contentAlignment = Alignment.Center) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite), // Replace with actual QR
contentDescription = "QR Code",
modifier = Modifier.size(180.dp),
tint = Color.Black,
)
}
}
Text(
text = "Sender must scan this QR.",
color = MaterialTheme.colorScheme.onBackground,
modifier = Modifier.padding(top = 24.dp),
)
Text(
text = "You can also send them a screenshot of this QR.",
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontSize = 12.sp,
fontStyle = androidx.compose.ui.text.font.FontStyle.Italic,
)
Spacer(modifier = Modifier.weight(1f))
}
}
}
@Composable
fun SendFormScreen(
onReview: () -> Unit,
onBack: () -> Unit,
) {
var toAddress by remember { mutableStateOf(value = "") }
var amount by remember { mutableStateOf(value = "") }
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Row(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
) {
GajuButton(
text = "BACK",
onClick = onBack,
modifier = Modifier.weight(1f),
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
)
Spacer(modifier = Modifier.width(16.dp))
GajuButton(
text = "REVIEW",
onClick = onReview,
modifier = Modifier.weight(1f),
)
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp)
.verticalScroll(rememberScrollState()),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "SEND",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 24.sp,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(vertical = 16.dp),
)
Row(modifier = Modifier.fillMaxWidth(), verticalAlignment = Alignment.CenterVertically) {
Text("SENDING FROM", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 14.sp)
Spacer(modifier = Modifier.width(8.dp))
Text("DAILY", color = MaterialTheme.colorScheme.primary, fontWeight = FontWeight.Bold)
Icon(painterResource(R.drawable.ic_favorite), null, tint = Color.Gray) // Dropdown arrow
}
Text(
text = "PRIMARY WALLET",
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontSize = 12.sp,
modifier = Modifier.align(Alignment.End),
)
Spacer(modifier = Modifier.height(24.dp))
GajuTextField(
value = toAddress,
onValueChange = { toAddress = it },
label = "SENDING TO",
placeholder = "ak_...",
modifier = Modifier.fillMaxWidth(),
)
Spacer(modifier = Modifier.height(24.dp))
GajuTextField(
value = amount,
onValueChange = { amount = it },
label = "AMOUNT",
placeholder = "0.0",
modifier = Modifier.fillMaxWidth(),
trailingIcon = { Text("", color = MaterialTheme.colorScheme.onSurface) },
)
Spacer(modifier = Modifier.height(16.dp))
Row(modifier = Modifier.fillMaxWidth(), verticalAlignment = Alignment.CenterVertically) {
Text("CURRENCY", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 14.sp)
Spacer(modifier = Modifier.width(8.dp))
Text("木 Gajus", color = MaterialTheme.colorScheme.onBackground)
Icon(painterResource(R.drawable.ic_favorite), null, tint = Color.Gray)
}
}
}
}
@Composable
fun SendReviewScreen(
onSend: () -> Unit,
onBack: () -> Unit,
) {
var confirmed by remember { mutableStateOf(value = false) }
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Column(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
) {
Row(
verticalAlignment = Alignment.CenterVertically,
modifier = Modifier.clickable { confirmed = !confirmed }.padding(bottom = 24.dp)
) {
Checkbox(checked = confirmed, onCheckedChange = { confirmed = it })
Text(
"I confirm that the above details are correct and I would like to proceed.",
fontSize = 12.sp,
color = MaterialTheme.colorScheme.onBackground,
)
}
Row(modifier = Modifier.fillMaxWidth()) {
GajuButton(
text = "BACK",
onClick = onBack,
modifier = Modifier.weight(1f),
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
)
Spacer(modifier = Modifier.width(16.dp))
GajuButton(
text = "SEND",
onClick = onSend,
modifier = Modifier.weight(1f),
containerColor = if (confirmed) MaterialTheme.colorScheme.primary else Color.LightGray,
)
}
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp)
.verticalScroll(rememberScrollState()),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "SEND",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 24.sp,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(vertical = 16.dp),
)
Text("SENDING FROM", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 12.sp)
Text("DAILY Account", color = MaterialTheme.colorScheme.primary, fontWeight = FontWeight.Bold)
Text("PRIMARY WALLET", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 10.sp)
Spacer(modifier = Modifier.height(16.dp))
Text("SENDING TO", color = MaterialTheme.colorScheme.onSurfaceVariant, fontSize = 12.sp)
Text("ALICE S....VAN", fontWeight = FontWeight.Bold, color = MaterialTheme.colorScheme.onBackground)
Text(
text = "ak_9jzmTHpVCbXfMSfyvxGV1ZLbzR8YqdK4jpSL5WgUKLGM4XPVp",
fontSize = 10.sp,
textAlign = TextAlign.Center,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)
Spacer(modifier = Modifier.height(24.dp))
Surface(
modifier = Modifier.fillMaxWidth(),
color = MaterialTheme.colorScheme.surfaceVariant,
shape = RoundedCornerShape(16.dp),
) {
Column(modifier = Modifier.padding(24.dp), horizontalAlignment = Alignment.CenterHorizontally) {
Text("You are sending a payment of", fontSize = 14.sp, color = MaterialTheme.colorScheme.onSurfaceVariant)
Text("木 22,980.78991", fontSize = 24.sp, fontWeight = FontWeight.Bold, color = MaterialTheme.colorScheme.primary)
Text("to", fontSize = 14.sp, color = MaterialTheme.colorScheme.onSurfaceVariant)
Text("ak_9jzm...", fontSize = 12.sp, color = MaterialTheme.colorScheme.onSurfaceVariant)
Spacer(modifier = Modifier.height(16.dp))
Text("THIS ACTION CANNOT BE UNDONE.", fontWeight = FontWeight.ExtraBold, color = MaterialTheme.colorScheme.onSurfaceVariant)
Text("Are you sure you want to proceed?", fontStyle = androidx.compose.ui.text.font.FontStyle.Italic, color = MaterialTheme.colorScheme.onSurfaceVariant)
}
}
}
}
}
@Composable
fun TransactionSuccessScreen(
onExit: () -> Unit,
) {
SuccessLayout(
title = "SEND",
proceedText = "EXIT",
onProceed = onExit,
content = {
Text("Transaction Successful!", color = MaterialTheme.colorScheme.primary, fontWeight = FontWeight.Bold)
Spacer(modifier = Modifier.height(32.dp))
Text("You have successfully sent a payment of", fontSize = 14.sp, color = MaterialTheme.colorScheme.onBackground)
Text("木 22,980.78991", fontSize = 24.sp, fontWeight = FontWeight.Bold, color = MaterialTheme.colorScheme.primary)
Text("to", fontSize = 14.sp, color = MaterialTheme.colorScheme.onBackground)
Text("ak_9jzm...", fontSize = 12.sp, color = MaterialTheme.colorScheme.onBackground)
Spacer(modifier = Modifier.height(32.dp))
Text("The amount has been subtracted from the DAILY account in your PRIMARY WALLET.", textAlign = TextAlign.Center, fontSize = 12.sp, color = MaterialTheme.colorScheme.onBackground)
Spacer(modifier = Modifier.height(32.dp))
Text("You can track this transaction on-chain here.", fontSize = 12.sp, color = MaterialTheme.colorScheme.onBackground)
Text("VIEW TRANSACTION ON-CHAIN", color = MaterialTheme.colorScheme.primary, fontWeight = FontWeight.Bold, fontSize = 12.sp)
},
)
}
@@ -0,0 +1,538 @@
package swiss.qpq.gajumobile.ui.screens
import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.lazy.grid.GridCells
import androidx.compose.foundation.lazy.grid.LazyVerticalGrid
import androidx.compose.foundation.lazy.grid.itemsIndexed
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.verticalScroll
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import swiss.qpq.gajumobile.R
import swiss.qpq.gajumobile.ui.components.GajuButton
import swiss.qpq.gajumobile.ui.components.GajuHeader
import swiss.qpq.gajumobile.ui.components.GajuTextField
import swiss.qpq.gajumobile.ui.components.MnemonicReveal
import swiss.qpq.gajumobile.ui.components.SuccessLayout
import swiss.qpq.gajumobile.ui.components.WarningBox
@Composable
fun SetupChoiceScreen(
onCreate: () -> Unit,
onRecover: () -> Unit,
) {
Box(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.safeDrawingPadding(),
contentAlignment = Alignment.Center,
) {
Column(
horizontalAlignment = Alignment.CenterHorizontally,
modifier = Modifier.padding(32.dp),
) {
Image(
painter = painterResource(id = R.drawable.gajumobile_icon_colored),
contentDescription = null,
modifier = Modifier.size(120.dp),
)
Spacer(modifier = Modifier.height(64.dp))
GajuButton(
text = "CREATE\nACCOUNT",
onClick = onCreate,
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
)
Spacer(modifier = Modifier.height(24.dp))
GajuButton(
text = "RECOVER\nEXISTING ACCOUNT",
onClick = onRecover,
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
)
Spacer(modifier = Modifier.height(24.dp))
Text(
text = "To recover and existing account, you will need your mnemonic phrase. You can add existing accounts later if you don't have access to your mnemonic phrase at the moment.",
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontSize = 12.sp,
textAlign = TextAlign.Center,
fontStyle = androidx.compose.ui.text.font.FontStyle.Italic,
)
}
}
}
@Composable
fun CreateAccountMnemonicScreen(
onNext: () -> Unit,
onCancel: () -> Unit,
) {
var accountName by remember { mutableStateOf(value = "") }
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Row(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
) {
GajuButton(
text = "CANCEL",
onClick = onCancel,
modifier = Modifier.weight(1f),
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
)
Spacer(modifier = Modifier.width(16.dp))
GajuButton(
text = "NEXT",
onClick = onNext,
modifier = Modifier.weight(1f),
)
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp)
.verticalScroll(rememberScrollState()),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "CREATE NEW ACCOUNT",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(vertical = 24.dp),
)
GajuTextField(
value = accountName,
onValueChange = { accountName = it },
label = "ACCOUNT NAME",
placeholder = "Name your account",
)
Spacer(modifier = Modifier.height(16.dp))
Text(
text = "MNEMONIC PHRASE",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 14.sp,
modifier = Modifier.align(Alignment.Start),
)
Spacer(modifier = Modifier.height(8.dp))
Surface(
modifier = Modifier
.fillMaxWidth()
.heightIn(min = 200.dp),
color = MaterialTheme.colorScheme.surfaceVariant,
shape = RoundedCornerShape(8.dp),
) {
Column(
modifier = Modifier.padding(16.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
WarningBox(
title = "IMPORTANT",
content = "Do not let anyone else see this.\nThis may be used to access your funds.",
)
Spacer(modifier = Modifier.height(24.dp))
Text(
text = "You will need to verify this mnemonic phrase in the next window to proceed. Get ready to back this up on a piece of paper. Make sure nobody else can access it.",
textAlign = TextAlign.Center,
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontSize = 12.sp,
)
Spacer(modifier = Modifier.height(16.dp))
MnemonicReveal(mnemonic = "abandon ability able about above absent absorb abstract absurd abuse access accident account accuse achieve acid acoustic acquire across act action actor actress actual")
}
}
}
}
}
@Composable
fun MnemonicGridScreen(
onNext: () -> Unit,
onBack: () -> Unit,
) {
val mnemonic = "abandon ability able about above absent absorb abstract absurd abuse access accident account accuse achieve acid acoustic acquire across act action actor actress actual".split(" ")
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Row(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
) {
GajuButton(
text = "BACK",
onClick = onBack,
modifier = Modifier.weight(1f),
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
)
Spacer(modifier = Modifier.width(16.dp))
GajuButton(
text = "NEXT",
onClick = onNext,
modifier = Modifier.weight(1f),
)
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "CREATE NEW ACCOUNT",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(vertical = 24.dp),
)
GajuTextField(
value = "DAILY",
onValueChange = {},
label = "ACCOUNT NAME",
modifier = Modifier.fillMaxWidth(),
)
Spacer(modifier = Modifier.height(16.dp))
Text(
text = "MNEMONIC PHRASE",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 14.sp,
modifier = Modifier.align(Alignment.Start),
)
Spacer(modifier = Modifier.height(8.dp))
var hidden by remember { mutableStateOf(value = false) }
Surface(
modifier = Modifier
.fillMaxWidth()
.weight(1f),
color = MaterialTheme.colorScheme.surfaceVariant,
shape = RoundedCornerShape(8.dp),
) {
Column(
modifier = Modifier.padding(16.dp),
horizontalAlignment = Alignment.CenterHorizontally,
) {
if (hidden) {
Box(
modifier = Modifier
.fillMaxSize()
.clickable { hidden = false },
contentAlignment = Alignment.Center,
) {
Text(
text = "TAP TO SHOW",
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontWeight = FontWeight.Bold,
)
}
} else {
LazyVerticalGrid(
columns = GridCells.Fixed(count = 2),
modifier = Modifier.weight(1f),
contentPadding = PaddingValues(8.dp),
verticalArrangement = Arrangement.spacedBy(8.dp),
horizontalArrangement = Arrangement.spacedBy(16.dp),
) {
itemsIndexed(mnemonic) { index, word ->
Text(
text = "${index + 1}. $word",
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontSize = 14.sp,
)
}
}
Row(
modifier = Modifier
.fillMaxWidth()
.clickable { hidden = true }
.padding(vertical = 16.dp),
horizontalArrangement = Arrangement.Center,
verticalAlignment = Alignment.CenterVertically,
) {
Icon(
painter = painterResource(id = R.drawable.ic_favorite),
contentDescription = null,
modifier = Modifier.size(24.dp),
tint = MaterialTheme.colorScheme.onSurfaceVariant,
)
Spacer(modifier = Modifier.width(8.dp))
Text(
text = "TAP TO HIDE.",
color = MaterialTheme.colorScheme.onSurfaceVariant,
fontWeight = FontWeight.Bold,
)
}
}
}
}
}
}
}
@Composable
fun MnemonicVerifyScreen(
onFinish: () -> Unit,
onBack: () -> Unit,
) {
val wordsToVerify = listOf("Word 9", "Word 22", "Word 3", "Word 12", "Word 17", "Word 15")
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Row(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
) {
GajuButton(
text = "BACK",
onClick = onBack,
modifier = Modifier.weight(1f),
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
)
Spacer(modifier = Modifier.width(16.dp))
GajuButton(
text = "FINISH",
onClick = onFinish,
modifier = Modifier.weight(1f),
)
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp)
.verticalScroll(rememberScrollState()),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "CREATE NEW ACCOUNT",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(vertical = 24.dp),
)
GajuTextField(
value = "",
onValueChange = {},
label = "ACCOUNT NAME",
placeholder = "Name your account",
)
Spacer(modifier = Modifier.height(16.dp))
Text(
text = "Verify your mnemonic",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 14.sp,
modifier = Modifier
.align(Alignment.Start)
.padding(bottom = 8.dp),
)
wordsToVerify.forEach { label ->
GajuTextField(
value = "",
onValueChange = {},
label = "",
placeholder = label,
modifier = Modifier.padding(vertical = 4.dp),
)
}
}
}
}
@Composable
fun RecoverMnemonicScreen(
onRecover: () -> Unit,
onBack: () -> Unit,
) {
Scaffold(
modifier = Modifier.fillMaxSize(),
bottomBar = {
Row(
modifier = Modifier
.fillMaxWidth()
.windowInsetsPadding(WindowInsets.navigationBars)
.padding(24.dp),
) {
GajuButton(
text = "BACK",
onClick = onBack,
modifier = Modifier.weight(1f),
containerColor = MaterialTheme.colorScheme.secondary,
contentColor = MaterialTheme.colorScheme.onSecondary,
)
Spacer(modifier = Modifier.width(16.dp))
GajuButton(
text = "RECOVER\nACCOUNT",
onClick = onRecover,
modifier = Modifier.weight(1f),
)
}
},
) { innerPadding ->
Column(
modifier = Modifier
.fillMaxSize()
.background(MaterialTheme.colorScheme.background)
.padding(innerPadding)
.padding(horizontal = 24.dp)
.verticalScroll(rememberScrollState()),
horizontalAlignment = Alignment.CenterHorizontally,
) {
GajuHeader()
Text(
text = "CREATE NEW ACCOUNT", // Mockup uses same title for recovery
color = MaterialTheme.colorScheme.onBackground,
fontSize = 20.sp,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(vertical = 24.dp),
)
GajuTextField(
value = "",
onValueChange = {},
label = "ACCOUNT NAME",
placeholder = "Name your account",
)
Spacer(modifier = Modifier.height(16.dp))
Text(
text = "Input your mnemonic",
color = MaterialTheme.colorScheme.onBackground,
fontSize = 14.sp,
modifier = Modifier
.align(Alignment.Start)
.padding(bottom = 8.dp),
)
for (i in 0 until 12) {
Row(modifier = Modifier.padding(vertical = 4.dp)) {
GajuTextField(
value = "",
onValueChange = {},
label = "",
placeholder = "Word ${i + 1}",
modifier = Modifier.weight(1f),
)
Spacer(modifier = Modifier.width(12.dp))
GajuTextField(
value = "",
onValueChange = {},
label = "",
placeholder = "Word ${i + 13}",
modifier = Modifier.weight(1f),
)
}
}
}
}
}
@Composable
fun SetupSuccessScreen(
isRecovered: Boolean,
onProceed: () -> Unit,
) {
SuccessLayout(
title = "CREATE NEW ACCOUNT",
onProceed = onProceed,
content = {
GajuTextField(
value = "DAILY",
onValueChange = {},
label = "ACCOUNT NAME",
modifier = Modifier.fillMaxWidth(),
)
Text(
text = if (isRecovered) "Account successfully recovered!" else "Account successfully created!",
color = MaterialTheme.colorScheme.primary,
fontStyle = androidx.compose.ui.text.font.FontStyle.Italic,
modifier = Modifier.padding(vertical = 16.dp),
)
Text(
text = """
Do not lose your mnemonic phrase!
Lost mnemonic phrases cannot be recovered.
Losing your mnemonic phrase can result in lost funds!
Each account has a different mnemonic phrase.
You must back up each account separately.
You can recheck mnemonic phrases under your MANAGE ACCOUNTS interface.
""".trimIndent(),
color = MaterialTheme.colorScheme.onBackground,
fontSize = 12.sp,
textAlign = TextAlign.Start,
modifier = Modifier.padding(top = 16.dp),
)
},
)
}
@@ -0,0 +1,11 @@
package swiss.qpq.gajumobile.ui.theme
import androidx.compose.ui.graphics.Color
val Purple80 = Color(0xFFD0BCFF)
val PurpleGrey80 = Color(0xFFCCC2DC)
val Pink80 = Color(0xFFEFB8C8)
val Purple40 = Color(0xFF6650a4)
val PurpleGrey40 = Color(0xFF625b71)
val Pink40 = Color(0xFF7D5260)
@@ -0,0 +1,32 @@
package swiss.qpq.gajumobile.ui.theme
import androidx.compose.ui.graphics.Color
// Neon Dark Palette
val NeonDarkBackground = Color(0xFF1C1B1F)
val NeonDarkSurface = Color(0xFF252429)
val NeonDarkSurfaceVariant = Color(0xFF121212)
val NeonDarkPrimary = Color(0xFF9F72FF)
val NeonDarkSecondary = Color(0xFFE0E0E0)
val NeonDarkAccent = Color(0xFF00E5FF)
val NeonDarkOnPrimary = Color(0xFFFFFFFF)
val NeonDarkOnSecondary = Color(0xFF000000)
val NeonDarkOnBackground = Color(0xFFFFFFFF)
val NeonDarkOnSurface = Color(0xFFFFFFFF)
val NeonDarkOnSurfaceVariant = Color(0xFFE0E0E0)
// Classic Light Palette
val ClassicLightBackground = Color(0xFFFFFFFF)
val ClassicLightSurface = Color(0xFFF5F5F5)
val ClassicLightSurfaceVariant = Color(0xFFEEEEEE)
val ClassicLightPrimary = Color(0xFF6200EE)
val ClassicLightSecondary = Color(0xFF757575)
val ClassicLightOnPrimary = Color(0xFFFFFFFF)
val ClassicLightOnSecondary = Color(0xFFFFFFFF)
val ClassicLightOnBackground = Color(0xFF000000)
val ClassicLightOnSurface = Color(0xFF000000)
val ClassicLightOnSurfaceVariant = Color(0xFF424242)
// Logo Gradient Colors (approximate from image)
val GajuLogoPurple = Color(0xFF9D39FF)
val GajuLogoTeal = Color(0xFF39FFEA)
@@ -0,0 +1,62 @@
package swiss.qpq.gajumobile.ui.theme
import android.app.Activity
import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.darkColorScheme
import androidx.compose.material3.lightColorScheme
import androidx.compose.runtime.Composable
import androidx.compose.runtime.SideEffect
import androidx.compose.ui.platform.LocalView
import androidx.core.view.WindowCompat
private val NeonDarkColorScheme = darkColorScheme(
primary = NeonDarkPrimary,
secondary = NeonDarkSecondary,
tertiary = NeonDarkAccent,
background = NeonDarkBackground,
surface = NeonDarkSurface,
surfaceVariant = NeonDarkSurfaceVariant,
onPrimary = NeonDarkOnPrimary,
onSecondary = NeonDarkOnSecondary,
onBackground = NeonDarkOnBackground,
onSurface = NeonDarkOnSurface,
onSurfaceVariant = NeonDarkOnSurfaceVariant,
)
private val ClassicLightColorScheme = lightColorScheme(
primary = ClassicLightPrimary,
secondary = ClassicLightSecondary,
background = ClassicLightBackground,
surface = ClassicLightSurface,
surfaceVariant = ClassicLightSurfaceVariant,
onPrimary = ClassicLightOnPrimary,
onSecondary = ClassicLightOnSecondary,
onBackground = ClassicLightOnBackground,
onSurface = ClassicLightOnSurface,
onSurfaceVariant = ClassicLightOnSurfaceVariant,
)
@Composable
fun MyApplicationTheme(
darkTheme: Boolean = isSystemInDarkTheme(),
content: @Composable () -> Unit
) {
val colorScheme = if (darkTheme) NeonDarkColorScheme else ClassicLightColorScheme
val view = LocalView.current
if (!view.isInEditMode) {
SideEffect {
val window = (view.context as Activity).window
WindowCompat.getInsetsController(window, view).apply {
isAppearanceLightStatusBars = !darkTheme
}
}
}
MaterialTheme(
colorScheme = colorScheme,
typography = Typography,
content = content
)
}
@@ -0,0 +1,34 @@
package swiss.qpq.gajumobile.ui.theme
import androidx.compose.material3.Typography
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.sp
// Set of Material typography styles to start with
val Typography = Typography(
bodyLarge = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 16.sp,
lineHeight = 24.sp,
letterSpacing = 0.5.sp
)
/* Other default text styles to override
titleLarge = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Normal,
fontSize = 22.sp,
lineHeight = 28.sp,
letterSpacing = 0.sp
),
labelSmall = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Medium,
fontSize = 11.sp,
lineHeight = 16.sp,
letterSpacing = 0.5.sp
)
*/
)
+12
View File
@@ -0,0 +1,12 @@
# Add project specific R8 rules here.
# AGP will combine all keep rule files in src/main/keepRules to pass to R8
#
# For more details, see
# https://d.android.com/r/tools/r8/keep-rules
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="@android:color/white"
android:pathData="M180,743Q240,687 315.9,652.5Q391.79,618 479.9,618Q568,618 644,652.5Q720,687 780,743L780,180Q780,180 780,180Q780,180 780,180L180,180Q180,180 180,180Q180,180 180,180L180,743ZM482,539Q540,539 580,499Q620,459 620,401Q620,343 580,303Q540,263 482,263Q424,263 384,303Q344,343 344,401Q344,459 384,499Q424,539 482,539ZM180,840Q156,840 138,822Q120,804 120,780L120,180Q120,156 138,138Q156,120 180,120L780,120Q804,120 822,138Q840,156 840,180L840,780Q840,804 822,822Q804,840 780,840L180,840ZM223,780L736,780Q736,780 736,780Q736,780 736,780Q674,727 610.5,702.5Q547,678 480,678Q413,678 349.5,702.5Q286,727 223,780Q223,780 223,780Q223,780 223,780ZM482,479Q449.5,479 426.75,456.25Q404,433.5 404,401Q404,368.5 426.75,345.75Q449.5,323 482,323Q514.5,323 537.25,345.75Q560,368.5 560,401Q560,433.5 537.25,456.25Q514.5,479 482,479ZM480,461L480,461Q480,461 480,461Q480,461 480,461L480,461Q480,461 480,461Q480,461 480,461L480,461Q480,461 480,461Q480,461 480,461Q480,461 480,461Q480,461 480,461Z" />
</vector>
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="@android:color/white"
android:pathData="M480,839L439,802Q333.23,704.88 264.12,634.44Q195,564 154,508.5Q113,453 96.5,408Q80,363 80,317Q80,226.85 140.5,166.42Q201,106 290,106Q347,106 395.5,133Q444,160 480,211Q522,157 569,131.5Q616,106 670,106Q759,106 819.5,166.42Q880,226.85 880,317Q880,363 863.5,408Q847,453 806,508.5Q765,564 695.88,634.44Q626.77,704.88 521,802L480,839ZM480,760Q581.24,667 646.62,600.5Q712,534 750.5,484Q789,434 804.5,394.86Q820,355.73 820,317.14Q820,251 778,208.5Q736,166 670.22,166Q618.7,166 574.85,197.5Q531,229 504,286L504,286L455,286L455,286Q429,230 385.15,198Q341.3,166 289.78,166Q224,166 182,208.5Q140,251 140,317.32Q140,356 155.5,395.5Q171,435 209.5,485.5Q248,536 314,602Q380,668 480,760ZM480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463L480,463L480,463L480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Q480,463 480,463Z" />
</vector>
+9
View File
@@ -0,0 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="48dp"
android:height="48dp"
android:viewportWidth="960"
android:viewportHeight="960">
<path
android:fillColor="@android:color/white"
android:pathData="M240,760L360,760L360,520L600,520L600,760L720,760L720,400L480,220L240,400L240,760ZM160,840L160,360L480,120L800,360L800,840L520,840L520,600L440,600L440,840L160,840ZM480,490L480,490L480,490L480,490L480,490L480,490L480,490L480,490L480,490Z" />
</vector>
@@ -0,0 +1,170 @@
<?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="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>
@@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>
Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

+10
View File
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
</resources>
+3
View File
@@ -0,0 +1,3 @@
<resources>
<string name="app_name">GajuMobile</string>
</resources>
+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.GajuMobile" parent="android:Theme.Material.Light.NoActionBar" />
</resources>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample backup rules file; uncomment and customize as necessary.
See https://developer.android.com/guide/topics/data/autobackup
for details.
Note: This file is ignored for devices older than API 31
See https://developer.android.com/about/versions/12/backup-restore
-->
<full-backup-content>
<!--
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample data extraction rules file; uncomment and customize as necessary.
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
for details.
-->
<data-extraction-rules>
<cloud-backup>
<!-- TODO: Use <include> and <exclude> to control what is backed up.
<include .../>
<exclude .../>
-->
</cloud-backup>
<!--
<device-transfer>
<include .../>
<exclude .../>
</device-transfer>
-->
</data-extraction-rules>
@@ -0,0 +1,17 @@
package swiss.qpq.gajumobile
import org.junit.Test
import org.junit.Assert.*
/**
* Example local unit test, which will execute on the development machine (host).
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
class ExampleUnitTest {
@Test
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
}
+5
View File
@@ -0,0 +1,5 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.compose) apply false
}
+19
View File
@@ -0,0 +1,19 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. For more details, visit
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
# org.gradle.parallel=true
# When enabled, the Configuration Cache allows Gradle to skip the configuration
# phase entirely if nothing that affects the build configuration (such as build scripts)
# has changed. Additionally, Gradle applies performance optimizations to task execution.
org.gradle.configuration-cache=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
+12
View File
@@ -0,0 +1,12 @@
#This file is generated by updateDaemonJvm
toolchainUrl.FREE_BSD.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect
toolchainUrl.FREE_BSD.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect
toolchainUrl.LINUX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect
toolchainUrl.LINUX.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect
toolchainUrl.MAC_OS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/73bcfb608d1fde9fb62e462f834a3299/redirect
toolchainUrl.MAC_OS.X86_64=https\://api.foojay.io/disco/v3.0/ids/846ee0d876d26a26f37aa1ce8de73224/redirect
toolchainUrl.UNIX.AARCH64=https\://api.foojay.io/disco/v3.0/ids/ec7520a1e057cd116f9544c42142a16b/redirect
toolchainUrl.UNIX.X86_64=https\://api.foojay.io/disco/v3.0/ids/4c4f879899012ff0a8b2e2117df03b0e/redirect
toolchainUrl.WINDOWS.AARCH64=https\://api.foojay.io/disco/v3.0/ids/9482ddec596298c84656d31d16652665/redirect
toolchainUrl.WINDOWS.X86_64=https\://api.foojay.io/disco/v3.0/ids/39701d92e1756bb2f141eb67cd4c660e/redirect
toolchainVersion=21
+32
View File
@@ -0,0 +1,32 @@
[versions]
agp = "9.3.1"
coreKtx = "1.10.1"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
lifecycleRuntimeKtx = "2.6.1"
activityCompose = "1.8.0"
kotlin = "2.2.10"
composeBom = "2025.12.00"
[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
androidx-compose-ui = { group = "androidx.compose.ui", name = "ui" }
androidx-compose-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
androidx-compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
androidx-compose-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
androidx-compose-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
androidx-compose-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3" }
androidx-compose-material3-adaptive-navigation-suite = { group = "androidx.compose.material3", name = "material3-adaptive-navigation-suite" }
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
Binary file not shown.
+9
View File
@@ -0,0 +1,9 @@
#Tue Jul 28 14:21:46 JST 2026
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=553c78f50dafcd54d65b9a444649057857469edf836431389695608536d6b746
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Vendored Executable
+251
View File
@@ -0,0 +1,251 @@
#!/bin/sh
#
# Copyright © 2015 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#
##############################################################################
#
# Gradle start up script for POSIX generated by Gradle.
#
# Important for running:
#
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
# noncompliant, but you have some other compliant shell such as ksh or
# bash, then to run this script, type that shell name before the whole
# command line, like:
#
# ksh Gradle
#
# Busybox and similar reduced shells will NOT work, because this script
# requires all of these POSIX shell features:
# * functions;
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
# * compound commands having a testable exit status, especially «case»;
# * various built-in commands including «command», «set», and «ulimit».
#
# Important for patching:
#
# (2) This script targets any POSIX shell, so it avoids extensions provided
# by Bash, Ksh, etc; in particular arrays are avoided.
#
# The "traditional" practice of packing multiple parameters into a
# space-separated string is a well documented source of bugs and security
# problems, so this is (mostly) avoided, by progressively accumulating
# options in "$@", and eventually passing that to Java.
#
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
# see the in-line comments for details.
#
# There are tweaks for specific operating systems such as AIX, CygWin,
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
#
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
app_path=$0
# Need this for daisy-chained symlinks.
while
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
[ -h "$app_path" ]
do
ls=$( ls -ld "$app_path" )
link=${ls#*' -> '}
case $link in #(
/*) app_path=$link ;; #(
*) app_path=$APP_HOME$link ;;
esac
done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
warn () {
echo "$*"
} >&2
die () {
echo
echo "$*"
echo
exit 1
} >&2
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "$( uname )" in #(
CYGWIN* ) cygwin=true ;; #(
Darwin* ) darwin=true ;; #(
MSYS* | MINGW* ) msys=true ;; #(
NONSTOP* ) nonstop=true ;;
esac
CLASSPATH="\\\"\\\""
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD=$JAVA_HOME/jre/sh/java
else
JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD=java
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi
# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
fi
# Collect all arguments for the java command, stacking in reverse order:
# * args from the command line
# * the main class name
# * -classpath
# * -D...appname settings
# * --module-path (only if needed)
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
# For Cygwin or MSYS, switch paths to Windows format before running java
if "$cygwin" || "$msys" ; then
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
JAVACMD=$( cygpath --unix "$JAVACMD" )
# Now convert the arguments - kludge to limit ourselves to /bin/sh
for arg do
if
case $arg in #(
-*) false ;; # don't mess with options #(
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
[ -e "$t" ] ;; #(
*) false ;;
esac
then
arg=$( cygpath --path --ignore --mixed "$arg" )
fi
# Roll the args list around exactly as many times as the number of
# args, so each arg winds up back in the position where it started, but
# possibly modified.
#
# NB: a `for` loop captures its iteration list before it begins, so
# changing the positional parameters here affects neither the number of
# iterations, nor the values presented in `arg`.
shift # remove old arg
set -- "$@" "$arg" # push replacement arg
done
fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
"$@"
# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
#
# In Bash we could simply go:
#
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
# set -- "${ARGS[@]}" "$@"
#
# but POSIX shell has neither arrays nor command substitution, so instead we
# post-process each arg (as a line of input to sed) to backslash-escape any
# character that might be a shell metacharacter, then use eval to reverse
# that process (while maintaining the separation between arguments), and wrap
# the whole thing up as a single "set" statement.
#
# This will of course break if any of these variables contains a newline or
# an unmatched quote.
#
eval "set -- $(
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
xargs -n1 |
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
tr '\n' ' '
)" '"$@"'
exec "$JAVACMD" "$@"
Vendored
+94
View File
@@ -0,0 +1,94 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem
@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo. 1>&2
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
echo. 1>&2
echo Please set the JAVA_HOME variable in your environment to match the 1>&2
echo location of your Java installation. 1>&2
goto fail
:execute
@rem Setup the command line
set CLASSPATH=
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
:end
@rem End local scope for the variables with windows NT shell
if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
set EXIT_CODE=%ERRORLEVEL%
if %EXIT_CODE% equ 0 set EXIT_CODE=1
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
+26
View File
@@ -0,0 +1,26 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "GajuMobile"
include(":app")
Binary file not shown.