Fix two wrong paths, due to path refactoring so that the emulation script works again
This commit is contained in:
parent
431b0dc03e
commit
8349754e2a
|
@ -76,10 +76,10 @@ stdenv.mkDerivation {
|
|||
echo "ready"
|
||||
|
||||
# Install the App through the debugger
|
||||
${androidsdkComposition}/android-sdk-*/libexec/platform-tools/adb -s emulator-$port install ${app}/*.apk
|
||||
${androidsdkComposition}/libexec/android-sdk-*/platform-tools/adb -s emulator-$port install ${app}/*.apk
|
||||
|
||||
# Start the application
|
||||
${androidsdkComposition}/android-sdk-*/libexec/platform-tools/adb -s emulator-$port shell am start -a android.intent.action.MAIN -n ${package}/.${activity}
|
||||
${androidsdkComposition}/libexec/android-sdk-*/platform-tools/adb -s emulator-$port shell am start -a android.intent.action.MAIN -n ${package}/.${activity}
|
||||
EOF
|
||||
|
||||
chmod +x $out/bin/run-test-emulator
|
||||
|
|
Loading…
Reference in New Issue