-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Syuugo <[email protected]>
- Loading branch information
1 parent
225d1a1
commit 789b412
Showing
6 changed files
with
74 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
app/src/main/java/io/github/chipppppppppp/lime/hooks/Ringtone.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package io.github.chipppppppppp.lime.hooks; | ||
|
||
import android.app.AndroidAppHelper; | ||
import android.content.Context; | ||
import android.media.RingtoneManager; | ||
import android.net.Uri; | ||
|
||
import de.robv.android.xposed.XC_MethodHook; | ||
import de.robv.android.xposed.XposedBridge; | ||
import de.robv.android.xposed.callbacks.XC_LoadPackage; | ||
import io.github.chipppppppppp.lime.LimeOptions; | ||
|
||
public class Ringtone implements IHook { | ||
private android.media.Ringtone ringtone = null; | ||
private boolean isPlaying = false; | ||
@Override | ||
public void hook(LimeOptions limeOptions, XC_LoadPackage.LoadPackageParam loadPackageParam) throws Throwable { | ||
|
||
if (!limeOptions.callTone.checked) return; | ||
|
||
XposedBridge.hookAllMethods( | ||
loadPackageParam.classLoader.loadClass(Constants.RESPONSE_HOOK.className), | ||
Constants.RESPONSE_HOOK.methodName, | ||
new XC_MethodHook() { | ||
|
||
@Override | ||
protected void afterHookedMethod(MethodHookParam param) throws Throwable { | ||
String paramValue = param.args[1].toString(); | ||
|
||
if (paramValue.contains("type:NOTIFIED_RECEIVED_CALL,") && !isPlaying) { | ||
Context context = AndroidAppHelper.currentApplication().getApplicationContext(); | ||
if (context != null) { | ||
Uri ringtoneUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE); | ||
ringtone = RingtoneManager.getRingtone(context, ringtoneUri); | ||
ringtone.play(); | ||
isPlaying = true; | ||
} | ||
|
||
if (paramValue.contains("RESULT=REJECTED,") || | ||
paramValue.contains("RESULT=REJECTED,")) { | ||
if (ringtone != null && ringtone.isPlaying()) { | ||
ringtone.stop(); | ||
isPlaying = false; | ||
} | ||
} | ||
} | ||
} | ||
}); | ||
|
||
Class<?> voIPBaseFragmentClass = loadPackageParam.classLoader.loadClass("com.linecorp.voip2.common.base.VoIPBaseFragment"); | ||
XposedBridge.hookAllMethods(voIPBaseFragmentClass, "onCreate", new XC_MethodHook() { | ||
@Override | ||
protected void beforeHookedMethod(MethodHookParam param) throws Throwable { | ||
if (ringtone != null && ringtone.isPlaying()) { | ||
ringtone.stop(); | ||
isPlaying = false; | ||
} | ||
} | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters