Skip to content

Commit

Permalink
复现问题:org.webrtc.NetworkMonitorAutoDetect: inconsistent stack height
Browse files Browse the repository at this point in the history
  • Loading branch information
cocomikes committed Jun 7, 2023
1 parent d1457e4 commit 31ffdd9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion buildScripts/gradle/common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def gitShortRev() {

allprojects {
ext.COMPILE_SDK_VERSION = 31
ext.MIN_SDK_VERSION = 14
ext.MIN_SDK_VERSION = 21
ext.TARGET_SDK_VERSION = 28
ext.VERSION_CODE = 1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ dependencies {
//Shadow Transform后业务代码会有一部分实际引用runtime中的类
//如果不以compileOnly方式依赖,会导致其他Transform或者Proguard找不到这些类
pluginCompileOnly 'com.tencent.shadow.core:runtime'
implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
}

preBuild.dependsOn(":sample-host-lib:jarDebugPackage")
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import android.app.Application;

import com.nenly.nenlysdk.NenlyCloudGamingHelper;
import com.tencent.shadow.sample.plugin.app.lib.gallery.cases.UseCaseManager;
import com.tencent.shadow.sample.plugin.app.lib.gallery.cases.entity.UseCase;
import com.tencent.shadow.sample.plugin.app.lib.gallery.cases.entity.UseCaseCategory;
Expand Down Expand Up @@ -33,6 +34,7 @@ public class UseCaseApplication extends Application {
public void onCreate() {
super.onCreate();
initCase();
NenlyCloudGamingHelper.getHelper().initApplicationContext(this);
}

private static void initCase() {
Expand Down

0 comments on commit 31ffdd9

Please sign in to comment.