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

Forest of Change - Build Productive Lifestyle

In a crucial time like this pandemic storm, you might feel a lack of productivity, fall into depression, or get bored easily. You may need to add some new activities into your life to stay motivated and productive.

Forest of Change app brings you the opportunity to do new, little things every day to make you happier and more spontaneous. This is a place where you can build your resilience, gain knowledge, and know the purpose of your life.

Discover new places, hobbies, and people, along with tracking your progress over time with the help of our new things app. There are hundreds of tasks to complete that will completely transform your life for the better.

There are cards to swipe. When you have no things to do, you can swipe the cards for new, crazy, and humorous ideas. It is time to keep you motivated with personal development by joyful and fun activities.

What does the app offer?

The app offers you a lot of free ideas. You will get suggestions in many aspects of life such as productivity, motivation, drawing, crafting, exercising, creativity, healthy eating, habit loop, socializing, and many more.

You can complete random tasks in a fun way to gain confidence and rejuvenate your energy. New activities will help you overcome various obstacles and life pitfalls. You will learn to balance your negative emotions using this app, and ultimately become more passionate about life.

The vast and mysterious forest in the app brings you many adventures. You can collect exotic fruits and odd flowers as rewards after completing tasks. You can trace the hidden monsters and save the forest from the dark force.

The app helps you break your old habit loops. It shows you a new direction in life. If you think about what to do when you are bored, it offers you to change your lifestyle and way of thinking. You start to eat healthily, unleash your creative side, be more passionate about your hobbies, expand your knowledge, and craft your world.

You can even play with your kids so that they don’t get the chance to think “what to do with my life”. Get everyone’s life sorted with the help of this task app. Explore new spots and make travel plans for a change.

Key features of this lifestyle app:

# More than 20 decks and over 1000 cards offer you creative ideas, random tasks, motivational rants, and more.

# The reflection page for each of your actions lets you track your progress to understand how you achieve things in life.

# The mystic forest lets you become an adventurer. Fight the dark force to save the forest, find your treasure chest, and explore your life.

# After overcoming life challenges, get the reward scheme with nearly hundreds of exotic fruits, odd flowers, and crazy monsters.

# Share personalized achievements with your beloved, family, and friends.

Task list offers you a massive number of tasks that you can complete to renew your life. Free time activities will help you enjoy life in a new and exuberant way.

Install the app for free and start shuffling your life. In-app purchases are also available, you can always do more of it.

Screenshots:

https://imgur.com/a/4BJMXin
https://imgur.com/a/30sBsHy


Google Play: https://play.google.com/store/apps/details?id=com.unbound.forestofchange
App Store: https://apps.apple.com/vn/app/forest-of-change/id1535834679


ADDITIONAL INFORMATION

Current Version: 1.0.1 (Android)
Requires Android: 5.0 and up
Content Rating: Rated for 3+ (for Android)

Requires iOS 10.0 or later. Compatible with iPhone, iPad and iPod touch.
Age Rating 12+ (for IOS)

Lock screen question

My son has a moto g power running android 10. We had to put some parental controls in place for several reasons. We restricted what he could put on his device.
Some of the apps that were restricted are showing up in the app list in settings but not in the app drawer.
When we first got the phone, the lock screen was normal. Now it has several clocks overlayed.
I'm thinking that he's found a way around the restrictions. Before I make an accusation though, I would like to make sure that I'm correct.
Attached is a picture of the lock screen.
Is this just a glitch or is there something else going here?
Thanks in advance for any help that can be given.
Hope you all have a merry Christmas and happy New Year.

Attachments

  • lockscreen.jpg
    lockscreen.jpg
    88 KB · Views: 265

Helpppp

My phone is hacked and I need to delete the apps and files that are harmful.
there is nothing harmful in your pictures that i can see. if you would explain your situation in more detail, we can help you better. just by going from the photos, you are stressing for no reason.

like the others have said 9 times out of 10 people who claimed are hacked have not been in reality. it is mostly due to misunderstanding on how android works with a little bit of paranoia mixed in.

Apps Can't seem to make Android foreground service run all the time

Hello!

I've had a big issue with the service running on my Android app. The app is connected to a websocket, which at certain events will send data to the users. If the app is not actively listening, it will lose data.

For the above reason, I created a foreground service. However, it seems to be very unstable. As long as I have the power cord connected, it runs just fine, but as soon as I unplug it, it starts to (what I belive) pause the service.

I have added the service in AndroidManifest:

<service android:name=".QtAndroidService" android:stopWithTask="true">
<!-- Background running -->
<meta-data android:name="android.app.background_running" android:value="true"/>
<!-- Background running -->
</service>

It is created within the application, in parallel with the activity. The service extension looks like this:

public void onCreate() {
super.onCreate();
Log.i(TAG, "Creating Service");
}

@override
public void onDestroy() {
super.onDestroy();
Log.i(TAG, "Destroying Service");
}

@override
public int onStartCommand(Intent intent, int flags, int startId) {
NotificationChannel serviceChannel = new NotificationChannel(
CHANNEL_ID,
"Example Service Channel",
NotificationManager.IMPORTANCE_NONE
);

serviceChannel.setShowBadge(false);

NotificationManager manager = getSystemService(NotificationManager.class);
manager.createNotificationChannel(serviceChannel);

Intent notificationIntent = new Intent(this, org.qtproject.qt5.android.bindings.QtActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID)
.setContentTitle("Stryket")
.setSmallIcon(R.drawable.icon)
.setContentIntent(pendingIntent)
.build();
startForeground(1, notification);

PowerManager powerManager = (PowerManager) getSystemService(POWER_SERVICE);
WakeLock wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
"MyApp::MyWakelockTag");

wakeLock.acquire();

Timer timer = new Timer();

TimerTask t = new TimerTask() {
@override
public void run() {
DO_SOME_STUFF_WHILE_SERVICE_IS_RUNNING_FOREVER();
}
};
timer.scheduleAtFixedRate(t,0,10000);

return START_REDELIVER_INTENT;
}

@override
public IBinder onBind(Intent intent) {
return null;
}

I also added a wake lock of pure desperation. That does not solve the issue either....

I'm not sure I've done everything according to what a foreground service requires, but I do get the foreground service notification showing.

What am I missing getting this service to run forever?

TTS KEYBOARD ENTRY

I have lost my voice so I use two different TTS Apps, on my Android phone, to type a message and play it back.
I have a mini keyboard that makes it much easier to type the messages, however I can not use the the Keyboard to activate the 'play speech' feature of each App.
This a real pain because i have to go to my phone and Tap the icon to play the message.

Is there a way to use the keyboard, i.e. a combination of keys, or can I somehow program the keyboard to be able to activate the 'play speech' feature in the Apps on my phone?
Thanks,
Jack
what keyboard app are you using? maybe try a different tts keyboard that might have a better option for you.

Filter

Back
Top Bottom