mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 14:38:58 -04:00
* Mobile app: Initial Commit! * Fix monorepo issues and add tailwind. Fix & Test tailwind. working ball app Fix workspace module import * Mobile app cleanup and structure * App Icons, Splash screen and eslint config * More cleanup * Use SVGs directly in React Native * Add placeholder files for project structrate * Cleanup all svg icons and modify metro config to use icons from interface package (temporary) * Potentially fix types for react & update some packages. * Onboarding screen + add reanimated & moti * Finishing touches on Onboarding screen * Persist onboarding, Button comp and Nav. flow. * Add mobile info to Contributing.md * Add .prettierignore for disabling auto import ordering for some files. * Introducing the new navigation flow * Change package name * use the new @sd/assets package * Add a temp. folder for @sd/assets organization * Drawer nav bar looks good now. * Hacky method to get the active route on drawer * Fix react native types & update few packages. * Drawer animation * Add counter * Collapsible Tags / Locations * rename Counter and add saveState prop * Sync counter with desktop version * Move some screens to BottomTab Nav. * Add Overview Stats * [WIP] - Device component * Upgrade to Expo 46 and fix types. * Add @sd/core to mobile * Fix eslint stuff * placeholder and some notes * Show folder icons on overview screen * Fixed android build, style and some screen tweaks * Add bottom sheet package * Fix bundler issues and rename landing package.json * Rename landing package.json * update all packages to latest React * Eject expo app * fix pnpm & expo & monorepo * monorepo debugging * cleanup dependencies & static link to shared packages * cleanup, switch to hermes, pollyfill intl for ios * Cleanup monorepo * Fix: Style for FileItem * Above average app icons * cleanup ios * update msrv * update codeowners for mobile * fix typecheck * update lockfile * fix ffmpeg install * rename UI to 'SpacedriveInterface' for clarity * Update codeowners * Fix eslint config mobile. * Refactor navigation flow, move types to navigators Co-authored-by: Utku <74243531+utkubkr@users.noreply.github.com> Co-authored-by: Oscar Beaumont <oscar@otbeaumont.me> Co-authored-by: Brendan Allan <brendonovich@outlook.com>
56 lines
1.3 KiB
Python
56 lines
1.3 KiB
Python
# To learn about Buck see [Docs](https://buckbuild.com/).
|
|
# To run your application with Buck:
|
|
# - install Buck
|
|
# - `npm start` - to start the packager
|
|
# - `cd android`
|
|
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
|
|
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
|
|
# - `buck install -r android/app` - compile, install and run application
|
|
#
|
|
|
|
load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
|
|
|
|
lib_deps = []
|
|
|
|
create_aar_targets(glob(["libs/*.aar"]))
|
|
|
|
create_jar_targets(glob(["libs/*.jar"]))
|
|
|
|
android_library(
|
|
name = "all-libs",
|
|
exported_deps = lib_deps,
|
|
)
|
|
|
|
android_library(
|
|
name = "app-code",
|
|
srcs = glob([
|
|
"src/main/java/**/*.java",
|
|
]),
|
|
deps = [
|
|
":all-libs",
|
|
":build_config",
|
|
":res",
|
|
],
|
|
)
|
|
|
|
android_build_config(
|
|
name = "build_config",
|
|
package = "com.spacedrive.app",
|
|
)
|
|
|
|
android_resource(
|
|
name = "res",
|
|
package = "com.spacedrive.app",
|
|
res = "src/main/res",
|
|
)
|
|
|
|
android_binary(
|
|
name = "app",
|
|
keystore = "//android/keystores:debug",
|
|
manifest = "src/main/AndroidManifest.xml",
|
|
package_type = "debug",
|
|
deps = [
|
|
":app-code",
|
|
],
|
|
)
|