• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

App for hanging off Whatsapp after a selected time of a Videcall

Howdy. English is not my main language, but I'll give it a try.
I'm looking for an app that could be used to hang off a videocall while using whatsapp.

The use of this app would be to have a video call, and it would end automatically after a lapse of time I previously have selected (cause I fall asleep), so my phone won't dicharge because of the videocall, but stays turned on for the alarms to work.

Thanks : )

Trying to put NoRoot Firewall apk on sd

The only reason I was using a Chromebook at the library was to install NoRoot Firewall on the sd card. Somebody else got it out of the old phone (barely) and I put it in an adapter and thence to the slot in the computer. I clicked or tapped or whatever on it to make sure it was the real deal, and that's when I got the message about how it could not be opened by anything the laptop had. I guess it'll still work in a new phone though. I hope to have one later today. The old one is that Moto G Stylus that is still apparently stuck in fastboot and I don't even know how that happened. Another mystery is how it still has the energy to show that when it has not been plugged in for more than a month.

Can I Keep Ringer Working Overnight?

I need a way to let phone calls ring any time, without any other notifications doing so.
I have the option of allowing phone calls to go through, even the option of limiting them to my contacts, while silencing all other alerts. I leave it off, so I haven't played with it, but it also appears I can exempt certain apps from the DND as well.
upload_2021-8-12_6-7-58.png

Help what app notification is this?

Try going to the Settings >> Apps menu on your device and look through the listing of installed apps. Do you have an app installed that refers to 'Sara' in some way? If not look through the entire list to see if anything is similar. Notification icons typically have some kind of similarity or reference to their app.


As an aside,
SaraMart's Play Store page show different icon's and such than what the OP posted.

How to use sessions between my Android app and my Java webapp?

Hello everyone,
I'm developing an Android app for my website. It relies heavily on Get requests and Put requests (of course, it includes authentification). I read that android applications don't support sessions as browsers do.
Right now, the servlet I made can deliver content to my application and I use shared preferences to ensure if the user is logged in or not.
But from the server point of view, anyone can access those data if they specify the right parameter (e,g Postman) since HttpSession session = request.getSession(false) ; doesn't work.
If you have any idea how to solve this problem so I can secure my data, please feel free to share it with me!
Thank you

Apps SOAP with Java: Server did not recognize the value of HTTP Header SOAPAction

Java:
 EditText yoneticieposta, yoneticiparola;
    Button yoneticiDGiris;
    String Eposta, Parola, ReturnResult;

    /*Web Service*/
    public static String URL="https://com/MCG-WS.asmx?WSDL";
    public static String NAMESPACE="https://com";

    /*Login API*/
    public static String SOAP_ACTION_LOGIN="https://com/LoginAPI";
    public static String METHOD_NAME_LOGIN="LoginAPI";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.ylogin);


        yoneticieposta = (EditText) findViewById(R.id.yoneticiepostaTx);
        yoneticiparola = (EditText) findViewById(R.id.yoneticiparolaTx);
        yoneticiDGiris = (Button) findViewById(R.id.yoneticiDGirisYapBt);
        yoneticiDGiris.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Eposta = yoneticieposta.getText().toString();
                Parola = yoneticiparola.getText().toString();

                if(Eposta.isEmpty() || Parola.isEmpty()){
                    Toast.makeText(YLogin.this, "E-posta veya parola kısımlarını doldurun.", Toast.LENGTH_SHORT).show();
                }else{
                    new LoginAsyncTask().execute(Eposta, Parola);
                }
            }
        });
    }

    private class LoginAsyncTask extends AsyncTask<String, Void, String> {
        @Override
        protected void onPreExecute() {
            super.onPreExecute();
        }

        @Override
        protected String doInBackground(String... strings){

            SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME_LOGIN);

            PropertyInfo infoEposta = new PropertyInfo();
            infoEposta.setName("eposta");
            infoEposta.setType(String.class);
            infoEposta.setValue(strings[0].toString());
            request.addProperty(infoEposta);

            PropertyInfo infoParola = new PropertyInfo();
            infoParola.setName("parola");
            infoParola.setType(String.class);
            infoParola.setValue(strings[1].toString());
            request.addProperty(infoParola);

            SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);

            envelope.dotNet =true;
            envelope.setOutputSoapObject(request);

            HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

            try {
                androidHttpTransport.call(SOAP_ACTION_LOGIN, envelope);

                SoapFault error = (SoapFault)envelope.bodyIn;
                System.out.println("TTTTTTTTTTTTTT Error message : "+error.toString());

                SoapObject result = (SoapObject)envelope.bodyIn;

                if(result!=null){
                    ReturnResult = result.getProperty(0).toString();
                }

            }
            catch(Exception e){
                e.printStackTrace();
                return e.toString();
            }

            return ReturnResult;
        }

        @Override
        protected void onPostExecute(String result) {

            if(result.equals("başarılı")){
                Intent intent = new Intent(YLogin.this, dashboard.class);
                intent.putExtra("yoneticiEposta", Eposta);
                startActivity(intent);
            }else{
                Toast.makeText(YLogin.this, "E-posta veya parolanız yanlış, tekrar deneyin.", Toast.LENGTH_SHORT).show();
            }
        }
    }

Error message : SoapFault - faultcode: 'soap:Client' faultstring: 'Server did not recognize the value of HTTP Header SOAPAction: .' faultactor: 'null' detail: org.kxml2.kdom.Node@ab2eee9

System.err: java.lang.ClassCastException: org.ksoap2.SoapFault cannot be cast to org.ksoap2.serialization.SoapObject at com.medcongozetim.app.YLogin$LoginAsyncTask.doInBackground(YLogin.java:92)

Help Is there an app with this icon for notifications?

There are a vast number of butterfly-themed apps in the Play Store (try searching for "butterfly" in there and you'll see). I imagine that many of them can produce notifications. Sadly that means that you will be very lucky if anyone can recognise this particular icon: as is often the case, if you really want to know the simplest way would be to ask the person whose phone you saw it on (these questions usually concern icons on someone else's phone, so I'm assuming that yours does too).

Filter

Back
Top Bottom