proguard 5.10.2

Basic proguard mapping file handling for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
package io.sentry.samples.instrumentation.ui

class TestSourceContext {

    fun test() {
        test2()
    }

    fun test2() {
        throw IllegalStateException("checking line numbers in source context")
    }
}