I am working on an android app, which is based on libgdx framework. I need to test the app on my pc, so I set up Android Studio to build me an apk or a normal java jar. But I need to pack my resources (images, audio, allways the same for both) into both, apk and jar. How can I share those resources between those two projects?
Asked
Active
Viewed 899 times
1
-
Create link in one project to resources from the second project – Konrad Krakowiak Feb 13 '15 at 19:05
-
Are you using Gradle to build your desktop app? If not, how are you building it? – Tenfour04 Feb 14 '15 at 02:33
-
Thanks. I actually resolved it by removing Gradle and letting it autogenerate the configuration. Now I'm able to share resources and include files in my projects. – Benedikt M. Feb 14 '15 at 12:09