Cordova Build fehlgeschlagen (kann Zip nicht entpacken)

Failed with exit code 1 Error In cordova

Failed with exit code 1 Error In cordova

  1. Delete „gradle-2.13-all.zip“ folder and everything in this directory: C:\Users\Somnath Sarkar.gradle\wrapper\dists\gradle-2.13all\7hsc6vr6mi3i6i5m7q9hj4ci1q\
  2. Download the gradle zip manually
  3. Paste the gradle zip folder in C:\Users\Somnath Sarkar.gradle\wrapper\dists\gradle-2.13-all\7hsc6vr6mi3i6i5m7q9hj4ci1q\
  4. Run cordova build android

 

A valid provisioning profile for this executable was not found

Wenn das Problem auftritt, muss in den Project Setting das Build System von „New Build System“ auf „Legacy Build System“ umgestellt werden:

 

Xcode 10: A valid provisioning profile for this executable was not found

Xcode 10: A valid provisioning profile for this executable was not found

Since yesterday I’ve been getting the following error when trying run an app on my device: „A valid provisioning profile for this executable was not found.“. This is after updating to Xcode 10. Bui…

Source: https://stackoverflow.com/questions/52424462/xcode-10-a-valid-provisioning-profile-for-this-executable-was-not-found#52434756

Xcode has conflicting provisioning settings

Die Lösung ist unter Project Target > Build Settings > Suchfenster nacht PROVISIONING_PROFILE zu suchen und alle Profile zu löschen.

Xcode has conflicting provisioning settings

Xcode has conflicting provisioning settings

I have an Ionic 2 app, which builds and is testable in Xcode 8.2.1 Simulator environment, e.g. iPhone7 (Build Successful). When I try Archive the app to create an ipa file to set on a device, I fo…

Source: https://stackoverflow.com/questions/42885122/xcode-has-conflicting-provisioning-settings#53957176

Cordova Apps und iOS Bounce Effekt

Seit iOS 11.3 sind alle Apps mit einem Bounce-Effekt beim scrollen versehen. Das wirkt sicht negativ auf Cordova-Apps aus, da diese nur im Webview scrollen sollen.

Dafür muss in der config.xml von Cordova folgendes eingefügt werden:

<preference name="DisallowOverscroll" value="true" />
<preference name="UIWebViewBounce" value="false" />

Danach muss die App mit cordova build ios neu kompiliert werden.

Disable iOS Scroll Bounce/OverScroll in Cordova Apps | Mahdi Hazaveh

Disable iOS Scroll Bounce/OverScroll in Cordova Apps | Mahdi Hazaveh

Source: hazaveh.net/2018/02/disable-ios-scroll-bounce-overscroll-in-cordova-apps/