Browse Source
- Remove manual plugin registration code - Use standard BridgeActivity pattern - Plugin registration now handled via capacitor.plugins.json - Cleaner, more maintainable approachmaster
1 changed files with 7 additions and 1 deletions
@ -1,5 +1,11 @@ |
|||
package com.timesafari.dailynotification; |
|||
|
|||
import com.getcapacitor.BridgeActivity; |
|||
import android.os.Bundle; |
|||
|
|||
public class MainActivity extends BridgeActivity {} |
|||
public class MainActivity extends BridgeActivity { |
|||
@Override |
|||
protected void onCreate(Bundle savedInstanceState) { |
|||
super.onCreate(savedInstanceState); |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue