We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f384e46 commit f6d2b03Copy full SHA for f6d2b03
app/src/main/java/com/bomber/strace/LancerApp.kt
@@ -21,10 +21,11 @@ class LancerApp : Application() {
21
22
23
private fun installLancer() {
24
+ val traceDir = externalCacheDir?.absolutePath + File.separator + "trace"
25
val r = Lancer.getInstance().initialize(
26
Build.VERSION.SDK_INT,
- filesDir.absolutePath + File.separator + "trace",
27
- true
+ traceDir,
28
+ BuildConfig.DEBUG
29
)
30
Log.d("TraceApp", "r = $r")
31
Lancer.getInstance().start()
0 commit comments