Files
Fabric.Android/android/app/build.gradle
hzhang c09506b6ea feat(android): Capacitor wrapper bundling the Fabric web frontend
Greenfield Android client built as a Capacitor shell (mirrors the
Desktop strategy — reuses the React SPA 100%):
- appId ai.hangman.fabric, appName Fabric, androidScheme http +
  usesCleartextTraffic (talks to the http Center/Guild backends; the
  login screen sets the Center base, so a phone points at a LAN/host
  URL instead of localhost).
- scripts/build-web.mjs builds Fabric.Frontend and copies dist -> www;
  npm run sync / apk:debug wire it to Gradle.
- Native android/ project (cap add android) committed; build outputs,
  www/, node_modules, local.properties gitignored.
- Launcher icons = the Fabric mark (adaptive: green mark on black,
  legacy + round) at all densities.

Verified: gradlew assembleDebug -> app-debug.apk (4.2MB) containing
assets/public/index.html + the SPA bundle + Fabric icons.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-16 12:39:08 +01:00

55 lines
2.1 KiB
Groovy

apply plugin: 'com.android.application'
android {
namespace "ai.hangman.fabric"
compileSdk rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "ai.hangman.fabric"
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')
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")
}