-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4cb6ccc
commit 4b6742c
Showing
4 changed files
with
47 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Android Studio plugin https://plugins.jetbrains.com/plugin/9333-makefile-language | ||
|
||
.PHONY: run-devDebug | ||
run-devDebug: | ||
./gradlew installDevDebug | ||
adb shell am start -n com.example.moviedb.dev/com.example.moviedb.compose.main.ComposeActivity | ||
|
||
.PHONY: run-devBeta | ||
run-devBeta: | ||
./gradlew installDevBeta | ||
adb shell am start -n com.example.moviedb.dev/com.example.moviedb.compose.main.ComposeActivity | ||
|
||
.PHONY: run-devRelease | ||
run-devRelease: | ||
./gradlew installDevRelease | ||
adb shell am start -n com.example.moviedb.dev/com.example.moviedb.compose.main.ComposeActivity | ||
|
||
.PHONY: run-prdDebug | ||
run-prdDebug: | ||
./gradlew installPrdDebug | ||
adb shell am start -n com.example.moviedb.dev/com.example.moviedb.compose.main.ComposeActivity | ||
|
||
.PHONY: run-prdRelease | ||
run-prdRelease: | ||
./gradlew installPrdRelease | ||
adb shell am start -n com.example.moviedb.dev/com.example.moviedb.compose.main.ComposeActivity | ||
|
||
.PHONY: build-apk-devDebug | ||
build-apk-devDebug: | ||
./gradlew :app:assembleDevDebug | ||
open app/build/outputs/apk/dev/debug | ||
|
||
.PHONY: build-bundle-prdRelease | ||
build-bundle-prdRelease: | ||
./gradlew :app:bundlePrdRelease | ||
open app/build/outputs/bundle/prdRelease |
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
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
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