Search code examples
androideclipseandroid-studiobuildapk

Differences of Android apk exported by Eclipse and Android Studio


What are the differences of apk from Eclipse and Android Studio[IntelliJ IDEA] is there more security in Android Studio build?


Solution

  • Android Studio utilizes the fast growing Gradle build system. It builds on top of the concepts of Apache Ant and Apache Maven but it also introduces a Groovy DSL (Domain-Specific Language) that allows for scripted builds which opens up many automation possibilities like uploading your beta .apk to TestFlight for testing.

    Eclipse on the other hand uses Apache Ant as its main build system which a very robust XML based build system .

    Please check this SO Answer

    ADT (Eclipse) vs. Android Studio: How much APK file size difference is normal?

    Conclusion

    Both are identical.But i prefer Android Studio.