Build Android Studio app via command line

后端 未结 12 1780
梦谈多话
梦谈多话 2020-11-27 10:36

I want to build an Android Studio app (the Gradle build system), but I want to do this via the command line.

12条回答
  •  甜味超标
    2020-11-27 11:24

    Cheatsheet for running Gradle from the command line for Android Studio projects on Linux:

    cd 
    ./gradlew
    ./gradlew tasks
    ./gradlew --help
    

    Should get you started..

提交回复
热议问题