Use debug for firebase
diff --git a/.travis.yml b/.travis.yml
index bd7b01e..0f75422 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -58,7 +58,7 @@
     script: "./gradlew :LottieSample:testReleaseUnitTest"
   - name: Firebase Happo Tests
     script:
-    - "./gradlew :LottieSample:assembleRelease :LottieSample:assembleAndroidTest"
+    - "./gradlew :LottieSample:assembleDebug :LottieSample:assembleAndroidTest"
     - "./gcloud_run.sh"
   - stage: deploy
     name: Create release and upload artifacts
diff --git a/gcloud_run.sh b/gcloud_run.sh
index e82ad0b..29dbd30 100755
--- a/gcloud_run.sh
+++ b/gcloud_run.sh
@@ -17,7 +17,7 @@
 
 RunTests()
 {
-gcloud firebase test android run --no-auto-google-login --type instrumentation --device model=Nexus5X,version=26 --app LottieSample/build/outputs/apk/release/LottieSample-release-unsigned.apk --test LottieSample/build/outputs/apk/androidTest/debug/LottieSample-debug-androidTest.apk
+gcloud firebase test android run --no-auto-google-login --type instrumentation --device model=Nexus5X,version=26 --app LottieSample/build/outputs/apk/debug/LottieSample-debug.apk --test LottieSample/build/outputs/apk/androidTest/debug/LottieSample-debug-androidTest.apk
 result=$?
 }