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