The 'aar' bundle is the binary distribution of an Android Library Project. .aar file
consists a JAR file and some resource files. You can convert it
as .jar file using this steps
1) Copy the .aar file in a separate folder and Rename the .aar file to .zip file using
any winrar or zip Extractor software.
2) Now you will get a .zip file. Right click on the .zip file and select "Extract files".
Will get a folder which contains "classes.jar, resource, manifest, R.java,
proguard(optional), libs(optional), assets(optional)".
3) Rename the classes.jar file as yourjarfilename.jar and use this in your project.
참고 : .aar 파일에서 .jar 파일 만 가져 오려면 위의 방법을 사용하십시오. .jar 파일에 manifest.xml 및 리소스를 포함하려면 .aar 파일을 마우스 오른쪽 버튼으로 클릭하고 .zip으로 저장하는 대신 직접 .jar 파일로 저장할 수 있습니다. 압축을 푼 .jar 파일을 보려면 JD-GUI (Java Decompiler)를 다운로드하십시오 . 그런 다음 .jar 파일을이 JD_GUI로 끌어다 놓으면 .java 파일과 같이 읽을 수있는 형식으로 .class 파일을 볼 수 있습니다.