Advertisement
JohnnyTurbo

CopyPlugin build.gradle Task

Jul 29th, 2018
795
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. task copyPlugin(type: Copy){
  2.     dependsOn assemble
  3.     from ('build/outputs/aar')
  4.     into ('Path/To/Your/Unity/Project/.../Assets/Plugins/Android')
  5.     include (project.name + '-release.aar')
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement