unfortunately, you’d need to do this manually, do you use any sort of build system? how do you do it?
Projects that don’t have a build system are very rare, because of that we’ve chosen to no support by default, but as I said, if you copy all the artifacts manually, you could do it, you still would need to do some stuff that only the AGP plugin does, like Manifest merging, etc, etc…
Thanks for responding me. Yes, I’ve added manually all the libraries, and dependencies and the project builds, and the crashes are sent to the Sentry dashboard.
But I have now another problem. When I try to build for release I have an error relate to proguard. Are there any proguard rules that I have to add manually in order to build for release?
hey @radupa1 glad that you made it to work, it’s important to copy all transitive dependencies too, but if its sending already, you have done it right.
yes, this is part of the AGP tasks, but you can also copy and set manually.
if you have native code (NDK) this one too
if you minify your App, you need to upload the mapping.txt to Sentry, but as you don`t use Gradle, you need to do this manually.
Thanks again for responding me.
Finally I was able to integrate sentry in my app.
The easiest way was to create a new android project with android studio, and integrate there sentry. Then I’ve copied the .aar files from gradle directory, to my non-gradle project.