Conversation

Replying to
it's baffling because there's no security! it makes it really hard to develop code without protecting against any attack i can think of!
2
1
Replying to and
The build of an app build being debuggable isn't reflected in the app data permissions. It's not a case of security people locking stuff down and making development inconvenient. ADB is a low-level tool and isn't designed to offer a high level user interface.
3
They expect developers to use high-level tools provided by Android Studio like developer.android.com/studio/debug/d rather than using the low-level SDK directly or the on-device with direct use of tools like `cmd` and `dumpsys`. It's treated pretty much like an implementation detail.
1
1
Replying to and
Sure, it offers a high-level file-management interface including uploading directories. They have a split between the implementation / plumbing layer and the tooling aimed at app developers that's designed for ease of use including hiding confusing implementation details.
1
Replying to and
when i run android studio all it does is print strange error messages different error messages every time it has a "debug apk" feature but it makes me hand-select every single .so and i have to re-do this every time i make a new build
1
overall android studio seems to have many, many details i have to learn, the "details" of android studio seem to be much more complicated and unapproachable than the much simpler "implementation details" of simply uploading files and then running them
1
Replying to
Hm, that is interesting. I am currently using Gradle because I need to use libraries built using both ndkbuild and cmake. It seems Gradle is the only tool that can integrate both. But I am encountering some problems with Gradle :(
1
Show replies