mirror of
https://github.com/yggdrasil-network/crispa-android.git
synced 2025-01-22 07:56:30 +00:00
1. methods log
This commit is contained in:
parent
caa798a08d
commit
b9d83dcad4
@ -141,8 +141,12 @@ class MainActivity : AppCompatActivity() {
|
||||
}
|
||||
val c: Class<*> = dummy.Dummy::class.java
|
||||
val methods: Array<Method> = c.declaredMethods
|
||||
for (i in methods.indices) {
|
||||
Log.d(TAG,"The method is: " + methods[i].toString())
|
||||
if(methods.isEmpty()){
|
||||
Log.d(TAG,"No class methods found in dummy.Dummy")
|
||||
} else {
|
||||
for (i in methods.indices) {
|
||||
Log.d(TAG, "The method is: " + methods[i].toString())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user