forked from mirrors/nixpkgs
androidsdk: fix activity launching
This commit is contained in:
parent
ebe57b1ac8
commit
70449b220d
|
@ -106,7 +106,7 @@ stdenv.mkDerivation {
|
|||
${stdenv.lib.optionalString (app != null) ''
|
||||
# Install the App through the debugger, if it has not been installed yet
|
||||
|
||||
if [ -z "${package}" ] || [ "$(adb -s emulator-$port shell 'pm list packages | grep -x package:${package}')" = "" ]
|
||||
if [ -z "${package}" ] || [ "$(adb -s emulator-$port shell pm list packages | grep package:${package})" = "" ]
|
||||
then
|
||||
if [ -d "${app}" ]
|
||||
then
|
||||
|
|
|
@ -6,5 +6,5 @@ androidenv.emulateApp {
|
|||
platformVersion = "16";
|
||||
useGoogleAPIs = true;
|
||||
package = "com.appcelerator.kitchensink";
|
||||
activity = "KitchensinkActivity";
|
||||
activity = ".KitchensinkActivity";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue