diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-05 20:32:30 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-01-05 20:32:30 +0800 |
commit | 9b135a9c20284209c592cfa8f8f7f01820af7544 (patch) | |
tree | 6437e23efe3c8e6bf2deb01324fcd2f94434decd | |
parent | bb2e99dfc213c4abda1e851802d4fd0194d800e5 (diff) | |
download | dexon-9b135a9c20284209c592cfa8f8f7f01820af7544.tar dexon-9b135a9c20284209c592cfa8f8f7f01820af7544.tar.gz dexon-9b135a9c20284209c592cfa8f8f7f01820af7544.tar.bz2 dexon-9b135a9c20284209c592cfa8f8f7f01820af7544.tar.lz dexon-9b135a9c20284209c592cfa8f8f7f01820af7544.tar.xz dexon-9b135a9c20284209c592cfa8f8f7f01820af7544.tar.zst dexon-9b135a9c20284209c592cfa8f8f7f01820af7544.zip |
build: finally settle on empty iOS ObjC package prefixes
-rw-r--r-- | build/ci.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go index 867fc3732..593fcd151 100644 --- a/build/ci.go +++ b/build/ci.go @@ -792,7 +792,7 @@ func doXCodeFramework(cmdline []string) { // Build the iOS XCode framework build.MustRun(goTool("get", "golang.org/x/mobile/cmd/gomobile")) build.MustRun(gomobileTool("init")) - bind := gomobileTool("bind", "--target", "ios", "--tags", "ios", "--prefix", "i", "-v", "github.com/ethereum/go-ethereum/mobile") + bind := gomobileTool("bind", "--target", "ios", "--tags", "ios", "-v", "github.com/ethereum/go-ethereum/mobile") if *local { // If we're building locally, use the build folder and stop afterwards |