You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Updating the readme: make it look more dynamic and attractive to the eyes!
This readme is more complete than the old one, with more information about Acode and a great visual look!
* Updating the readme: Making it more attractive to the eyes and with extra information!
This readme is more complete than the old one, with more information about Acode and a great visual look!
Acode is a lightweight but powerful code editor for Android phones. You can use this editor for editing HTML, CSS, JavaScript, text files, etc.
7
+
## • Overview
8
8
9
-
You can create a website, run the website in the browser and see errors or logs in the console.
10
-
Also edit any kind of source file like Python, CSS, HTML, Java, JavaScript, Dart, etc.
9
+
Welcome to Acode Editor - a powerful and versatile code editing tool designed specifically for Android devices. Whether you're working on HTML, CSS, JavaScript, or other programming languages, Acode empowers you to code on-the-go with confidence.
- Edit and create websites, and instantly preview them in a browser.
14
+
- Seamlessly modify source files for various languages like Python, Java, JavaScript, and more.
15
+
- Access the console to quickly identify errors and logs.
16
+
- Enjoy multi-language editing support with easy management tools.
17
+
18
+
## • Installation
19
+
20
+
You can get Acode Editor from popular platforms:
21
+
22
+
[<imgsrc="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png"alt="Get it on Google Play"height="60">](https://play.google.com/store/apps/details?id=com.foxdebug.acodefree)[<imgsrc="https://fdroid.gitlab.io/artwork/badge/get-it-on.png"alt="Get it on F-Droid"height="60"/>](https://www.f-droid.org/packages/com.foxdebug.acode/)
23
+
24
+
## • Project Structure
20
25
21
26
<pre>
22
27
Acode/
23
28
|
24
-
|- src/ - contains all the raw code, and language files
29
+
|- src/ - Core code and language files
25
30
|
26
-
|- www/ - contains public documents, built JavaScript and CSS files, and HTML files
31
+
|- www/ - Public documents, compiled files, and HTML templates
27
32
|
28
-
|- utils/ - contains the CLI tools for building the package, manipulating/adding strings to all languages, etc.
33
+
|- utils/ - CLI tools for building, string manipulation, and more
29
34
</pre>
30
35
31
-
## Multi-language support
36
+
## • Multi-language Support
32
37
33
-
To add a new language, create a new file with the language code for Android (e.g. en-us for English) in the [`src/lang/`](https://github.com/deadlyjack/Acode/tree/main/src/lang) directory. After adding your new language, also add it to [`src/lib/lang.js`](https://github.com/deadlyjack/Acode/blob/main/src/lib/lang.js).
34
-
35
-
Here are a few utility tools to add, remove or search a string in all added languages.
38
+
Enhance Acode's capabilities by adding new languages easily. Just create a file with the language code (e.g., en-us for English) in [`src/lang/`](https://github.com/deadlyjack/Acode/tree/main/src/lang) and include it in [`src/lib/lang.js`](https://github.com/deadlyjack/Acode/blob/main/src/lib/lang.js). Manage strings across languages effortlessly using utility commands:
36
39
37
40
```shell
38
41
yarn lang add
@@ -41,22 +44,26 @@ yarn lang search
41
44
yarn lang update
42
45
```
43
46
44
-
## How to build
47
+
## • Building the Application
45
48
46
-
To build the APKyou need Nodejs, NPM, and Apache Cordova installed on your device. Use Cordova CLI to build the application.
49
+
To build the APK, ensure you have Node.js, NPM, and Apache Cordova installed on your device. Use Cordova CLI to build the application.
47
50
48
-
Run this command to do the initial setup of the project. It's required just once.
0 commit comments