├── .gitattributes ├── .gitignore ├── AndroidNative.uplugin ├── LICENSE ├── README.md ├── Resources └── Icon128.png └── Source └── AndroidNative ├── AndroidNative.Build.cs ├── AndroidNative_UPL_Android.xml ├── Private ├── AndroidNative.cpp ├── AndroidNativeLibrary.cpp ├── Java │ └── DeviceInfo.java └── JavaConvert.cpp └── Public ├── AndroidNative.h ├── AndroidNativeDefines.h ├── AndroidNativeLibrary.h ├── AndroidNativeUtils.h ├── CustomJavaTypes.h ├── Helpers ├── SignatureHelper.h └── StaticNativeCaller.h └── JavaConvert.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidNative.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/AndroidNative.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/AndroidNative/AndroidNative.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/AndroidNative.Build.cs -------------------------------------------------------------------------------- /Source/AndroidNative/AndroidNative_UPL_Android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/AndroidNative_UPL_Android.xml -------------------------------------------------------------------------------- /Source/AndroidNative/Private/AndroidNative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Private/AndroidNative.cpp -------------------------------------------------------------------------------- /Source/AndroidNative/Private/AndroidNativeLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Private/AndroidNativeLibrary.cpp -------------------------------------------------------------------------------- /Source/AndroidNative/Private/Java/DeviceInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Private/Java/DeviceInfo.java -------------------------------------------------------------------------------- /Source/AndroidNative/Private/JavaConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Private/JavaConvert.cpp -------------------------------------------------------------------------------- /Source/AndroidNative/Public/AndroidNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Public/AndroidNative.h -------------------------------------------------------------------------------- /Source/AndroidNative/Public/AndroidNativeDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Public/AndroidNativeDefines.h -------------------------------------------------------------------------------- /Source/AndroidNative/Public/AndroidNativeLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Public/AndroidNativeLibrary.h -------------------------------------------------------------------------------- /Source/AndroidNative/Public/AndroidNativeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Public/AndroidNativeUtils.h -------------------------------------------------------------------------------- /Source/AndroidNative/Public/CustomJavaTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Public/CustomJavaTypes.h -------------------------------------------------------------------------------- /Source/AndroidNative/Public/Helpers/SignatureHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Public/Helpers/SignatureHelper.h -------------------------------------------------------------------------------- /Source/AndroidNative/Public/Helpers/StaticNativeCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Public/Helpers/StaticNativeCaller.h -------------------------------------------------------------------------------- /Source/AndroidNative/Public/JavaConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtreshchev/AndroidNative/HEAD/Source/AndroidNative/Public/JavaConvert.h --------------------------------------------------------------------------------