• Ping Pong Room

20 days later

is there a way to route mobile data through a dns server on a android os

  • L-BLevel 4 - Platinum Member

    LG Exalt vs. LG Classic

    Which is better for its speed, battery life, user friendliness, built in apps (does one have a useful feature that the other is missing) overall quality etc. (not asking specifically about kosherability)

    It seems the exalt costs much more. Is there a good reason for that?

    PS I have the classic that I paid $20 for and I'm very happy with it

      L-B

      L-B It seems the exalt costs much more. Is there a good reason for that?

      [Login to see the link] or [Login to see the link]?

      The reason is that they are discontinued by the manufacturer, a lot of people want the UN220 because it has message+, and a lot of people want the UN220 because its GSM unlocked.

      L-B Which is better for its speed, battery life, user friendliness, built in apps (does one have a useful feature that the other is missing) overall quality etc. (not asking specifically about kosherability)

      I've used both the Classic and the UN220. The UN220 has a bigger screen, feels much more premium and is much smoother to type on. The only Con is the lack of an external screen.

      • L-B replied to this.
        a year later

        ChapsTheMatzav No unfortunately not at the moment. Maybe I will try to do it android possibly.

        8 days later
        • HHi1Level 3 - Gold Member

          • Edited

          Hi, I filterd the gallery from the Kyocera e4610 it shouldn't have video and when I wanna install it as a update to the regular system app it said that the signature doesn't match so anyone knows how to sign a app with the system signature.

          2 months later
          • HHi1Level 3 - Gold Member

            Did anybody hear from the ans flip phone and have details about it?

            FetehShmeel
            It's 4G but unless the software is updated to the most recent version (1.215AT) it won't properly pick up 4G signals, despite having the proper bands (at&t is great at being annoying...)

              • FlippyLevel 6 - Platinum Elite Member

                • Edited

                esaphire3 Where are you located? I know people with UN220 on Ultra, and they had ultra-poor reception...

                efshernisht Are you referring to the DuraXE E-4710 Or DuraXE Epic?

                  • FlippyLevel 6 - Platinum Elite Member

                    efshernisht I have software version 1.120AT and it says no new update available....

                      Flippy
                      According to at&t's website the newest version is 3.13AT. They have a list of 4G/5G eligible devices on their website, and this model is on there, but says that it will only work with the latest update. The only way to get it is if you have an active at&t SIM. If you do have at&t and it still won't update, just chat with them on their website and they can push the update to you. If you don't have at&t there doesn't seem to be any workaround... lmk if you have any luck please.

                        • FlippyLevel 6 - Platinum Elite Member

                          efshernisht OK thanks. I was trying via Wi-Fi. I did try for a few minutes with an AT&T SIM, and it did seem to work fine, but that was short term, so I dont know if AT&T would've shut it down after a while...

                            Flippy
                            I spent a while looking through at&t customer service discussion boards and it seems like everyone who was able to get the last update has had good service since then....

                              12 days later

                              efshernisht
                              I just got an AT&T prepaid sim (cost me $20) and after chatting with tech support they were able to push the most recent update to my phone. Seems to be working fine now (reception-wise).

                              18 days later
                              4 months later

                              I thought this was a useful tip that people would appreciate, but I didn't think it was worthy of its own thread.
                              If you have a bunch of APK files in a folder, and you want to find out the package name of all of them without having to open each of them, you can use this tip:

                              1. [Login to see the link] and put it in the folder of the APK files that you want to see the package names for.

                              2. In that folder, type cmd into the address bar to open command prompt to that location.

                              3. Run this command:
                                for /f "delims=" %i in ('dir /b /on *.apk') do for /f "tokens=2 delims=: " %j in ('aapt dump badging "%i" ^| findstr /r /c:"^package: name="') do echo %~ni %j >> output.txt

                              You should now have a text file called output.txt in that folder with the filenames followed by the package names.

                              Here's how the command works (taken apart by ChatGPT):

                              1. The for /f command is a loop that iterates over a set of items. In this case, it's used to iterate over the list of APK files in the current directory.
                              2. delims= specifies the delimiter to use when parsing the input. In this case, the delimiter is set to an empty string, which means that the entire line is used as the input.
                              3. %i and %j are variables used to store the current item in the loop.
                              4. dir /b /on *.apk lists all the APK files in the current directory, using the /b switch to output only the file names and the /on switch to sort the list by name.
                              5. aapt dump badging "%i" is a command that extracts information from an APK file. %i is replaced by the name of the current APK file in the loop.
                              6. ^| is used to escape the | character, which is a special character in the command prompt.
                              7. findstr /r /c:"^package: name=" searches for a line in the output of aapt that starts with "package: name=". The /r switch specifies that the search string should be treated as a regular expression.
                              8. tokens=2 delims=: " specifies that the second token (the package name) should be extracted from the output of findstr, using : and space as delimiters.
                              9. %~ni is used to extract the file name of the current APK file in the loop, without the file extension.
                              10. >> output.txt redirects the output of the command to a file called "output.txt", using the >> operator to append the output to the file.

                              Hope this is helpful!