Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
I am trying to re-build an unpacked apk, because it was unpacked the required libraries are already included, deleting the prepacked libraries would be feasible if it weren't for the fact that some...
#1: Initial revision
Disable import of Android SDK/Support Libraries
I am trying to re-build an unpacked apk, because it was unpacked the required libraries are already included, deleting the prepacked libraries would be feasible if it weren't for the fact that some of the dependencies seem to be missing when I build with them deleted. I could individually sort through and pick out only the ones that aren't added on build and delete the rest, but it seems like it would be easier to exclude the android support libraries from being included at all. Can/how can this be done in Android Studio/with Gradle?