From 8cf74fb3957b3ef0ca8c3cf1e5badec1dd03372f Mon Sep 17 00:00:00 2001 From: qkdreyer Date: Tue, 16 Jun 2020 00:31:45 +0200 Subject: [PATCH] chore: clean up --- .gitignore | 3 +-- Makefile | 2 +- README.md | 53 +++-------------------------------------------------- 3 files changed, 5 insertions(+), 53 deletions(-) diff --git a/.gitignore b/.gitignore index 3fe56f5..5468d9e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -out -build +/out/* diff --git a/Makefile b/Makefile index 4e7ea7f..26517bc 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/README.md b/README.md index 36ef0d4..a1d8b39 100644 --- a/README.md +++ b/README.md @@ -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) - +![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 ``` @@ -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) ```