Skip to main content
28
results
Andrew Fletcher
How to generate a new private key and submit it to Google Play for signing your Android app, you can follow these steps: Generate a New Keystore (Private Key) You can generate a new keystore file (which includes the private key) using the keytool utility that comes with the Java Development Kit (JDK). Open a command prompt or terminal and run the following command to generate a new keystore: keytool -genkeypair -v -keystore your-keystore-name.keystore -keyalg RSA -keysize 2048 -validity 10000...
Andrew Fletcher
Loading the code in a platform - in this article, I'll be focusing on Android...
Andrew Fletcher
The error > Task :app:packageDebug FAILED Execution failed for task...
Andrew Fletcher
Recently a client handed me code that runs an app through iOS and Android....
Andrew Fletcher
Each time a release is prepared for Google Play, the steps I work through are as...
Andrew Fletcher
Attempting to run a preview, and I'm seeing the following error in Android Studio DerInputStream.getLength(): lengthTag=107, too big.  After a some searching, options that I came across was to try converting the Keystore to pk12.  But to no avail.   Looking at a more detailed error response Execution failed for task ':app:packageRelease'. > A failure occurred while executing com.android.build.gradle.tasks.PackageAndroidArtifact$IncrementalSplitterRunnable >...
Andrew Fletcher
Resources Type Version Android Studio Android Studio Giraffe | 2022.3.1...
Andrew Fletcher
Updating the Android app and while testing I'm seeing the following error in the...
Andrew Fletcher
This article works through the steps to update dependencies in package.json...
Andrew Fletcher
Android Studio error Installation did not succeed. The application could not be...
Andrew Fletcher
Android Studio error error: package android.support.v4.content does not existThis is a problem with plugins using old Android support dependencies instead of the AndroidX equivalent.  As it's a dependency issue, to resolve add jetifier.  I know yet another package... npm install jetifier npx jetify npx cap sync  Tools Ionic CLI : 6.20.1 (/usr/local/lib/node_modules/@ionic/cli) Ionic Framework : @ionic/angular 6.2.0 ...
Andrew Fletcher
Android Studio build errors Build failed error: cannot find symbol if...
Andrew Fletcher
Initialise your Capacitor config​ To initialise Capacitor use the CLI...
Andrew Fletcher
Run the NPX commands to update the app npm run build && npx cap syncRun...
Andrew Fletcher
Approaches to resolving “Module not specified” Error in Android Studio When...