I'm trying to link
SQLiteStudio with
B4A,
video youtube,
github DbAndroid
but it is giving an error in SQLiteStudio saying that the application is not in active debug mode.
I used the command:
adb shell run-as br.sqlite
But it always says that the package is not in debug mode ...
I tried to add it to the manifest and it didn't work.
I saw it in a forum that should modify the
build.gradle, but I couldn't find any place in b4a to make this change:
android {
// ...
buildTypes {
debug {
debuggable true
}
customDebuggableBuildType {
debuggable true
}
release {
debuggable false
}
}
// ...
}