Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
c8f3743
feat: add capacitor platform detection and native webauthn utils
kushagrasarathe Apr 3, 2026
0fcaae5
feat: integrate native passkeys into production auth flow
kushagrasarathe Apr 3, 2026
b2969d1
fix: resolve webpack build error and prettier formatting
kushagrasarathe Apr 7, 2026
c5cd5f4
chore: use vercel preview url as rpid for testing
kushagrasarathe Apr 7, 2026
5468862
feat: add capacitor android project and native build config
kushagrasarathe Apr 7, 2026
c4060c2
fix: exclude capacitor.config.ts from next.js build
kushagrasarathe Apr 7, 2026
40eb1aa
chore: format
kushagrasarathe Apr 7, 2026
92086aa
fix: skip webview detection in capacitor (not an in-app browser)
kushagrasarathe Apr 7, 2026
918100b
fix: skip webview and passkey checks in capacitor on setup page
kushagrasarathe Apr 7, 2026
695175e
fix: detect capacitor webview via user agent fallback
kushagrasarathe Apr 8, 2026
2b28534
fix: stop blocking capacitor webview on setup page
kushagrasarathe Apr 8, 2026
d65ff44
fix: set correct setup step for capacitor and add env var fallback
kushagrasarathe Apr 8, 2026
52142ae
feat: use native plugin for passkey registration and login
kushagrasarathe Apr 8, 2026
371f9c0
fix: make platform detection work with remote server.url
kushagrasarathe Apr 8, 2026
22c5f13
chore: switch to cloudflare tunnel for native dev testing
kushagrasarathe Apr 8, 2026
8ef0bdd
fix: native passkey registration and login via capacitor plugin
kushagrasarathe Apr 8, 2026
564256d
feat: add client-side auth, caching, and api fetch utilities
kushagrasarathe Apr 9, 2026
1fa9c91
feat: migrate server actions to client-side for static export
kushagrasarathe Apr 9, 2026
03a7379
feat: migrate direct /api/ calls to use apiFetch for capacitor
kushagrasarathe Apr 9, 2026
e0e09ed
fix: remove api-key from manteca price fetch, use jwt auth
kushagrasarathe Apr 9, 2026
fbe5fa3
feat: save jwt from passkey response body for static export
kushagrasarathe Apr 10, 2026
0343827
chore: format
kushagrasarathe Apr 10, 2026
b98f1af
fix: use POST method for get-user api call
kushagrasarathe Apr 13, 2026
d629094
fix: don't send content-type: json with empty body
kushagrasarathe Apr 13, 2026
1302cab
fix: send empty json body with get-user POST request
kushagrasarathe Apr 13, 2026
69c467f
fix: skip backend logout call in capacitor (no server route exists)
kushagrasarathe Apr 13, 2026
9ec79c8
fix: skip fetch-user after logout in capacitor (jwt already cleared)
kushagrasarathe Apr 13, 2026
b450a09
fix: cancel and clear queries on logout instead of invalidating
kushagrasarathe Apr 13, 2026
32b219f
fix: wrap non-critical logout operations in try-catch
kushagrasarathe Apr 13, 2026
091342c
fix: add missing isCapacitor import in authContext
kushagrasarathe Apr 13, 2026
4822d31
fix: clear jwt cookie from all domain/path variants on logout
kushagrasarathe Apr 13, 2026
02d529a
fix: clear native cookie store on logout in capacitor
kushagrasarathe Apr 13, 2026
647c1e1
feat: store jwt in localStorage for capacitor (not cookies)
kushagrasarathe Apr 13, 2026
aa38f80
fix: migrate jwt from cookie to localStorage on first read
kushagrasarathe Apr 13, 2026
63d8d7b
fix: re-attach native signing callback when restoring webauthn key
kushagrasarathe Apr 13, 2026
bfe7b08
fix: correct backend paths for apiFetch calls
kushagrasarathe Apr 13, 2026
c2d06b8
feat: migrate all 43 Cookies.get jwt-token calls to getAuthToken
kushagrasarathe Apr 13, 2026
0e91943
feat: phase 3 webview compatibility fixes
kushagrasarathe Apr 13, 2026
743be7a
feat: phase 5 native plugins (back button, status bar, splash)
kushagrasarathe Apr 13, 2026
938d268
fix: use webpackIgnore for capacitor plugin imports
kushagrasarathe Apr 13, 2026
832e97a
fix: address coderabbit review comments
kushagrasarathe Apr 13, 2026
d81c438
fix: android security and dependency cleanup
kushagrasarathe Apr 13, 2026
c74f6fe
fix: address review comments — rpId, debug logs, cleanup
kushagrasarathe Apr 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions android/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
# Using Android gitignore template: https://github.com/github/gitignore/blob/HEAD/Android.gitignore

# Built application files
*.apk
*.aar
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/
# Uncomment the following line in case you need and you don't have the release build type files in your app
# release/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# IntelliJ
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml

# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/

# Google Services (e.g. APIs or Firebase)
# google-services.json

# Freeline
freeline.py
freeline/
freeline_project_description.json

# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/

# Android Profiling
*.hprof

# Cordova plugins for Capacitor
capacitor-cordova-android-plugins

# Copied web assets
app/src/main/assets/public

# Generated Config files
app/src/main/assets/capacitor.config.json
app/src/main/assets/capacitor.plugins.json
app/src/main/res/xml/config.xml
2 changes: 2 additions & 0 deletions android/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/build/*
!/build/.npmkeep
59 changes: 59 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
apply plugin: 'com.android.application'

android {
namespace = "com.peanut.app"
compileSdk = rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "com.peanut.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
// Default: https://android.googlesource.com/platform/frameworks/base/+/282e181b58cf72b6ca770dc7ca5f91f135444502/tools/aapt/AaptAssets.cpp#61
ignoreAssetsPattern = '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

repositories {
flatDir{
dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs'
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
implementation "androidx.coordinatorlayout:coordinatorlayout:$androidxCoordinatorLayoutVersion"
implementation "androidx.core:core-splashscreen:$coreSplashScreenVersion"
implementation project(':capacitor-android')

// credential manager provider — required for capacitor-webauthn passkeys
implementation "androidx.credentials:credentials:1.5.0"
implementation "androidx.credentials:credentials-play-services-auth:1.5.0"

testImplementation "junit:junit:$junitVersion"
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
implementation project(':capacitor-cordova-android-plugins')
}

apply from: 'capacitor.build.gradle'

try {
def servicesJSON = file('google-services.json')
if (servicesJSON.text) {
apply plugin: 'com.google.gms.google-services'
}
} catch(Exception e) {
logger.info("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
}
19 changes: 19 additions & 0 deletions android/app/capacitor.build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN

android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_21
targetCompatibility JavaVersion.VERSION_21
}
Comment on lines +5 to +7
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify Java/toolchain configuration references across repo
rg -n -C2 'VERSION_21|sourceCompatibility|targetCompatibility|java-version|org\.gradle\.java\.home|toolchain' \
  --iglob '*.gradle' --iglob '*.gradle.kts' --iglob '*.properties' --iglob '*.yml' --iglob '*.yaml'

Repository: peanutprotocol/peanut-ui

Length of output: 50


🏁 Script executed:

# First, check the overall repo structure
ls -la

# Look for Android-related directories
fd -t d android

# Search for any gradle files in the repo
fd -t f '\.(gradle|gradle\.kts)$'

# Check if capacitor files exist
fd -t f capacitor

Repository: peanutprotocol/peanut-ui

Length of output: 3230


🏁 Script executed:

# Explore the android directory structure
find android -type f | head -20

# Check what's in android/app
ls -la android/app/ 2>/dev/null || echo "android/app does not exist"

# Look for any gradle-related files without restricting extension
find android -name "*gradle*" -o -name "*.gradle" -o -name "*.gradle.kts"

# Check android directory structure
tree android -L 3 2>/dev/null || find android -type d

Repository: peanutprotocol/peanut-ui

Length of output: 2460


🏁 Script executed:

# Read the capacitor.build.gradle file to verify Java 21 configuration
cat -n android/app/capacitor.build.gradle

# Also check build.gradle for comparison
cat -n android/app/build.gradle

# Check gradle.properties for Java/toolchain config
cat -n android/gradle.properties

# Look for CI configuration
find .github -type f -name "*.yml" -o -name "*.yaml" | head -10

Repository: peanutprotocol/peanut-ui

Length of output: 4659


🏁 Script executed:

# Check CI workflow files for Java version configuration
cat -n .github/workflows/tests.yml

# Also check for any gradle-wrapper properties that might specify Java version
cat -n android/gradle/wrapper/gradle-wrapper.properties

# Look for any Java version specification in other config files
grep -r "java.version\|JAVA_HOME\|jdk\|JDK" .github/workflows/ 2>/dev/null || echo "No explicit Java version found in workflows"

Repository: peanutprotocol/peanut-ui

Length of output: 2126


Ensure Java 21 is explicitly configured in the Android build environment.

The generated capacitor.build.gradle (lines 5–6) requires Java 21, but the CI workflow does not set up Java, and gradle.properties does not enforce a specific JDK version. This can cause build failures with non-Java-21 environments. Either:

  1. Add a Java setup action to CI workflows if Android builds are required (setup-java@v4 with java-version: '21')
  2. Configure gradle.properties or build.gradle to enforce Java 21 via toolchain
  3. Document Java 21 as a required local dependency
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@android/app/capacitor.build.gradle` around lines 5 - 7, The build requires
Java 21 (see sourceCompatibility and targetCompatibility set to
JavaVersion.VERSION_21 in capacitor.build.gradle); ensure the project enforces
or provisions JDK 21 by either adding a CI setup step (use setup-java@v4 with
java-version: '21' in your Android CI workflow), or configure the Gradle
toolchain/gradle.properties to require Java 21 so Gradle will select the JDK
automatically (update the project's build.gradle/gradle.properties to specify
the toolchain or org.gradle.java.home), and/or add a short README note that Java
21 is required for local development; update whichever approach you choose and
ensure the CI and developer docs reflect the Java 21 requirement.

}

apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
dependencies {
implementation project(':capacitor-webauthn')

}


if (hasProperty('postBuildExtras')) {
postBuildExtras()
}
21 changes: 21 additions & 0 deletions android/app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# 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 *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package com.getcapacitor.myapp;

import static org.junit.Assert.*;

import android.content.Context;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.platform.app.InstrumentationRegistry;
import org.junit.Test;
import org.junit.runner.RunWith;

/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {

@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();

assertEquals("com.peanut.app", appContext.getPackageName());
}
}
43 changes: 43 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">

<activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation|density"
android:name=".MainActivity"
android:label="@string/title_activity_main"
android:theme="@style/AppTheme.NoActionBarLaunch"
android:launchMode="singleTask"
android:exported="true">

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

</activity>

<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"></meta-data>
</provider>
</application>

<!-- Permissions -->

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
</manifest>
14 changes: 14 additions & 0 deletions android/app/src/main/assets/capacitor.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"appId": "com.peanut.app",
"appName": "Peanut",
"webDir": "out",
"server": {
"url": "https://peanutdev.site",
"cleartext": false
},
"android": {
"allowMixedContent": true,
"webContentsDebuggingEnabled": true
},
"plugins": {}
}
6 changes: 6 additions & 0 deletions android/app/src/main/assets/capacitor.plugins.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
{
"pkg": "capacitor-webauthn",
"classpath": "com.headcount.plugins.webauthn.WebauthnPlugin"
}
]
Empty file.
Empty file.
5 changes: 5 additions & 0 deletions android/app/src/main/java/com/peanut/app/MainActivity.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.peanut.app;

import com.getcapacitor.BridgeActivity;

public class MainActivity extends BridgeActivity {}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportHeight="108"
android:viewportWidth="108">
<path
android:fillType="evenOdd"
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
android:strokeColor="#00000000"
android:strokeWidth="1">
<aapt:attr name="android:fillColor">
<gradient
android:endX="78.5885"
android:endY="90.9159"
android:startX="48.7653"
android:startY="61.0927"
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="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
android:strokeColor="#00000000"
android:strokeWidth="1" />
</vector>
Loading
Loading