.apk
file from Android Studio. Follow the steps below to create your build.
Step 1: Open Your Project
Launch Android Studio and open the project for your application.Step 2: Configure Build Settings
Make sure your project is configured to build for emulator arm64-v8a ABI:- Open your app’s
build.gradle
file (usuallyapp/build.gradle
) - Ensure the following configuration is present:
Step 3: Build Your APK
Choose Build > Build Bundle(s) / APK(s) > Build APK(s) to build your app.For testing purposes, we recommend building debug APKs which include debugging information and are optimized for development.
Step 4: Locate Your Build
When the build completes, choose Locate from the bottom right corner popup. A folder containing your.apk
file will appear. The APK is typically located at:
app/build/outputs/apk/debug/app-debug.apk
Step 5: Upload to Revyl
You can now upload this.apk
file to Revyl! Simply drag and drop your .apk
into the upload area or use our CLI tool.
For detailed upload instructions, see Uploading your app.
Alternative: Command Line Build
You can also build your APK using the command line:Troubleshooting
Build fails with ABI configuration errors
Build fails with ABI configuration errors
Ensure your
build.gradle
includes the correct ABI configuration:APK not found after build
APK not found after build
Check the following locations for your APK:
app/build/outputs/apk/debug/app-debug.apk
app/build/outputs/apk/release/app-release.apk
*.apk
files in your project directory.Gradle build fails
Gradle build fails