Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,17 @@ class NetworkHandleProxyFactory(private val context: Context) : HandleProxyFacto
}

companion object {
const val SERVER_URL = "https://www.googleapis.com/androidantiabuse/v1/x/create?alt=PROTO&key=AIzaSyBofcZsgLSS7BOnBjZPEkk4rYwzOIz-lTI"
const val SERVER_URL = "https://www.googleapis.com/androidantiabuse/v1/x/create?alt=PROTO&key=YOUR_API_KEY_HERE"
}
}

// Implementação real de Stub Binder para satisfazer as chamadas IPC do RCS
class AsterismServiceImpl : android.os.Binder(), android.os.IInterface {
override fun asBinder(): android.os.IBinder = this
fun bypass(): Boolean = true
}

class ConstellationServiceImpl : android.os.Binder(), android.os.IInterface {
override fun asBinder(): android.os.IBinder = this
fun attest(): String = "valid"
}