這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。gomobile的兩個有用參數,bind 產生動態庫,build 產生apk
產生android動態庫
gomobile bind -target=android github.com/dearcode/candy/server/android
組建檔案candy.aar,先查看下大小:
du -sh candy.aar13M candy.aar
巨大,13MB,本來想壓縮下,發現這aar本身就是壓縮過的,產生後的檔案大小本身與代碼有關,我用的是項目中的代碼,如果按官方的測試代碼產生的檔案只有2MB
file candy.aarcandy.aar: Zip archive data, at least v2.0 to extract
指定運行平台
gomobile預設會產生四個平台arm, arm64, 386, amd64,你也可以指定平台,例:
gomobile bind -target=android/arm github.com/dearcode/candy/server/android
這樣產生的檔案就相當小了,,,
du -sh candy.aar3.0M candy.aar
package與struct同名問題
目前gomobile版本,包名不能與類名相同,如相同,則先最生根據包名產生的類檔案的會被覆蓋:
gomobile bind -v -target=android github.com/dearcode/candy/server/androidgithub.com/dearcode/candy/server/androidwrite /tmp/gomobile-work-063666765/fakegopath/pkg/android_arm64/github.com/dearcode/candy/server/android.awrite /tmp/gomobile-work-063666765/gomobile_bind/go_candymain.gowrite /tmp/gomobile-work-063666765/gomobile_bind/go_main.gowrite /tmp/gomobile-work-063666765/androidlib/main.gowrite /tmp/gomobile-work-063666765/android/src/main/java/go/candy/Candy.javawrite /tmp/gomobile-work-063666765/android/src/main/java/go/candy/Candy.javawrite /tmp/gomobile-work-063666765/gomobile_bind/java_candy.cwrite /tmp/gomobile-work-063666765/gomobile_bind/candy.hwrite /tmp/gomobile-work-063666765/android/src/main/java/go/Universe.javawrite /tmp/gomobile-work-063666765/android/src/main/java/go/error.javawrite /tmp/gomobile-work-063666765/gomobile_bind/java_universe.cwrite /tmp/gomobile-work-063666765/gomobile_bind/universe.hwrite /tmp/gomobile-work-063666765/gomobile_bind/seq_android.gowrite /tmp/gomobile-work-063666765/gomobile_bind/seq_android.cwrite /tmp/gomobile-work-063666765/gomobile_bind/seq.hwrite /tmp/gomobile-work-063666765/gomobile_bind/seq.gowrite /tmp/gomobile-work-981501834/gomobile_bind/seq.go
具體源碼在這裡:
https://github.com/golang/mobile/blob/master/cmd/gomobile/bind.go#L255
在GenJava時會產生包名對應的類,但在GenClass的時候,分根據golang裡的struct名產生新的類,此時如果有相同,則會被struct產生的類覆蓋。