-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added build documentation and a Makefile. #1
- Loading branch information
1 parent
efa2e82
commit d471756
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -11,3 +11,4 @@ | |
/build | ||
/captures | ||
.externalNativeBuild | ||
*~ |
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,17 @@ | ||
|
||
help: | ||
@echo "You probably want to run 'make clean assemble install'." | ||
@echo "Install Android Studio and Gradle first." | ||
|
||
.PHONY: clean build assemble install | ||
|
||
clean: | ||
./gradlew clean | ||
build: | ||
./gradlew build | ||
assemble: | ||
./gradlew assemble | ||
install: | ||
./gradlew installDebug | ||
|
||
|
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