|
Do I need to do that on my Dev PC using the Xamarin Forms emulator?
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.
|
|
|
|
|
|
I opened the port, and get the same error
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.
|
|
|
|
|
When I try to play videos saved on my Google Drive, in my Google Pixel 4a. I keep getting the error “Whoops! there was a problem playing this video”. I have tried some basic troubleshooting with no result. If anyone has any suggestions, please help me out.
|
|
|
|
|
Hello, am a back-end node js developer, am working with a friend in a project, and we are looking for someone with experience in android development.
We are working with some really cool technologies and if you are interested I would love to give you a tour of the project.
At the moment this is not a payed position, but could lead to pay.
This project would look great in any resume and will give you really good experience with the development process in a group.
Reply for a tour of the project
|
|
|
|
|
hit me up at nathanalbertwallace@gmail.com .. l
|
|
|
|
|
Hi everybody, I would like to know which laptop model is suitable for Android Development.
|
|
|
|
|
Any laptop that has a reasonable amount of memory (at least 8 Gb), and an i5 or above processor should be OK.
|
|
|
|
|
Please give me detials information. I am now confused which one has to be bought.
|
|
|
|
|
I gave you details in my previous message. What part did you not understand?
|
|
|
|
|
Buy what you can afford.
"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
|
|
|
|
|
|
|
Thanks bro.
|
|
|
|
|
Hide Copy Code
i want to create a simple login app in android studio in that i want to fetch first time username and password from local database sqlite and after that when we log in then the imei number of device can store in database...then when we try to log in next time it will login through only that imei number
|
|
|
|
|
So what exactly is the problem with doing this?
|
|
|
|
|
You have already posted this in QA:
Creation of android application[^]
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
And in the Mobile forum below.
|
|
|
|
|
Today I come to you with one question - I am currently creating an Android application that works with the firestore and implemented a class that checks the account type. Everything works fine, however I would now like to get the value of "typeOfAcc" from this class in a different class as it will be the path to my document in the database, however, there is one condition - the path must be downloaded only after the data is downloaded from the database and based on it it will be determined whether the account type should be changed to "Trainers". Anyone have any idea? All my attempts so far have ended with the second class just getting this string before changing its value, resulting in no access to data. Checking the logs, everything is fine, the value changes, but unfortunately after getting the value. Thanks in advance for your help!
```
public class UserValid
{
String typeOfAcc = "Podopieczni";
FirebaseFirestore fStore;
FirebaseAuth fAuth;
DocumentReference documentReference;
List itemList = new ArrayList<>();
String userID;
public UserValid()
{
Log.d("TAG", "Błąd, wybrano konstruktor bez argumentów");
}
public UserValid(FirebaseAuth fAuth, FirebaseFirestore fStore)
{
userID = fAuth.getCurrentUser().getUid();
this.fAuth = fAuth;
this.fStore = fStore;
documentReference = fStore.collection("Podopieczni").document(userID);
readData(new FirestoreCallback()
{
@Override
public void onCallback(List<String> list)
{
if(itemList.get(0) == null)
{
typeOfAcc="Trenerzy";
Log.d("TAG", itemList.toString());
}
}
});
}
private void readData(FirestoreCallback firestoreCallback)
{
documentReference.get().addOnCompleteListener(new OnCompleteListener<DocumentSnapshot>() {
@Override
public void onComplete(@NonNull Task<DocumentSnapshot> task) {
if (task.isSuccessful())
{
String itemName = task.getResult().getString("Imie");
itemList.add(itemName);
firestoreCallback.onCallback(itemList);
}
}
});
}
private interface FirestoreCallback
{
void onCallback(List<String> list);
}
}
```
|
|
|
|
|
Member 15037009 wrote: ...I would now like to get the value of "typeOfAcc" from this class in a different class... If it's a peer class, can you store it in a preference? The "receiving" class can monitor any changes to the preference and only do something when it changes.
"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
|
|
|
|
|
<string>[{"UserId":"1","Usercode":"ADMIN","Password":"123"},
{"UserId":"2","Usercode":"Ravi","Password":"ravi"}]</string>
I have one question if I want to login with both user code and password which logic I should apply.
|
|
|
|
|
It depends what site/system you are logging in to. And in either case you should never store userids and passwords in clear text like that.
|
|
|
|
|
For a start UserID will not be available to the user so should be eliminated from that data set.
First check the user code exists, then check that the HASHED password matches the HASHED password stored in your database for that user code.
There are a number of articles on CP showing how to do password security properly.
Never underestimate the power of human stupidity -
RAH
I'm old. I know stuff - JSOP
|
|
|
|
|
HI I'm new in android and I don't know how to call .NET webservice using android application I have task to login functionality at the time of the login in android application the username and password fetch from .NET webservice if they both are right then going on dashboard else showing appropriate message to the user. I hope anyone help me with solution and source code thank you
|
|
|
|
|