Friday, March 24, 2017
Gosakto afordable bug promo call txt surf for 1 month PHP160
Gosakto afordable bug promo call txt surf for 1 month PHP160
PLEASE READ FAQS BELOW PARA IWAS NA MADAMING TANONG.. HAPPY BUGGING..
gosakto bug 1 (call/text/internet)
500mins of globe/tm calls + 40text to allnetwork + 1gb internet data for 1MONTH! = 155PHP
Step 1: GOCOMBOGKEA47 send to 8888
Step 2: GOCOMBOAKAF108 send to 8888
gosakto bug 2 (call/text/internet)
500mins of globe/tm calls + 60text to allnetwork + 2gb internet data for 1MONTH! = 191PHP
Step 1: GOCOMBOGKEA47 send to 8888
step 2: GOTSCOMBOKEA36 send to 8888
Step 3: GOCOMBOAKAF108 send to 8888
gosakto bug 3 (text/internet)
40 txt all network + 1gb data for 1MONTH! = 109PHP
step 1: GOTSCOMBOKEA36 send to 8888
Step 2: GOTSCOMBOKAF73 send to 8888
gosakto bug 4 (text/internet)
60 txt all network + 2gb data for 1MONTH! = 145PHP
step 1: GOTSCOMBOKEA36 send to 8888
step 2: GOTSCOMBOKEA36 send to 8888
Step 3: GOTSCOMBOKAF73 send to 8888
Gosakto bug 5 (call and text)
500min of globe/tm calls + 40 txt to all network for 1MONTH! = 94PHP
Step 1: GOCTCOMBOGKA21 send to 8888
Step 2: GOCTCOMBOAKF73 send to 8888
NEW gosakto bug 6 (call/text/internet)
500mins of globe/tm calls + 40text to allnetwork + UNLIMITED internet data for 1MONTH! = 777PHP
Step 1: GOCTCOMBOGKA21 send to 8888
Step 2: GOCOMBOAKFF756 send to 8888
addons: para sa additional 1000 txt to all network register lang kau sa gt5 send to 8888 from 7am to 9am only.
Available link for download
Monday, March 6, 2017
How to pause Audio while Call is Incoming–Android
How to pause Audio while Call is Incoming–Android
While developing m-mathurat, I have this problem on handling incoming call while playing the audio for the recitation. The recitation audio is the main feature of m-mathurat, however as a phone, CALLs are the top priority. I dont want the recitation audio to interfere the conversation. Previously, the incoming call interrupts is not even thought of. As the consequence of neglecting this issue, I can hear the recitation sound while talking to a caller. This does disturb me coz I cannot here the caller voice clearly.
I notice this problem may occur in Android 2.1 and 2.2. However in Gingerbread (Android 2.3) this issue is handle automatically by the Android OS itself. Any audio playing while talking to a caller, will be minimized. Meaning that you still can only hear the audio/song however not too loud (considered not disrupting the conversation).
This tutorial is continuation of previous tutorial available here http://blog.kerul.net/2011/07/sound-manipulation-in-using-mediaplayer.html
Adding uses-permission to read the phone state
But before that, you must put this uses-permission in the AndroidManifest.xml (since this is considered a privacy issue, so telling the user prior installation is a must).
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
The special class PhoneStateListener
The solution is related to a class named PhoneStateListener. I put it in the main activity class. This is the class to handle the Phone-State change. If theres incoming / outcoming call, this class will be invoked.
This is the code part of the PhoneStateListener, for the complete source follow the link at the bottom of article.
//this is ONLY part of the code, refer bpottom of article
//to download complete code
...
...
...
public class BacaFatihahActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
private MediaPlayer mp;
...
...
...
//this is a code segmentation
//THis two lines of codes need to be inserted to the onCreate method
//This following codes dealing with the phone-state
//detect voice incoming call
//onCallStateChanged method will be executed if theres incoming
//or outcoming call
PhoneStateListener phoneStateListener = new PhoneStateListener() {
@Override
public void onCallStateChanged(int state, String incomingNumber) {
if (state == TelephonyManager.CALL_STATE_RINGING) {
//INCOMING call
//do all necessary action to pause the audio
if(mp!=null){//check mp
setPlayerButton(true, false, true);
if(mp.isPlaying()){
mp.pause();
}
}
} else if(state == TelephonyManager.CALL_STATE_IDLE) {
//Not IN CALL
//do anything if the phone-state is idle
} else if(state == TelephonyManager.CALL_STATE_OFFHOOK) {
//A call is dialing, active or on hold
//do all necessary action to pause the audio
//do something here
if(mp!=null){//check mp
setPlayerButton(true, false, true);
if(mp.isPlaying()){
mp.pause();
}
}
}
super.onCallStateChanged(state, incomingNumber);
}
};//end PhoneStateListener
TelephonyManager mgr = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);
if(mgr != null) {
mgr.listen(phoneStateListener, PhoneStateListener.LISTEN_CALL_STATE);
}
...
...
...
}//end onCreate
}//end class
This is the complete source code;
Available link for download
Sunday, January 22, 2017
How to make a Free International Call
How to make a Free International Call
Is it possible to make free international call? The Answer is, "Yes" and its 100% working as I have tested this free calling. You call call any number from your number for free. If you want to make free international calls just follow the steps given below.

2. You will recieve a verification email to verify your account which includes the verification link just click that link to activate your account.
3. Now login to your mobivox account with your email id and pin number.
4. After logging click on direct webcall.
5. Select hte country in which you want to make free call.
6. Enter your desired number you wish to make free call to.
7. After that you will recieve a call on your mobile phone and then you will be connected to the number to entered earlier in step 6.
Now you can talk to that person for five minutes only. If you wish to talk more you have to add some money in your account.
Available link for download
Monday, December 12, 2016
How to Play Random Ringtones in Android on Every Call
How to Play Random Ringtones in Android on Every Call
Everytime the software is updated we get new features that includes new ringtones, wallpapers and much more but still it lacks the essence of a real song playing while you are getting any call. if you are like me, I love to set a nice soothing ringtone on my device that does not irritate me but side by side is pretty audible to be heard. Now right now I am on an iOS device and adding ringtones to this is pain in ASS.
Available link for download