File tree Expand file tree Collapse file tree
soot-infoflow-android/src/soot/jimple/infoflow/android/entryPointCreators Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -179,9 +179,12 @@ private ComponentExchangeInfo generateComponentDataExchangeInterface() {
179179 Scene sc = Scene .v ();
180180 getResultIntentMethod = sc .makeSootMethod (getResultIntentName , Collections .emptyList (), intent );
181181 componentDataExchangeInterface .addMethod (getResultIntentMethod );
182+ getResultIntentMethod .setModifiers (Modifier .PUBLIC | Modifier .ABSTRACT );
182183 getIntentMethod = sc .makeSootMethod (getIntentName , Collections .emptyList (), intent );
184+ getIntentMethod .setModifiers (Modifier .PUBLIC | Modifier .ABSTRACT );
183185 componentDataExchangeInterface .addMethod (getIntentMethod );
184186 setIntentMethod = sc .makeSootMethod (setIntentName , Arrays .asList (intent ), VoidType .v ());
187+ setIntentMethod .setModifiers (Modifier .PUBLIC | Modifier .ABSTRACT );
185188 componentDataExchangeInterface .addMethod (setIntentMethod );
186189 ComponentExchangeInfo info = new ComponentExchangeInfo (componentDataExchangeInterface , getIntentMethod ,
187190 setIntentMethod , getResultIntentMethod );
You can’t perform that action at this time.
0 commit comments