mirror of
https://github.com/netbirdio/gomobile-tvos-fork.git
synced 2026-05-22 18:43:29 -07:00
go.mobile: use golang.org/x/... import paths
LGTM=bradfitz, rsc R=rsc, bradfitz CC=golang-codereviews https://golang.org/cl/162710043
This commit is contained in:
@@ -7,9 +7,9 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"code.google.com/p/go.mobile/app"
|
||||
"golang.org/x/mobile/app"
|
||||
|
||||
_ "code.google.com/p/go.mobile/bind/java/testpkg/go_testpkg"
|
||||
_ "golang.org/x/mobile/bind/java/testpkg/go_testpkg"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
@@ -15,8 +15,8 @@ import (
|
||||
"sync"
|
||||
"unsafe"
|
||||
|
||||
"code.google.com/p/go.mobile/app"
|
||||
"code.google.com/p/go.mobile/bind/seq"
|
||||
"golang.org/x/mobile/app"
|
||||
"golang.org/x/mobile/bind/seq"
|
||||
)
|
||||
|
||||
const maxSliceLen = 1<<31 - 1
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
package go_testpkg
|
||||
|
||||
import (
|
||||
"code.google.com/p/go.mobile/bind/java/testpkg"
|
||||
"code.google.com/p/go.mobile/bind/seq"
|
||||
"golang.org/x/mobile/bind/java/testpkg"
|
||||
"golang.org/x/mobile/bind/seq"
|
||||
)
|
||||
|
||||
func proxy_Add(out, in *seq.Buffer) {
|
||||
|
||||
Reference in New Issue
Block a user