- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
83 lines
2.6 KiB
Groovy
83 lines
2.6 KiB
Groovy
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
apply plugin: 'maven-publish'
|
|
apply plugin: 'signing'
|
|
|
|
def isSnapshot = findProperty("isSnapshot")?.toBoolean()
|
|
def signingKey = findProperty("SIGNING_KEY")
|
|
def signingPwd = findProperty("SIGNING_PWD")
|
|
|
|
def reactAndroidProjectDir = project(':packages:react-native:ReactAndroid').projectDir
|
|
def mavenTempLocalUrl = "file:///tmp/maven-local"
|
|
|
|
publishing {
|
|
publications {
|
|
release(MavenPublication) {
|
|
afterEvaluate {
|
|
// We do a multi variant release, so for Android libraries
|
|
// we publish `components.release`
|
|
if (plugins.hasPlugin("com.android.library")) {
|
|
from components.default
|
|
}
|
|
}
|
|
|
|
// We populate the publishing version using the project version,
|
|
// appending -SNAPSHOT if on nightly or prerelase.
|
|
if (isSnapshot) {
|
|
version = this.version + "-SNAPSHOT"
|
|
} else {
|
|
version = this.version
|
|
}
|
|
|
|
pom {
|
|
name = "react-native"
|
|
description = "A framework for building native apps with React"
|
|
url = "https://github.com/facebook/react-native"
|
|
|
|
developers {
|
|
developer {
|
|
id = "facebook"
|
|
name = "Facebook"
|
|
}
|
|
}
|
|
|
|
licenses {
|
|
license {
|
|
name = "MIT License"
|
|
url = "https://github.com/facebook/react-native/blob/HEAD/LICENSE"
|
|
distribution = "repo"
|
|
}
|
|
}
|
|
|
|
scm {
|
|
url = "https://github.com/facebook/react-native.git"
|
|
connection = "scm:git:https://github.com/facebook/react-native.git"
|
|
developerConnection = "scm:git:git@github.com:facebook/react-native.git"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name = "mavenTempLocal"
|
|
url = mavenTempLocalUrl
|
|
}
|
|
}
|
|
|
|
if (signingKey && signingPwd) {
|
|
logger.info("PGP Key found - Signing enabled")
|
|
signing {
|
|
useInMemoryPgpKeys(signingKey, signingPwd)
|
|
sign(publishing.publications.release)
|
|
}
|
|
} else {
|
|
logger.info("Signing disabled as the PGP key was not found")
|
|
}
|
|
}
|