Skip to content

Instantly share code, notes, and snippets.

@TimoGlastra
Created November 29, 2018 15:50
Show Gist options
  • Save TimoGlastra/b10e6eb0d6bf0067f23c5410ade492d2 to your computer and use it in GitHub Desktop.
Save TimoGlastra/b10e6eb0d6bf0067f23c5410ade492d2 to your computer and use it in GitHub Desktop.
"configurations": {
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"name": "REPLACE WITH EMULATOR NAME FROM ANDROID STUDIO"
},
"android.emu.release": {
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk",
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..",
"type": "android.emulator",
"name": "REPLACE WITH EMULATOR NAME FROM ANDROID STUDIO"
},
"android.genymotion.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.attached",
"name": "REPLACE WITH GENYMOTION IP"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment