Hi,
I’m currently on RC1 and have my app scripts up to date.
I’ve got the app building and running on the iOS simulator but no clicks are being received by the app.
I cant select buttons or scroll the view for that matter but running $(“button”).click() in the consols, for example, works.
Any ideas on getting this sorted?
Ionic info:
Cordova CLI: 6.4.0
Ionic Framework Version: 2.0.0-rc.1
Ionic CLI Version: 2.1.1
Ionic App Lib Version: 2.1.1
Ionic App Scripts Version: 0.0.39
ios-deploy version: 1.9.0
ios-sim version: 5.0.8
OS: Mac OS X Sierra
Node Version: v6.7.0
Xcode version: Xcode 8.0 Build version 8A218a
And the package.json
{
"name": "name",
"author": "author",
"homepage": "ionic.io",
"private": true,
"scripts": {
"build": "ionic-app-scripts build",
"watch": "ionic-app-scripts watch",
"serve:before": "watch",
"emulate:before": "build",
"deploy:before": "build",
"build:before": "build",
"run:before": "build",
"device": "ionic-app-scripts build --dev && cordova run android --device"
},
"dependencies": {
"@angular/common": "^2.0.0",
"@angular/compiler": "^2.0.0",
"@angular/compiler-cli": "0.6.2",
"@angular/core": "^2.0.0",
"@angular/forms": "^2.0.0",
"@angular/http": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"@angular/platform-browser-dynamic": "^2.0.0",
"@angular/platform-server": "^2.0.0",
"@ionic/storage": "^1.0.3",
"ionic-angular": "^2.0.0-rc.1",
"ionic-native": "^2.2.3",
"ionicons": "^3.0.0",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.21"
},
"devDependencies": {
"@ionic/app-scripts": "latest",
"typescript": "^2.0.3"
},
"description": "description",
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"ionic-plugin-keyboard",
{
"id": "cordova-plugin-googlemaps",
"locator": "https://github.com/mapsplugin/cordova-plugin-googlemaps.git#multiple_maps",
"variables": {
"API_KEY_FOR_ANDROID": "key",
"API_KEY_FOR_IOS": "key",
"NSLOCATIONALWAYSUSAGEDESCRIPTION": "description",
"NSLOCATIONWHENINUSEUSAGEDESCRIPTION": "description"
}
}
],
"cordovaPlatforms": [
"ios",
"android"
]
}
Any ideas?