diff options
author | Parménides GV <parmegv@sdf.org> | 2013-05-29 16:16:56 +0200 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2013-05-29 16:16:56 +0200 |
commit | 4662ceb3ad0dfe9b8fef188fac5669cf9489cb06 (patch) | |
tree | 0e34aed85f6032c7962f50de37ec03738d1f85ef | |
parent | 112b45fc3597e81783ba77c57f3b70ea32434831 (diff) |
Setting the name and the target in compile.sh
Name is mandatory, if not provided android chooses "MainActivity" and
adb install command fails because "LEAP Android-debug.apk" does not
exist.
Target is not mandatory, but for future references (if anybody wants to
change the target, they can do it easier) I've added that flag to the
command.
-rwxr-xr-x | compile.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,3 +1,3 @@ #!/bin/bash -android update project --path . +android update project --path . --name "LEAP Android" --target android-16 ant debug |