|
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
|
|
|
|
|
Start with something less complicated and learn the different features of Android programming. Leave the advanced projects until you are full skilled with the basics.
|
|
|
|
|
Hello my dear friends . How can I get the geographic coordinates in which I am offline? Thank you for your reply.
|
|
|
|
|
|
hi !
I have a small win32 (18k) app that i developed years ago for my electronic hobby project. Basically, it takes the text from the screen or from a file, stores it internally in arrays and writes at regular time intervals data packets to the COM1 port(as a file). On windows and linux(using wine) on my PC i used a virtual COM port and installed a driver for a rs232 to usb adapter(ft232 chipset). I want the same on android. The win32 app was written in C, the only language i know, and i would like to port the app "as is"(no code rewriting) to android, because i have no clue of android programming at all. The search on the internet returned no results - i didn't find any solution. Is the following way possible :
General : Installing a minimal linux distro on android with usb acces/ Installing FT232 driver in the terminal
1.compiling the code for arm(32) linux/ Run it in the terminal
Or
2. Port the exe to windows rt/arm / Run the .exe with wine in the terminal ?
The linux distros in the android app(userland, andronix) are bare-bone ones and do not seem to provide usb support( when i run lsusb i get -99 code error) I've also installed visual studio 2019 (win 10 SDK) and cannot build my project because .h files are not found, even if i change the path in the project properties. If i enter the complete path in my code file they are found, but then i still have 200 error messages because things like Bool, Handle, are not defined. The original/initial application i build 10 years ago was generated by CodeBlocks on my old PC which i dont have anymore(broken,but i still have all original project files).
The project files can be found here (link temporary available for your analisys and answers): https:
Thanks.
|
|
|
|
|
Hello everyone.
I’ve decided to program Android in IntelliJ IDEA 2018.3 using Kotlin.
When I determine the SDK path and create the Android project, I face the "MyProject sync faild" message. Furthermore I am using JDK 8.
The errors shown to me are:
Could not find com.android.tools.build:gradle:3.1.0.
Searched in the following locations: https:
https:
https:
https:
Required by:
project :
Add Google Maven repository and sync project
Open File
Please help me.
Thank you.
|
|
|
|
|
Just proceed with intellij suggestion to "Add google maven repository" via popup shown at right bottom or add these to your project root build.gradle file.Located at ../project_root/build.gradle.
repositories
{
google()
jcenter()
maven { url "https://jitpack.io" }
}
|
|
|
|