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

Help Use phone as modem

I would like to use my phone as a modem.
I have a draytek 2926 router that can accept an external USB modem. I tried with a USB modem stick a friend lent me and it worked fine.
So I tried to conned my Redmi Note 8T without success. I switched on the USB tethering but it doesn't work.
I am not an expert so I cannot understand if it Is a matter of configuration or router and phone are not compatible.
Someone can help me?

Joystick [Free][Games]

Joystick [Free][Games]
There are games within the app (Currently One , more will be added). The game has tokens, to play the game you need tokens. In the games you will collect the diamonds, with diamonds you can buy real prizes from the store in the app. Prizes are ship directly to the user’s Home. In addition there is also a weekly leaderboard, the first place each week win prizes.
The leaders each week win prizes
- Earn diamonds and take prizes
- Each period of time a new game will be add
Download to Google Play: Joystick

-YBkTqYh34Exz8Crk-SJ6Fb5gDFFYT2jz_Nz3tTyCIrItMrDX2w6AlUox189xMzST6o=w2504-h1200
FKA1vBJ_QfwEDRJtsPmcWNJflITInLewn1TzaXFkXRx51VmnLjvyCrU_3zwC4CR0sgY=w2504-h1200

How to set screen time temporarily without an app?

I want to set my screen out time to be 30 minutes say.
But I only want this temporarily.
Is there a way (quick and easy) to do this through settings?
The current 2 phones I am using both have Android 10.
(Or 1 might have Android 9 with MIUI 12)

Else... if I must have an app... can someone recommend something very light weight that does the job.
I don't need a 50MB app for the job that also needs access to my contacts or something!

Thanks.

How to Download GIF from GIPHY

You can now easily save GIF files from GIPHY on to your computer. However, some of the sites don’t allow you to download GIF files from their site but there's a workaround on how to download GIF from Giphy so I am giving to tell you how you can download or save GIF files with GIF format.


Follow the instruction below to download it in .gif format -
  1. Go to the GIPHY and search for your GIF you would like to download
  2. Right-click on the GIF file
  3. Select “Open image in new tab.”
  4. Now the URL of the GIF file will be something like this - “https //media1 giphy com/media/LHZyixOnHwDDy/giphy .gif”
  5. Now the only thing you have to do download gif from giphy or save gifs from giphy is to change media1.giphy.com to i.giphy.com.
  6. Now, the URL will look like this - “https //i giphy com/media/LHZyixOnHwDDy/giphy .gif”
  7. Open the above link, and finally right-click on your gif and click on download or save the image
  8. That's it...
Follow these steps to download gif easily.

Samsung Z-Flip doesn't connect to MobileTrand/Dr.Fone

I got the Z-Flip in March and at that time I was able to transfer WhatsApp, SMS, contacts etc. from my iPhone Xs to the Z-Flip, using Dr. Fone. I haven't used the Z-Flip since then because there was no belt holster available and I kept on using the iPhone. Meanwhile I was able to find a belt holster which arrived 2 weeks ago and so I decided to update the data on the Z-Flip. There was also an Android-update. However, since these updates, Dr. Fone doesn't connect to the Z-Flip anymore. It recognizes it but the bar gets stuck at approx 75%. The same thing happens when I use MobileTrans (which I think is the same program just different design).
Once or twice I read the note on the phone "connector app needs to be updated" but when I clicked on "update", nothing happened.
Does anyone had/have the same issue and -most important- a solution for the problem ?
Thank you




#1

Voice to text ?

I have a part time job scanning bar codes and entering prices with the company app. After scan, the cursor automatically goes to the price input area. Is there an app that would allow me to say the price and have it entered instead of having to manually type every price? On the scans i have to manually enter, it takes 3x's as long as when I don't.

Problem retrieving GPS location

I have an app with 3 activities. MainActivity is the initial screen that is shown to the user. SecondActivity is an activity that allows a user to scan a QR code. After the code is scanned, ThirdActivity is started.

That ThirdActivity shows the GPS location so that I can use it later in the app.

To deal with the location, I have created this helper class:

public class LocationHelper {
private static GeoLocation mLocation;

private static LocationRequest mLocationRequest;

private static long UPDATE_INTERVAL = 10 * 1000; /* 10 secs */
private static long FASTEST_INTERVAL = 2000; /* 2 sec */

public static void start(Context context)
{
startLocationUpdates(context);
getLastLocation(context);
}

@SuppressLint("MissingPermission")
protected static void startLocationUpdates(Context context) {

// Create the location request to start receiving updates
mLocationRequest = new LocationRequest();
mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
mLocationRequest.setInterval(UPDATE_INTERVAL);
mLocationRequest.setFastestInterval(FASTEST_INTERVAL);

// Create LocationSettingsRequest object using location request
LocationSettingsRequest.Builder builder = new LocationSettingsRequest.Builder();
builder.addLocationRequest(mLocationRequest);
LocationSettingsRequest locationSettingsRequest = builder.build();

// Check whether location settings are satisfied
// https://developers.google.com/android/reference/com/google/android/gms/location/SettingsClient
SettingsClient settingsClient = LocationServices.getSettingsClient(context);
settingsClient.checkLocationSettings(locationSettingsRequest);

// new Google API SDK v11 uses getFusedLocationProviderClient(this)
getFusedLocationProviderClient(context).requestLocationUpdates(mLocationRequest, new LocationCallback() {
@override
public void onLocationResult(LocationResult locationResult) {
// do work here
onLocationChanged(locationResult.getLastLocation());
}
},
Looper.myLooper());
}

public static GeoLocation getLocation() {
return mLocation == null ? new GeoLocation() : mLocation;
}

protected static void onLocationChanged(Location location) {
if (mLocation == null)
mLocation = new GeoLocation();

mLocation.setLatitud(location.getLatitude());
mLocation.setLongitud(location.getLongitude());
}

@SuppressLint("MissingPermission")
protected static void getLastLocation(Context context) {
// Get last known recent location using new Google Play Services SDK (v11+)
FusedLocationProviderClient locationClient = getFusedLocationProviderClient(context);

locationClient.getLastLocation()
.addOnSuccessListener(location -> {
// GPS location can be null if GPS is switched off
if (location != null) {
onLocationChanged(location);
}
})
.addOnFailureListener(e -> {
Log.d("LocationHelper", "Error trying to get last GPS location");
e.printStackTrace();
});
}
}

In MainActivity onCreate method I am calling `LocationHelper.start(this);` so that location starts to be getting.

In ThirdActivity onCreate method I cam calling `GeoLocation location = LocationHelper.getLocation();`.

The problem is that on some execution, `getLocation` retrieves the location correctly, but on other execution, `getLocation` sets longitude and latitude both to 0.

What is the problem with my code?

[FREE][NO ADS][GAME] Elly and the Ruby Atlas | ASSIST Software

x47s5Zb.jpg

Elly and the Ruby Atlas
is a FREE OFFLINE adventure RPG game that puts you in the shoes of an explorer from the age of pirates. You play as Elly, the young captain of a carrack, who must trade and fight in order to bring a vile pirate to justice and recover a precious family heirloom. Travel to dozens of towns, trade valuable goods and resources, defeat enemies, upgrade and customize your ship and equipment! The world is yours to discover!

◆ Brave, determined, and with a sharp mind, Elly is ready to fight and bring justice back! Find unique blueprints for items, craft epic weapons and armor, equip and use them against your enemies.

◆ Take good care of your ship so that you can travel the seas and withstand hazardous weather and raids. Recruit crew, upgrade, customize and increase its cargo capacity to maximize your trading profits. Not to mention, it's your home for inventory and crafting.

The enemies you will encounter have two major factions: pirates and colonists. Enemy type influences behavior and fighting style. Also, enemy bosses will be armored, so you're going to need to break armor pieces with combo attacks.

Trade is the most efficient and rewarding way of getting your hands on some gold. Each of the 20+ towns have their own economy that produces or consumes certain goods and they follow the supply and demand logic. There are 10 goods that can be traded and all you need to do is buy low and sell high.

This is a tribute to times when games were single player focused and did not feature shady micro-transactions systems. It draws inspiration from classics like the Port Royale series and lots of other side-scrolling titles. Even though it can get difficult at times, Elly and the Ruby Atlas is designed to be an exploring fantasy, you are the captain of a sail ship from an age long-gone. Trade, fight, sail and discover a world that was created with love and long hours of hard work.

Internal Storage Issue

Hi, just bought what I thought was a S20 from an Internet site and although it seams to work OK, there seems to be an issue with the internal storage. The phone is supposed to have 256Gb internal storage but I run out of space after about 12Gb! Everything reports OK before the 12Gb, with the device saying I have something like 240Gb free but just by adding another few GB the device reports the whole of the 256Gb has been used up,

Is there any way to fix this or has the memory been tampered with?

Anyone explain this info?

Back with another one. Possible and hopefully a quick resolution to this question. Was resetting items in Brave browser and found this in site setting.https://[*]firebaseapp.com and I have No idea what, where, who or when I ran into it. Using Qwant engine in Brave browser to search for it. Absolutely nothing. Finally using gigablast search found stuff about firebase apps. But Nothing remotely close for this. So Anyone,Any Idea????

Blooming Flowers : Merge Flowers : Idle Game (by Urmobi)

Merge flowers to move forward and earn more coins! Blooming Flowers is an addicting merge idle game! Blooming Flowers combines classic mechanics and features of merge games, and also complements the usual gameplay with the best solutions and features typical for idle and merge games. This game will allow you to spend hours collecting flowers and discover new things!

Amazing gaming experience!


Merge and Combine - merge flowers of the same level to unlock new ones and increase your profits!
EARN - earn coins while your flowers are growing in the garden, even if you are offline! Use coins to buy new flowers!
DISCOVER - unlock new awesome flowers with each level!
RELAX - this game sets itself apart from others with its adaptive, simple and meditative gameplay!

Other features:

80 unique flowers!
Incredible boosters - from coin multipliers to time rewind!
Double your offline earnings every time you play! A real idle game.

Enjoy the gameplay, relax and earn coins by merging the same flowers and discover new ones.
Unite, discover, earn coins and become the best florist among others!










Price:Free

Download link:
https://play.google.com/store/apps/details?id=com.urmobi.BloomingFlowers

Unofficial client for Mailtrap

Unofficial%2Bclient%2Bfor%2BMailtrap-feature-graphic.png

IMPORTANT: This is a 3d party non-official plugin
Mailtrap is a Trademark of Railsware Products, Inc.

Unofficial client for Mailtrap is a simple application that helps you manage your inbox at Mailtrap.io

Unofficial client for Mailtrap is completely free, fully customizable and be updated based on users feedback

Advantages:
• No advertising
• Without asking for more access rights, your privacy is always respected.

Features:
• Manage multiple api key

Notes:
We always believe and hope in you and everyone.
So we always try to create better and free apps.

We also listen to you, please send us feedback at any time.
Fanpage: https://www.facebook.com/unofficial.client.for.mailtrap.io
Email: admin@hamatim.com

You can get it APK 1.0 from:
Google Drive: https://drive.google.com/file/d/1LxwT2-bjuAm7l7bRf7kYfciRrTM7O2Dc/view?usp=sharing
Amazon Appstore: https://www.amazon.com/gp/product/B08H5RZP3C
Huawei AppGallery: https://appgallery5.huawei.com/#/app/C102825043

Or from thread/blog:
Daynhauhoc: https://daynhauhoc.com/t/client-cho-mailtrap-io-v1-0/107645
XDA: https://forum.xda-developers.com/android/apps-games/unofficial-client-mailtrap-t4157599
AndroidForum: https://androidforums.com/threads/unofficial-client-for-mailtrap.1327896/
Blog: https://03794577.blogspot.com/2020/09/unofficial-client-for-mailtrap.html

Attachments

Fisherman Larry: Awesome Idle Fishing. Catch fish. (by Urmobi)

Love the thrill of catching fish?
Do you like to catch fish earn money games?
Well, you love our catching fish Larry: Fishing Quest – Idle Fishing Game. Larry is a fisherman just like anyone. He wants to catch as many fish in his free time and sell it for money so he can bring more to his family. Help him by controlling his hook and catch as many fish as possible!

GET THEM HOOKED
Throw your hook underwater and see the fish moving around. Move the hook precisely and catch as many fish as possible. All the fish you catch can be sold for money that goes into your pocket. But there is more than that!

MUSEUM & ACHIEVEMENTS
As one of the best fishing games for free, Larry: Fishing Quest adds a competitive spirit to your fishing quest. Namely as you progress and collect money, you can also complete the numerous achievements in the game. Additionally, as you progress and grow, there will be different species of fish. The bigger and more unique ones are hard to collect, but when you do, you can display them in the fish museum and show your catches to your friends and family.

WHY LARRY FISHING QUEST?
- fun fishing break & fishing simulation
- great for all ages (especially as fishing games for kids and adults)
- catch fish earn money & grow your skills and equipment
- achievements
- fish museum
- HD graphics & fun soundtrack

You will rarely find a more laidback & fun fishing game than this one.
Embrace the joy of catching fish and have fun!
Download Larry: Fishing Quest – Catch Fish For Money for free


Price:Free
Download link: https://play.google.com/store/apps/details?id=co.urmobi.casual.larrysfishing

Filter

Back
Top Bottom