Skip to content

Commit 1b864ab

Browse files
Use monkey to start Android applications
Use the monkey tool to start Android applications on device. This way we do not have to care about the startPackageActivity name and we can start the application in case a custom activity is used. Remove unused code and variables.
1 parent 1fb2962 commit 1b864ab

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

lib/config.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import * as path from "path";
22
import {StaticConfigBase} from "./common/static-config-base";
33
import {ConfigBase} from "./common/config-base";
4-
import { startPackageActivityNames } from "./common/constants";
54

65
export class Configuration extends ConfigBase implements IConfiguration { // User specific config
76
CI_LOGGER = false;
@@ -29,7 +28,6 @@ export class StaticConfig extends StaticConfigBase implements IStaticConfig {
2928
public TRACK_FEATURE_USAGE_SETTING_NAME = "TrackFeatureUsage";
3029
public ERROR_REPORT_SETTING_NAME = "TrackExceptions";
3130
public ANALYTICS_INSTALLATION_ID_SETTING_NAME = "AnalyticsInstallationID";
32-
public START_PACKAGE_ACTIVITY_NAME = startPackageActivityNames[this.CLIENT_NAME_ALIAS.toLowerCase()];
3331
public INSTALLATION_SUCCESS_MESSAGE = "Installation successful. You are good to go. Connect with us on `http://twitter.com/NativeScript`.";
3432

3533
constructor($injector: IInjector) {

0 commit comments

Comments
 (0)