You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#ue4
- Added a method to show the platform-specific Achievements screen on Android #codereview ryan.gerleve [CL 2051354 by Michael Noland in Main branch]
This commit is contained in:
committed by
UnrealBot
parent
30e3cb898d
commit
bbdbf8f019
@@ -269,6 +269,15 @@ public class GameActivity extends NativeActivity implements GoogleApiClient.Conn
|
||||
}
|
||||
}
|
||||
|
||||
public void AndroidThunkJava_ShowAchievements()
|
||||
{
|
||||
Log.debug("In AndroidThunkJava_ShowAchievements");
|
||||
if(googleClient.isConnected())
|
||||
{
|
||||
startActivityForResult(Games.Achievements.getAchievementsIntent(googleClient), 0);
|
||||
}
|
||||
}
|
||||
|
||||
public void AndroidThunkJava_WriteLeaderboardValue(String LeaderboardID, long Value)
|
||||
{
|
||||
Log.debug("In AndroidThunkJava_WriteLeaderboardValue, ID is " + LeaderboardID + ", value is " + Value);
|
||||
|
||||
Reference in New Issue
Block a user