How do I export a project in ZIP format in Android Studio?
I have always worked with Eclipse that has this feature.
Following worked for me, Android Studio 2.0, assuming there are no libs.
A. From the source project
1. Copy /app/build.gradle
2. Copy /app/src/* including subdirectories (only contains manifest, java and resources)
B. Create new project with the same package name, minSDK etc.
1. Replace /app/build.gradle
2. Replace /app/src/* including subdirectories
C. Synchronize
D. Clean Project