Enhance: Update Google Play Games integration and versioning

- Incremented version code to 3 and version name to 0.2 in build.gradle.
- Added INTERNET and ACCESS_NETWORK_STATE permissions in AndroidManifest.xml.
- Refactored leaderboard display logic in HighScoresActivity and MainActivity to utilize a listener for intent success and failure.
- Introduced silent sign-in functionality for Google Play Games in MainActivity.
- Updated GooglePlayGamesManager to support the new listener interface for leaderboard intent handling.
- Added Google Play sign-in buttons in both portrait and landscape layouts for improved user interaction.
This commit is contained in:
cmclark00 2025-04-02 18:04:24 -04:00
parent 220caa39f7
commit 808dc79396
7 changed files with 143 additions and 26 deletions

View file

@ -11,8 +11,8 @@ android {
applicationId "com.pixelmintdrop"
minSdk 30
targetSdk 35
versionCode 2
versionName "0.1"
versionCode 3
versionName "0.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}