|
@@ -4,7 +4,9 @@ import android.app.Activity
|
|
import android.app.Application
|
|
import android.app.Application
|
|
import android.content.Context
|
|
import android.content.Context
|
|
import android.content.Intent
|
|
import android.content.Intent
|
|
|
|
+import android.os.Build
|
|
import android.text.TextUtils
|
|
import android.text.TextUtils
|
|
|
|
+import androidx.annotation.RequiresApi
|
|
import cn.yyxx.eyuangame.base.entity.SdkChargeInfo
|
|
import cn.yyxx.eyuangame.base.entity.SdkChargeInfo
|
|
import cn.yyxx.eyuangame.base.entity.SdkEvent
|
|
import cn.yyxx.eyuangame.base.entity.SdkEvent
|
|
import cn.yyxx.eyuangame.base.entity.SdkRoleInfo
|
|
import cn.yyxx.eyuangame.base.entity.SdkRoleInfo
|
|
@@ -33,8 +35,6 @@ import cn.yyxx.support.DensityUtils
|
|
import cn.yyxx.support.ResUtils
|
|
import cn.yyxx.support.ResUtils
|
|
import cn.yyxx.support.device.DeviceInfoUtils
|
|
import cn.yyxx.support.device.DeviceInfoUtils
|
|
import cn.yyxx.support.gaid.GAIDUtils
|
|
import cn.yyxx.support.gaid.GAIDUtils
|
|
-import cn.yyxx.support.hawkeye.LogUtils
|
|
|
|
-import cn.yyxx.support.hawkeye.OwnDebugUtils
|
|
|
|
import com.google.firebase.crashlytics.FirebaseCrashlytics
|
|
import com.google.firebase.crashlytics.FirebaseCrashlytics
|
|
import java.util.concurrent.atomic.AtomicInteger
|
|
import java.util.concurrent.atomic.AtomicInteger
|
|
|
|
|
|
@@ -43,7 +43,7 @@ import java.util.concurrent.atomic.AtomicInteger
|
|
* @author #Suyghur.
|
|
* @author #Suyghur.
|
|
* Created on 2021/06/16
|
|
* Created on 2021/06/16
|
|
*/
|
|
*/
|
|
-class SdkBridgeImpl(context: Context) {
|
|
|
|
|
|
+class SdkBridgeImpl {
|
|
|
|
|
|
private var hasReadGaid = false
|
|
private var hasReadGaid = false
|
|
private var roleInfo: SdkRoleInfo? = null
|
|
private var roleInfo: SdkRoleInfo? = null
|
|
@@ -68,11 +68,6 @@ class SdkBridgeImpl(context: Context) {
|
|
private var initLoadingDialog: ScaleLoadingDialog? = null
|
|
private var initLoadingDialog: ScaleLoadingDialog? = null
|
|
|
|
|
|
|
|
|
|
- init {
|
|
|
|
- Host.initHostModel(context)
|
|
|
|
- LogUtils.DEBUG = OwnDebugUtils.isOwnDebug(context, "yyxx_cfg.properties", "yyxx_game", "YYXX_OWN_DEBUG")
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
fun attachBaseContext(application: Application, context: Context) {
|
|
fun attachBaseContext(application: Application, context: Context) {
|
|
Logger.initZap(application)
|
|
Logger.initZap(application)
|
|
SdkDrive.instance.initSdkDrive(application)
|
|
SdkDrive.instance.initSdkDrive(application)
|
|
@@ -97,9 +92,11 @@ class SdkBridgeImpl(context: Context) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @RequiresApi(Build.VERSION_CODES.N)
|
|
fun initApplication(application: Application) {
|
|
fun initApplication(application: Application) {
|
|
Logger.i("EYuanGameSdk initApplication ...")
|
|
Logger.i("EYuanGameSdk initApplication ...")
|
|
MMKVUtils.instance.init(application)
|
|
MMKVUtils.instance.init(application)
|
|
|
|
+ Host.initHostModel(application)
|
|
Linking.instance.initialize(application, object : Linking.OnTraceIdRead {
|
|
Linking.instance.initialize(application, object : Linking.OnTraceIdRead {
|
|
override fun onAdjustIdRead(id: String) {
|
|
override fun onAdjustIdRead(id: String) {
|
|
Logger.d("onAdjustIdRead : $id")
|
|
Logger.d("onAdjustIdRead : $id")
|
|
@@ -111,6 +108,7 @@ class SdkBridgeImpl(context: Context) {
|
|
|
|
|
|
fun initialize(activity: Activity, isLandscape: Boolean, callback: ICallback, initCallback: IInitialize) {
|
|
fun initialize(activity: Activity, isLandscape: Boolean, callback: ICallback, initCallback: IInitialize) {
|
|
Logger.i("EYuanGameSdk initialize ...")
|
|
Logger.i("EYuanGameSdk initialize ...")
|
|
|
|
+
|
|
isLand = isLandscape
|
|
isLand = isLandscape
|
|
if (TextUtils.isEmpty(ParamsUtils.getGcpCode(activity))) {
|
|
if (TextUtils.isEmpty(ParamsUtils.getGcpCode(activity))) {
|
|
Logger.e("初始化失败,参数异常,请检查yyxx_cfg.properties中YYXX_GCP_CODE的值")
|
|
Logger.e("初始化失败,参数异常,请检查yyxx_cfg.properties中YYXX_GCP_CODE的值")
|
|
@@ -319,10 +317,19 @@ class SdkBridgeImpl(context: Context) {
|
|
if (isIab) {
|
|
if (isIab) {
|
|
ChargeImpl.instance.charge(activity, innerChargeInfo, object : IImplCallback {
|
|
ChargeImpl.instance.charge(activity, innerChargeInfo, object : IImplCallback {
|
|
override fun onResult(code: Int, result: String) {
|
|
override fun onResult(code: Int, result: String) {
|
|
- if (code == 0) {
|
|
|
|
- Linking.instance.charge(activity, innerChargeInfo.amount)
|
|
|
|
|
|
+ when (code) {
|
|
|
|
+ 0 -> {
|
|
|
|
+ Linking.instance.charge(activity, innerChargeInfo.amount)
|
|
|
|
+ callback.onResult(0, result)
|
|
|
|
+ }
|
|
|
|
+ 1 -> {
|
|
|
|
+ //H5支付
|
|
|
|
+ HybridActivity.start(activity, initBean.floatCfg.chargeCfg.url)
|
|
|
|
+ }
|
|
|
|
+ else -> {
|
|
|
|
+ callback.onResult(-1, result)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- callback.onResult(code, result)
|
|
|
|
}
|
|
}
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|