Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README modify for others can also publish their app on our website #4

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,36 @@
# App Showcase

## :thinking: How to publish App Showcase in android-js.github.io

### 1. Fork this repositroy :fork_and_knife:

### 2. Create app folder :file_folder:

```
folder='your application title name'
mkdir $folder
```

### 3. Create package.json and icon file in your app folder :books:

Location : app-showcase/your-application/\*

you have to reference and then followed this example

ex) package.json

```
{
"name": "youtube downloader",
"package-name": "youtube-dl-downloader-app",
"version": "1.0.0",
"icon": "icon.png",
"description": "download youtube video or audio in my android",
"apk": "https://drive.google.com/file/d/1edZjSB14zUmMt4va2UqWjHC-_iVrKdyi/view",
"link": "#http://example.com/itsMe"
}
```

### 4. Pull Request and Waiting to merge :sunglasses:

you can see the your app in android-js.github.io if successfully merged
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"appList": [
"story",
"chat"
"chat",
"youtube-dl-downloader"
],
"loadApps": 3
}
Binary file added youtube-dl-downloader/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions youtube-dl-downloader/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "youtube downloader",
"package-name": "youtube-dl-downloader-app",
"version": "1.0.0",
"icon": "icon.png",
"description": "download youtube video or audio in my android",
"apk": "https://drive.google.com/file/d/1edZjSB14zUmMt4va2UqWjHC-_iVrKdyi/view",
"link": "#http://example.com/itsMe"
}