Skip to content

SohaGame SDK Android Release Notes

Version 3.3.0.1- 10/02/2025

Download SohaSDK Android
Download App Demo

Changes

  • Upgraded third-party libraries: Facebook, Firebase, Appsflyer.
  • Added new dashboard buttons: News, Events
  • Added Firebase Performance.
  • Upgrade build gradle(Project-level): Detailed instructions
        plugins {
            id 'com.google.firebase.firebase-perf'
            id 'com.google.firebase.crashlytics'
        }
        dependencies {
            classpath 'com.google.firebase:perf-plugin:1.4.1'
            classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.1'
        }
    
  • Upgrade build gradle(app/build.gradle)
        dependencies {
             implementation 'com.google.firebase:firebase-crashlytics'
             implementation 'com.google.firebase:firebase-perf'
        }
    

Version 3.3.0.0 - 30/09/2024

Download SohaSDK Android
Download App Demo

Changes

  • Upgrade SohaGame SDK server
  • Upgrade build gradle:
        dependencies {
            classpath 'com.android.tools.build:gradle:7.2.2'
            classpath 'com.google.gms:google-services:4.3.3'
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }
    
  • Change onSuccessPaymentCoin callback to add "message" parameter:
        SohaSDK.getInstance().payProduct(getActivity(), orderInfo, new OnPayListener() {
            @Override
            public void onSuccessPaymentCoin(String transID,String message)  {}
    
            @Override
            public void onMaintenancePayment() {}
    
            @Override
            public void onFail() {}
        }
    

Version 3.2.9.6 - 11/09/2024

Download SohaSDK Android
Download App Demo

Changes

  • Add dashboard function: method.

Version 3.2.9.5 - 13/08/2024

Download SohaSDK Android
Download App Demo

Changes

  • Remove permissions in the Manifest.xml file:
    <uses-permission android:name="android.permission.BLUETOOTH" />
    <uses-permission android:name="android.permission.RECORD_AUDIO"/>
    <uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
    

Version 3.2.9.4 - 10/05/2024

Download SohaSDK Android
Download App Demo

Changes

  • Remove setOfferToken with the Google Play Billing Library.

Version 3.2.9.3 - 16/04/2024

Download SohaSDK Android
Download App Demo

Changes

  • Remove the pop-up reminder to link the account immediately after successful login
  • Remove the two lines of code requesting "FOREGROUND_SERVICE" and "FOREGROUND_SERVICE_DATA_SYNC" permissions in the Manifest.xml file.
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" tools:node="remove" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" tools:node="remove" />
    

Version 3.2.9.2 - 21/02/2024

Download SohaSDK Android
Download App Demo

Changes

  • Delete permissions "SCHEDULE_EXACT_ALARM" and "USE_EXACT_ALARM" in Manifest.xml file
  • Increase the minSdkVersion value to 21 in the build.gradle file
  • Increase java 17
  • Add the following code in the build.gradle file
        implementation 'androidx.legacy:legacy-support-v4:1.0.0'
        implementation 'com.github.hannesa2:paho.mqtt.android:4.2' 
    

Version 3.2.9.1 - 23/11/2023

Download SohaSDK Android
Download App Demo

Changes

  • Fix crash issue when opening the application for the first time

Version 3.2.9.0 - 13/11/2023

Download SohaSDK Android
Download App Demo

Changes

  • Upgrade Target API 34
  • Upgrade Google Play Billing 6.0.1
  • Fix crash issue on Android 14
  • Add the following 2 permission requests to the AndroidManifest.xml:
    <uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"
        android:maxSdkVersion="32"/>
    <uses-permission android:name="android.permission.USE_EXACT_ALARM" />
    
  • These methods will be deprecated and removed:
    //payment
    public void payProduct(final Activity activity, final String orderInfo, final OnPayListener onPayListener)
    
    //tracking log events
    public SohaSDK setClickNoti(boolean isClientOpenNoti)
    

Version 3.2.8.9 - 17/04/2023

Download SohaSDK Android
Download App Demo

Changes

  • Upgrade FacebookSDK to 16.0.0
  • Upgrade Appsflyer to 6.10.1
  • Upgrade target API to 33 or newer