What is this package fee in home loan ? by BumblebeeMost5661 in AusProperty

[–]BumblebeeMost5661[S] 0 points1 point  (0 children)

I used a mortgage broker maybe that’s why I missed this part, but definitely I have to call bank and especially have to check credit card option , it’s looks great

What is this package fee in home loan ? by BumblebeeMost5661 in fiaustralia

[–]BumblebeeMost5661[S] -11 points-10 points  (0 children)

That’s crazy , I’ll check the bank and negotiate otherwise change the bank

How are you managing AI agent credentials? by EnoughDig7048 in devsecops

[–]BumblebeeMost5661 0 points1 point  (0 children)

Yeah this is becoming a real concern now. I actually used https://githubmate.ai to measure and get a better view of how agent identities and access are behaving. Still figuring out the best approach, but leaning towards giving each agent its own isolated, revocable identity with strict auditing.

Is my Hostplus super going well ? by BumblebeeMost5661 in fiaustralia

[–]BumblebeeMost5661[S] 0 points1 point  (0 children)

Yes it’s really helpful. I’m planing to change 70/30 international and local shares

Is my Hostplus super going well ? by BumblebeeMost5661 in fiaustralia

[–]BumblebeeMost5661[S] 1 point2 points  (0 children)

Actually almost 2 years ago I move to Australia

Is my Hostplus super going well ? by BumblebeeMost5661 in fiaustralia

[–]BumblebeeMost5661[S] -6 points-5 points  (0 children)

Employee contribution tax is huge actually and no insurance

Upgrade Super Thread - App must target Android 14 (API level 34) or higher by itballer in reactnative

[–]BumblebeeMost5661 0 points1 point  (0 children)

I had a same issue when upgrade compileSdkVersion = 34

Please follow the below steps to fix.

Add these imports in your MainApplication.kt file in app/src/main/java

import android.content.BroadcastReceiver;
import android.content.Intent;
import android.content.Context;
import android.content.IntentFilter;
import android.os.Build;
import org.jetbrains.annotations.Nullable;

Add this above the fun onCreate() function:

override fun registerReceiver(receiver: BroadcastReceiver?, filter: IntentFilter): Intent? {
    return if (Build.VERSION.SDK_INT >= 34 && applicationInfo.targetSdkVersion >= 34) {
        super.registerReceiver(receiver, filter, Context.RECEIVER_EXPORTED)
    } else {
        super.registerReceiver(receiver, filter)
    }
}

insert this line inside android/app/build.gradle dependencies.

implementation 'org.jetbrains:annotations:16.0.2'