You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear developers:
I download source code of ic3-0.2.0 and build it ,I found that ic3-0.2.0 can not parse intent in the callback method in the layout XML files.
MainActivity.java
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void startFoo(View view) {
TelephonyManager tel = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);
String deviceID = tel.getDeviceId();
Intent intent = new Intent(MainActivity.this,FooActivity.class);
intent.putExtra("deviceID", deviceID);
startActivity(intent);
}
}
Since the parsing of layout files is done by Soot code, this is probably due to the version of the Soot code used in IC3 0.2.0, since if I remember correctly it was updated between IC3 0.1.0 and 0.2.0.
Dear developers:
I download source code of ic3-0.2.0 and build it ,I found that ic3-0.2.0 can not parse intent in the callback method in the layout XML files.
MainActivity.java
activity_main.xml
The result:the Intents table is null,but I used ic3-0.1.0-full.jar ,it does work,the Intents table is not null, can you give me some answers.
Best wishes.
The text was updated successfully, but these errors were encountered: