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:
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:
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:
B4X:
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:
B4X:
android {
// ...
buildTypes {
debug {
debuggable true
}
customDebuggableBuildType {
debuggable true
}
release {
debuggable false
}
}
// ...
}