File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
.DS_Store
2
+ .idea
3
+ * .iml
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ I used `android project update` to simply create Ant build scripts for the proje
7
7
### Installation
8
8
9
9
```
10
- go get github.com/xlab/android-go/cmd/android-project
10
+ go install github.com/xlab/android-go/cmd/android-project@latest
11
11
```
12
12
13
13
Also you must set ` $ANDROID_HOME ` to your Android SDK location, e.g.
@@ -19,7 +19,7 @@ export ANDROID_HOME=/Users/xlab/Library/Android/sdk
19
19
### Usage
20
20
21
21
```
22
- Usage: android-project update [--sdk] [--target] --name --path
22
+ Usage: android-project update [--sdk] [--target] [--force] --name --path
23
23
24
24
Updates an Android project (must already have an AndroidManifest.xml)
25
25
```
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ func cmdUpdateFunc(c *cli.Cmd) {
60
60
EnvVar : "ANDROID_HOME" ,
61
61
HideValue : true ,
62
62
})
63
- c .Spec = "[--sdk] [--target] --name --path"
63
+ c .Spec = "[--sdk] [--target] [--force] --name --path"
64
64
c .Action = func () {
65
65
defer closer .Close ()
66
66
You can’t perform that action at this time.
0 commit comments