golang開發android應用(二) - go語言產生android動態庫

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。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產生的類覆蓋。


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.