|
THanks Richard. That was a lot of help.
Have you done this before? I have some questions and I keep getting stuck
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.
|
|
|
|
|
I haven't done any Xamarin yet, so I'm not likely to be able to provide much help.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Hello everyone.
In order to develop Android programms, I am using IntelliJ IDEA 2020 (x64) on Windows 10 that is running on Intel core 2 Duo processor.
To debug and run the app, I use the Nexus 5 hardware and Nougat x86 System Image (API Level 24).
Also I’ve checked Intel x86 Emulator Accelerator (HAXM Installer) in SDK Tools and enabled Virtualization Tech in System BIOS.
After running the app, Device is shown to me, but my app doesn’t exist in it and this message pops up:
Emulator: Warning: Quick Boot / Snapshots not supported on this machine. A CPU with EPT + UG features is currently needed. We will address this in a future release.
Please help me.
|
|
|
|
|
Pouria Polouk wrote: We will address this in a future release. What part of that message do you not understand?
|
|
|
|
|
All of the message!
And why doesn't the App run on my CPU?
|
|
|
|
|
Have you seen here?
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
Yes, unfortunately it doesn't work for me.
|
|
|
|
|
Pouria Polouk wrote: And why doesn't the App run on my CPU? For exactly the reasons stated in the message.
|
|
|
|
|
Are there any other solutions OR changing the CPU is the only option?
|
|
|
|
|
If there was then there would be no need for that message.
|
|
|
|
|
Are you making fun of my question!?
|
|
|
|
|
Pouria Polouk wrote: Are you making fun of my question!? Not likely. I think we are confused as to what you want us to do.
Contact the vendor and see what they say.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
No, I am trying to get you to understand that the message produced by IntelliJ is telling you that something will not work on your system. And as they say, "A CPU with EPT + UG features is currently needed. We will address this in a future release.". So you need to upgrade your CPU or wait for them to release the version which does support it. But either way they are the people you should be talking to about the issue.
|
|
|
|
|
Pouria Polouk wrote: ...OR changing the CPU is the only option? You need to use a different CPU in your emulator (i.e., AVD), not your computer.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
|
According to Google Play meta data policy:
I cannot add "Word blocks and vertical/horizontal word lists" in my store listing full description.
I have written instructions for my app in this manner. Am i violating their policy? I think I'm not because these are sentences not word lists. What do you think?
Here’s how it works:
Download the Example on-demand delivery app on your preferred device
Sign-up by providing your necessary details (name, phone, and e-mail address)
Set your pick-up and drop off locations
Choose a payment method (card or cash)
Enter your shipping details, the receiver’s name, and phone (if it’s not you)
Confirm the booking
Thanks in advance for the replies.
|
|
|
|
|
a-rehman1 wrote: Am i violating their policy? Why don't you ask them?
|
|
|
|
|
The only answer you should really trust when it comes to violating policy is from the policy makers themselves or your own lawyer. Not some random people on a web forum.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
a-rehman1 wrote: ...these are sentences not word lists. I would tend to disagree.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
How can we draw coordinate axis in Android programming
|
|
|
|
|
As explained in the docs.
Which language would you want it in? There's examples available for each viable answer, and I happily Google them for you.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
Hi everybody,
I am a newbie to XAMARIN and working in XAMARIN (VS-2019) on a sample android app to connect to an SQL Server 2014 database to perform CRUD actions using direct ADO SqlClient connection, and did all remote connection configurations on my server such as: Enabling TCP/IP - Setting Exception rules on the Firewall (1433 for TCP and 1434 for UDP - Program Exception for SQL Server, and Program exception for SQL Browser), so all fine.
Actually my application seemed to be working on the emulator on debug, but not when published on a real android device, my application just ignores my request and goes back to the Main activity.
Could someone help me out please so this is my code:
public void InsertUser()
{
try
{
string dbstring = @"data source=xxx.xx.xx.xx,1433;initial catalog=MyDatabase;user id=XamarinUser;password=myPassword;Connect Timeout=10";
SqlConnection Con = new SqlConnection(dbstring);
if (Con.State == ConnectionState.Open) { Con.Close(); }
Con.Open();
SqlCommand cmd = new SqlCommand("INSERT INTO tblUSERS (Username, Password, Email, Active) VALUES ('" + txtUserName.Text + "','" + password1.Text + "','" + txtEmail.Text + "',0);", Con);
cmd.ExecuteNonQuery();
Con.Close();
Con = null;
cmd = null;
this.Dismiss();
}
catch (Exception)
{
throw new Exception("Application run into errors. Please contact us.");
}
}
modified 28-Apr-20 12:34pm.
|
|
|
|
|
|
|
Hello everyone, I am a new android user, I want to do my project with undo and redo buttons for edit text, I don't know what to do? please help me! thanks
|
|
|
|