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