python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Smali moveTaskToBack
I just started in smali and I'm trying to add moveTaskToBack(true) in main activity (smali) but I don't know how to convert it.
Btw here's what I tried:
invoke-virtual {p0, v0}, Landroid/androapp/Main...
Majarkata
Votes: 0
Answers: 1
why a field named "$r8$clinit" was generated in an interface in its smali code?
I have an interface A.kt like this in an Android app:
interface A {
fun f1(defaultValue: String): String
fun f2(defaultValue: Boolean): Boolean
private class B(context: Context) : A {
...
Richard Hu
Votes: 0
Answers: 0
how to locate the register problem in Android after modifying some smali code of an APK?
I would like to add something to an app, so I added some lines to a smali file (decompiled the apk using apktools) and then repackaged and ran it on a real device.
It shows
10121 10211 E AndroidRunti...
jyxu2015
Votes: 0
Answers: 1
Load library in Smali
If you put the library along the path file.apk:/lib/(arm64-v8a|x86|etc.)/libsun.so then it can be loaded using the following code:
const-string v0, "sun"
invoke-static {v0}, Ljava/lang/Syste...
Noner
Votes: 0
Answers: 1