Giter Site home page Giter Site logo

guo787269125 / mobileutils Goto Github PK

View Code? Open in Web Editor NEW

This project forked from gamednastudio/mobileutils

0.0 2.0 0.0 8.18 MB

A plugin for Unreal Engine 4 that lets you integrate mobile utilities into your project.

Home Page: https://www.gamednastudio.com

License: MIT License

C# 11.56% C++ 60.84% PLSQL 27.59%

mobileutils's Introduction

Splash

Mobile Utils

Mobile Utils lets you integrate out-of-the-box mobile utilities for iOS & Android into an Unreal Engine 4 project. For example, it allows you to check an Internet connection and Google Play Services availability as well as get persistent Unique Device ID (you can identify users between application installations in order to, for example, store saved games in a cloud). This plugin is a mobile community initiative. Everyone can contribute and pull request with awesome new features to extend the editor and functionality of Unreal Engine 4.

We want to make a big mobile plugin with many features from community so feel free to make pull request! After review, if all is good, it will be merged into plugin. Thank you! :-)

  • Current version: 1.9.0
  • Binaries compiled for: Unreal Engine 4.20
  • Required Unreal Engine 4.20 or above.

Features

  • Checking internet connection availability
  • Checking Google Play Services availability
  • Getting persistent Unique Device ID
  • Retrieving Auth Token from Online Subsystem
  • Works with dev & shipping builds
  • Out-of-the-box for iOS & Android
  • Additional SDK included
  • Works with Blueprint-only & source code projects
  • Works with Launcher & GitHub UE4 versions

Setup

Copy this folder to the Plugins folder located in the main path of your project.

CopyFiles

Enable Mobile Utils in Edit -> Plugins -> Misc -> Mobile Utils.

EnablePlugin

If you want to use Get Persistent Unique Device Id function on Android, you should request READ_PHONE_STATE permission:

Permissions

If you can't do this, use Get Device Id function instead. In this case, device ID should be unique but it's not guaranteed.

Recommended PR pipeline

  • Write java and/or Obj-C code in Android Studio or XCode depending on the platform(s) you wish to add functionality to
  • Test your code with a very simple app setup on your Android or iPhone
  • Integrate your code to the plugin without creating an interface to blueprints
  • Create a new sample project and test your code on a packaged project, at your desired device and platform
  • If everything works correctly, perform a Pull Request

The reason that we prohibit you from creating a new blueprint node is to ensure cross platform compatibility as well as a uniform look and feel throughout the codebase. After your PR gets merged we will make sure that a new blueprint node is created if needed. We recommend trying to integrate your changes to the actual engine's master branch first and if your PR doesn't get merged, then resort to adding functionality to this plugin.

Integration to the plugin

Here you will find the steps you need to take in order to add new functionality to this plugin.

For Android

At /Source/MobileUtils/MobileUtils_APL.xml, Add your tested java code:

  • At , insert your import(s) (check first if they do not exist on the GameActivity, at the actual engine).
  • At , insert your new methods. They should have the prefix "AndroidThunkJava_".

At /Source/MobileUtils/Private/Android/MobileUtilsPlatform.h, Start integrating your code into the plugin:

  • Declare your jmethodID(s) as well as function(s) with the appropriate names.

At /Source/MobileUtils/Private/Android/MobileUtilsPlatform.cpp, Continue your integration:

  • On the constructor, initialize that jmethodID you specified with FindMethod.
  • Add your previously specified function along with the implementation like the other functions on that file.

And now, some extra intel. Do not be afraid to open up the source of Unreal and look into the Android related parts of the system as well as pull requests that add features to the android part. You can find more information about JNI method signatures here!

For iOS

At /Source/MobileUtils/Private/IOS/MobileUtilsPlatform.h, Start integrating your code into the plugin:

  • Declare your variables as well as function(s) with the appropriate names.

At /Source/MobileUtils/Private/IOS/MobileUtilsPlatform.cpp, Continue your integration:

  • Add your previously specified function along with the implementation like the other functions on that file.

In UE4 iOS specific code should be written in Objective-C. Remember you can mix C++ code with Objective-C code!

Testing the plugin

In order to test your changes, create a new project with your engine version of choise (although, it should be greater than our current minimum requirement~4.12),then clone the plugin at Project Folder/Plugins and then regenerate project files. The new folder "MobileUtils" should then be visible. After building the development editor you will be able to use code that you integrated or existing blueprint nodes. Note that this happens if you want to make a PR. If you are just looking to use the plugin, check the releases page.

Plugin icon designed by Freepik.

mobileutils's People

Contributors

ntakouris avatar

Watchers

James Cloos avatar MantraGuo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.