I keep getting this error when I try to use my .aar plugin created in Android studio on Unity 3d
Error building Player: IOException: Failed to Move File / Directory from 'Temp/StagingArea\android-libraries\app-release\classes.jar' to 'Temp/StagingArea\android-libraries\app-release\libs\classes.jar'.
Use the provided scope in gradle.
https://sinking.in/blog/provided-scope-in-gradle/
dependencies { provided fileTree(dir: 'libs', include: ['*.jar']) }
You need to remove "libs / classes.jar" in your aare (use your favorites archive manager, it's just a ZIP file), because Unity will enter it on its own. Unity will fail if it is already gone.
Im works with Unity-Editor and visual Studio. What worked for me, simply deleted these files mentioned in the error log. The editor managed to create after that on my Android device. Since then, my game has worked great.
open your project in unity show the project folder if you are on ios. or go to the project folder if you are on a Windows platform. Search for .aar files in the entire project and delete all files. restart the project and create apk.
Source: https://habr.com/ru/post/1650073/More articles:Нет модуля с именем 'django.core.context_processors', в views.py - pythonAre empty curly brackets if the statements are satisfied? - phpWEB API - authorization on the controller or action level (without authentication) - authenticationscala, Initializing abstract vals - scalaQuerying a value from a JSON field in Flask-SQLAlchemy with postgresql - jsonUnity Error: Unable to convert classes to dex format - jarUnderstanding tenorflow and cpu queues ↔ gpu transfer - memory-managementhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1650076/swift-switch-statement-cases-have-different-and-shared-things-to-do&usg=ALkJrhgFqHCMjapgdOXsl9tCjpWnYxVWCwHow to simulate "No Internet Connection" in Unit / Integration Test in C # - c #Can I define DBIx :: Class :: ResultSource :: View after connecting? - sqliteAll Articles