Small edits

Jason Buberel 2015-11-22 12:24:10 -08:00
parent 4e5b2c875c
commit cba0d0f2da
2 changed files with 9 additions and 7 deletions

@ -66,7 +66,7 @@ $ gomobile build -target=android golang.org/x/mobile/example/basic
Build command will build an APK named basic.apk.
if an AndroidManifest.xml is defined in the package directory, it is added to the APK output. Otherwise, a default manifest is generated.
If an AndroidManifest.xml is defined in the package directory, it is added to the APK output. Otherwise, a default manifest is generated.
If you have [adb](http://developer.android.com/tools/help/adb.html) command installed on your machine, you can use `gomobile install` to build and push the APK to your mobile device.

@ -24,6 +24,7 @@ If you find a project in this list that is dead or broken, please either mark it
* [Command-line Option Parsers](#command-line-option-parsers)
* [Command-line Tools](#command-line-tools)
* [Compression](#compression)
* [Concurrency and Goroutines](#concurrency-and-goroutines)
* [Configuration File Parsers](#configuration-file-parsers)
* [Console User Interface](#console-user-interface)
* [Continuous Integration](#continuous-integration)
@ -43,7 +44,6 @@ If you find a project in this list that is dead or broken, please either mark it
* [Games](#games)
* [GIS](#gis)
* [Go Implementations](#go-implementations)
* [Goroutines](#goroutines)
* [Graphics and Audio](#graphics-and-audio)
* [GUIs and Widget Toolkits](#guis-and-widget-toolkits)
* [Hardware](#hardware)
@ -190,6 +190,13 @@ If you find a project in this list that is dead or broken, please either mark it
* [yenc](https://github.com/chrisfarms/yenc) - yenc decoder package
* [zappy](https://github.com/cznic/zappy) - Package zappy implements the zappy block-based compression format. It aims for a combination of good speed and reasonable compression.
## Concurrency and Goroutines
* [grpool](https://github.com/ivpusic/grpool) - Lightweight Goroutine pool.
* [pool](https://github.com/go-playground/pool) - Go consumer goroutine pool for easy goroutine handling + time saving.
* [tunny](https://github.com/Jeffail/tunny) - A goroutine pool.
## Configuration File Parsers
* [awsenv](https://github.com/soniah/awsenv) - a small binary that loads Amazon (AWS) environment variables for a profile
@ -670,11 +677,6 @@ See also [[SQLDrivers page|SQLDrivers]].
* [llgo](http://llvm.org/klaus/llgo) - LLVM-based Go compiler, written in Go
## Goroutines
* [grpool](https://github.com/ivpusic/grpool) - Lightweight Goroutine pool.
* [pool](https://github.com/go-playground/pool) - Go consumer goroutine pool for easy goroutine handling + time saving.
* [tunny](https://github.com/Jeffail/tunny) - A goroutine pool for golang.
## Graphics and Audio