API/Autodoc/Files/JavaActivity.h.en.md


The provided text is already in English. No translation is needed.

## Namespaces

| Name           |
| -------------- |

## Classes

|                | Name           |
| -------------- | -------------- |
| class | **[RuStoreSDK::JavaActivity](https://gitflic.ru/project/rustore/rustore-unreal-engine-appupdate-example/wiki/page?file=API/Autodoc/Classes/RuStoreSDK.JavaActivity.en.md)**  |




## Source code

```cpp
// Copyright Epic Games, Inc. All Rights Reserved.

#include "IAndroidClasses.h"

namespace RuStoreSDK
{
    class RUSTORECORE_API JavaActivity : public IAndroidClasses
    {
#if PLATFORM_ANDROID
    private:
        jobject activity;
#endif

    public:
        JavaActivity();
        virtual ~JavaActivity();

        FString GetName() override;

#if PLATFORM_ANDROID
        jobject GetJObject();
#endif
    };
}
Назад