# dp-mobile-sdk **Repository Path**: jjhoc/dp-mobile-sdk ## Basic Information - **Project Name**: dp-mobile-sdk - **Description**: the works for the dp sdk - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-31 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # dp-mobile-sdk ## The one with the working version 1. Use gomobile bind to bind the golang.org/x/mobile/example/bind/hello package. The following command will create a static framework bundle in the current directory. `gomobile bind -target=ios golang.org/x/mobile/example/bind/hello` 2. Open the Xcode project by double clicking on bind.xcodeproj. The project will not build - `ViewController.m` calls a function from the hello package so requires the hello.framework the gomobild bind command created in Step 1. 3. Drag-and-drop the hello.framework from the desktop to the project navigation window. This will automatically include the hello framework into the project. 4. Build.