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にドラッグアンドドロップすると、.classファイルが.javaファイルのような読み取り可能な形式で表示されます。