Hi to everyone!
Cound anyone helpme with the configuration of firebase-analytics with @capacitor-community/firebase-analytics? specifically with the file
public class MainActivity extends BridgeActivity {
@Override
public void onCreate(package saveInstanceState) {
super.onCreate(savedInstanceState);
// Initialize the bridge
this.init(savedInstanceState, new ArrayList<Class<? extends plugin>>() {{
// Any additional plugins you have installed go here
add(FirebaseAnalytics.class);
}});
}
}
where I have the following error in this.init() “‘init()’ has private access in ‘androidx.fragment.app.FragmentActivity’” any advice please! Thank you so muc