-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* readme * Delete everything lol * npx create-expo-app --template * re-add license * axe pkg lock * yarn.lock * Add pic to readme * ampersand * app.json * revert EAS slug to arc * eas build:configure * basic build scripts * pkg json name and version
- Loading branch information
Christopher David
authored
Apr 4, 2023
1 parent
e3e3f72
commit b143fff
Showing
216 changed files
with
8,962 additions
and
26,987 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
# Arc | ||
# Arcade | ||
|
||
A cross-platform [Nostr](https://github.com/nostr-protocol/nostr) chat app, currently in alpha. | ||
A [Nostr](https://github.com/nostr-protocol/nostr) chat app for Android & iOS. | ||
|
||
We use [React Native](https://reactnative.dev/), [Expo](https://expo.dev/), and [Tauri](https://tauri.app/) to target mobile, web, and desktop with one codebase. | ||
![arcadeskyline](https://user-images.githubusercontent.com/14167547/229741634-735d487a-ab88-4061-aa75-d27e7b432f43.jpeg) | ||
|
||
Follow [@TheArcApp on Twitter](https://twitter.com/TheArcApp) for updates. | ||
## Status | ||
|
||
| | | | | ||
| :---------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------: | | ||
| <img width="700" alt="login" src="https://user-images.githubusercontent.com/14167547/210706813-2eccfe72-3d7f-4965-9516-d0f3436d8672.png"> | <img width="700" alt="nostrcn" src="https://user-images.githubusercontent.com/14167547/210685699-f9358d4b-1218-4041-8500-41b541dbb911.png"> | <img width="700" alt="profile" src="https://user-images.githubusercontent.com/14167547/210916398-663c44af-7a42-470a-8151-c86320e1279f.png"> | | ||
|
||
![alt text](/docs/crossplatformzaps.png) | ||
- We are rebranding from Arc to Arcade. | ||
- We are doing a major refactor for our first MVP beta build v0.1.0. Main branch will be under heavy development. | ||
- Our latest build [v0.0.5-alpha](https://github.com/ArcadeLabsInc/arcade/releases/tag/v0.0.5-alpha) can be downloaded via TestFlight (iOS) or APK (Android). | ||
- You can run v0.0.5 locally using [this branch](https://github.com/ArcadeLabsInc/arcade/tree/3e4e7efa9bacca60f4932607c22e1aaa0a7dba63). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"expo": { | ||
"name": "Arcade", | ||
"slug": "arc", | ||
"version": "0.1.0", | ||
"orientation": "portrait", | ||
"icon": "./assets/images/icon.png", | ||
"scheme": "arcade", | ||
"userInterfaceStyle": "dark", | ||
"splash": { | ||
"image": "./assets/images/splash.png", | ||
"resizeMode": "contain", | ||
"backgroundColor": "#ffffff" | ||
}, | ||
"assetBundlePatterns": [ | ||
"**/*" | ||
], | ||
"ios": { | ||
"bundleIdentifier": "arcade.labs.arc", | ||
"buildNumber": "1", | ||
"config": { | ||
"usesNonExemptEncryption": false | ||
}, | ||
"supportsTablet": true | ||
}, | ||
"android": { | ||
"adaptiveIcon": { | ||
"foregroundImage": "./assets/images/adaptive-icon.png", | ||
"backgroundColor": "#ffffff" | ||
}, | ||
"package": "arcade.labs.arc", | ||
"versionCode": 20 | ||
}, | ||
"extra": { | ||
"eas": { | ||
"projectId": "4d0739d3-08f0-42a8-a886-2d89327949a1" | ||
} | ||
}, | ||
"web": { | ||
"bundler": "metro", | ||
"favicon": "./assets/images/favicon.png" | ||
} | ||
} | ||
} |
Oops, something went wrong.