You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
437 B
14 lines
437 B
package in.celest.xash3d; |
|
import android.content.BroadcastReceiver; |
|
import android.content.Context; |
|
import android.content.Intent; |
|
import android.util.Log; |
|
|
|
public class InstallReceiver extends BroadcastReceiver { |
|
private static final String TAG = "MOD_LAUNCHER"; |
|
@Override |
|
public void onReceive(Context context, Intent arg1) { |
|
Log.d( TAG, "Install received, extracting PAK" ); |
|
LauncherActivity.extractPAK( context, true ); |
|
} |
|
}
|
|
|