MessageActivity.java
1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.arellomobile.android.push;
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import java.util.logging.Logger;
public class MessageActivity
extends Activity
{
public void onCreate(Bundle paramBundle)
{
super.onCreate(paramBundle);
Intent localIntent = new Intent();
paramBundle = getApplicationContext().getPackageName() + ".MESSAGE";
localIntent.setAction(paramBundle);
localIntent.setFlags(603979776);
localIntent.putExtras(getIntent().getExtras());
try
{
startActivity(localIntent);
finish();
return;
}
catch (ActivityNotFoundException localActivityNotFoundException)
{
for (;;)
{
Logger.getLogger(getClass().getSimpleName()).severe("Can't launch activity. Are you sure you have an activity with '" + paramBundle + "' action in your manifest?");
}
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/arellomobile/android/push/MessageActivity.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/