Skip to content

Commit

Permalink
chore: clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
qkdreyer committed Jun 15, 2020
1 parent 33a200f commit 8cf74fb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 53 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
out
build
/out/*
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ init:
chmod u+x /usr/local/bin/gradlew

build:
gradlew buildDebug -p heaps-android-app
gradlew build -p heaps-android-app

install:
adb install heaps-android-app/heapsapp/build/outputs/apk/debug/heapsapp-debug.apk
Expand Down
53 changes: 3 additions & 50 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
# Heaps Android
Forked from https://github.com/HeapsIO/heaps-android/

![android](https://github.com/qkdreyer/heaps-android/workflows/android/badge.svg?branch=master)
<!---
TODO add asciinema
-->
![android](https://github.com/HeapsIO/heaps-android/workflows/android/badge.svg?branch=master)

## Setup

```sh
git clone https://github.com/qkdreyer/heaps-android
git clone https://github.com/HeapsIO/heaps-android
cd heaps-android
make init
```
Expand All @@ -18,48 +14,5 @@ make init

```sh
make heaps-world
make build
make install
```

# Extra

## Visual Studio Code

`.vscode/tasks.json`
```
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build & Run (Android)",
"dependsOn": [
"Build (Android)",
"Run (Android)"
],
"dependsOrder": "sequence",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Build (Android)",
"type": "shell",
"command": "make build",
"group": "build",
"problemMatcher": []
},
{
"label": "Run (Android)",
"type": "shell",
"command": "make install",
"group": "build",
"problemMatcher": []
},
]
}
make # (make build && make install)
```

0 comments on commit 8cf74fb

Please sign in to comment.