There seems to be an issue with logging into my Ionic account while running the command $ionic cordova resources

I am currently trying to update the icon and splash screen of my ionic project. Following the instructions, I ran '$ionic cordova resources android' command, which prompted me to create an Ionic account. However, upon signing up, I received an error message stating:

No user found by that email.

Can someone assist me with this issue? I am eager to hear your response.

https://i.sstatic.net/S9rjk.png

cli packages: (C:\Users\c\AppData\Roaming\npm\node_modules)

@ionic/cli-utils  : 1.9.2
ionic (Ionic CLI) : 3.9.2

global packages:

Cordova CLI : 7.0.1

local packages:

@ionic/app-scripts : 1.3.0
Cordova Platforms  : android 6.2.3 browser 4.1.0
Ionic Framework    : ionic-angular 3.0.0

System:

Android SDK Tools : 26.0.2
Node              : v6.10.3
npm               : 3.10.10
OS                : Windows 10

Answer №1

Update:

Your ionic info indicates that you are using outdated versions of app-scripts and ionic. To ensure compatibility with the latest Ionic CLI, it is imperative to upgrade these components.

Make sure your package.json file mirrors the structure outlined here.

Previous Answer:

To begin, create a Free or dev account here.

Then, utilize the following CLI command:

ionic cordova resources android

For guidance on automating icons and splash screens, refer to this resource. Be sure to use the most recent version of the CLI, as the article was written using an older one.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Leveraging ngStorage as an array within an Ionic application

Looking to convert the code snippet below: .service('dataStore', function($localStorage,$scope){ this.entfeeds=[]; this.topfeeds=[]; this.intfeeds=[]; }) .controller('GenFeedCtrl', function ($scope,.... $scope.feeds = ...

Automated Import Feature in Visual Studio Code

I'm currently transitioning from Webstorm to Visual Studio Code due to the poor performance of Webstorm. However, I'm facing issues with Visual Studio Code not being very efficient at detecting and importing the dependencies I need. I find mysel ...

The keyboard in Ionic 2 is responsible for pushing the screen upwards

Working on an Ionic 2 application, here is the HTML code snippet for my login page: <ion-header> <ion-navbar color="royal"> <ion-title> Login </ion-title> </ion-navbar> </ion-header> <ion-content class="fond ...

Issue with rejecting a promise within a callback function in Ionic 3

Within my Ionic 3 app, I developed a function to retrieve a user's location based on their latitude and longitude coordinates. This function also verifies if the user has location settings enabled. If not, it prompts the user to switch on their locati ...

Invoking a method of a component within a service class

Is there a way to call a function in the Component Class from an Injectable Class? INJECTABLE: Injectable() export class theInjected { constructor(private afAuth: AngularFireAuth, private googlePlus: GooglePlus, public alertCtrl: AlertController){ ...

display a discrete delete button when pressing a button within ng-bootstrap

My current setup uses ng-bootstrap with Angular4. Image https://i.sstatic.net/83UhP.png In the interface, a checkbox button is used to show responses fetched from the backend. By clicking the button, the x button disappears along with other elements belo ...

Utilizing the Tooltip Directive when hovering over the designated tooltip region

One of my requirements is that when a user hovers over an icon, a tooltip should appear allowing the user to click on a URL within the tooltip. Additionally, I need the tooltip element inside the icon div to be appended to the body when hovered over and re ...

Allowing the use of a string as a parameter in a Typescript constructor

Currently, I am utilizing TypeScript to create a constructor for a model within Angular. One of the attributes in the model is configured as an enum with specific string values. Everything functions well if an enum value is passed to the constructor. The i ...

What is the significance of using interfaces in parentheses when assigning typescript types?

These are the 2 interfaces I currently have export interface Contact { first_name: string; last_name: string; emails?: (EmailsEntity)[] | null; company: string; job_title: string; } export interface EmailsEntity { email: string; label: strin ...

Can the data cells of columns be dynamically adjusted to align them on a single vertical line?

For some time now, I have been grappling with a CSS issue. I am working with a table that has 3 columns displaying departures, times, and situational text for scenarios like delays or cancellations. However, as evident from the images, the alignment of th ...

Tips on implementing mongoose 'Query<any>' types

I have been exploring ways to incorporate a cache layer into my TypeScript project. Recently, I came across an insightful article on Medium titled How to add a Redis cache layer to Mongoose in Node.js The author demonstrates adding a caching function to m ...

Show a checkmark or X depending on the condition in Javascript

I have an array of data that I want to compare to the input in a text field. If the input matches an element in the array, I want to display a checkmark, and if it doesn't match, I want to display a crossmark. However, I'm having an issue where ...

Inhibit unselected choices when a user exceeds choosing a certain number of options

I want users to be able to select a maximum of 3 options from a list. If a form has four options, once the user selects three, the fourth should become disabled. Here is the setup I have: import { Component, Input, ViewChild, OnInit, AfterViewI ...

Challenges when implementing tooltip in bootstrap using Angular and TypeScript

Looking to enhance my website with a tooltip using Bootstrap in Angular. Reference link: https://getbootstrap.com/docs/4.0/components/tooltips/ The issue at hand: Current tooltip appearance: https://i.sstatic.net/MJlCg.png Desired tooltip outcome: ht ...

Incorrect date generated by Moment.js from Unix timestamp

Is there a way to store unixtime as a Moment.moment state? Using moment(timestamp) seems to provide a different date. const [date, setDate] = useState<moment.Moment | null>(null); const timestamp = Math.floor(date.getTime() / 1000); setDate(m ...

Error: The lockfile and package.json file are not synchronized when running npm

Having a problem with NPM where the package-lock and package.json files are out of sync. Tried deleting node_modules, running npm install, but issue persists. Any suggestions? Error: npm ci can only install packages when package.json and package-lock.json ...

Guide on building a function in Typescript that transforms a dynamic Json into a formula

My task is to develop a method that can convert a dynamic Json with a specific structure export interface Rules { ruleDescription: string; legalNature: string; rulesForConnection: RuleForConnection[]; or?: LogicalOperator; and?: Logical ...

Can a type be established that references a type parameter from a different line?

Exploring the Promise type with an illustration: interface Promise<T> { then<TResult1 = T, TResult2 = never>( onfulfilled?: | ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ...

The Angular application integrated with Keycloak experiences an endless loading loop when the page is refreshed or after the user logs in

One approach I've been trying to maintain the current state of my Angular app (the URL) when refreshing the page is by modifying the redirectUri in the isAccessAllowed function: public async isAccessAllowed( route: ActivatedRouteSnapshot, ...

Utilizing Regex to Authenticate a CAGE Code

Our task is to create a RegEx pattern that can accurately validate a CAGE Code A CAGE Code consists of five (5) positions. The code must adhere to the following format: The first and fifth positions must be numeric. The second, third, and fourth position ...