Reputation: 2967
I'm developing an Android app with Xamarin.Android.
I would like to analyze my APK and see it's size and how much each element takes up.
I understand there is an APK Analyzer in Android Studio. However, my project isn't in Java.
Is there a way to analyze my APK without opening the project?
Upvotes: 3
Views: 1492
Reputation: 40734
You can open any project in Android Studio to access the APK Analyzer - you will be given a prompt to select your APK from the filesystem.
If you need to, just create a sample/dummy project using Android Studio's new project wizard. Then once the project is opened, navigate to Build -> Analyze APK
Upvotes: 6