Loading app/src/main/java/net/sourceforge/opencamera/MyTileService.java +13 −1 Original line number Diff line number Diff line package net.sourceforge.opencamera; import android.app.PendingIntent; import android.content.Intent; import android.os.Build; import android.service.quicksettings.TileService; Loading Loading @@ -46,6 +47,17 @@ public class MyTileService extends TileService { Intent intent = new Intent(this, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.setAction(TILE_ID); startActivityAndCollapse(intent); // use this instead of startActivity() so that the notification panel doesn't remain pulled down // use startActivityAndCollapse() instead of startActivity() so that the notification panel doesn't remain pulled down if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE ) { // startActivityAndCollapse(Intent) throws UnsupportedOperationException on Android 14+ // FLAG_IMMUTABLE needed for PendingIntents on Android 12+ PendingIntent pending_intent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_IMMUTABLE); startActivityAndCollapse(pending_intent); } else { // still get warning for startActivityAndCollapse being deprecated, but startActivityAndCollapse(PendingIntent) requires Android 14+ // and only seems possible to disable the warning for the function, not this statement startActivityAndCollapse(intent); } } } app/src/main/java/net/sourceforge/opencamera/MyTileServiceFrontCamera.java +13 −1 Original line number Diff line number Diff line package net.sourceforge.opencamera; import android.app.PendingIntent; import android.content.Intent; import android.os.Build; import android.service.quicksettings.TileService; Loading Loading @@ -46,6 +47,17 @@ public class MyTileServiceFrontCamera extends TileService { Intent intent = new Intent(this, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.setAction(TILE_ID); startActivityAndCollapse(intent); // use this instead of startActivity() so that the notification panel doesn't remain pulled down // use startActivityAndCollapse() instead of startActivity() so that the notification panel doesn't remain pulled down if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE ) { // startActivityAndCollapse(Intent) throws UnsupportedOperationException on Android 14+ // FLAG_IMMUTABLE needed for PendingIntents on Android 12+ PendingIntent pending_intent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_IMMUTABLE); startActivityAndCollapse(pending_intent); } else { // still get warning for startActivityAndCollapse being deprecated, but startActivityAndCollapse(PendingIntent) requires Android 14+ // and only seems possible to disable the warning for the function, not this statement startActivityAndCollapse(intent); } } } app/src/main/java/net/sourceforge/opencamera/MyTileServiceVideo.java +13 −1 Original line number Diff line number Diff line package net.sourceforge.opencamera; import android.app.PendingIntent; import android.content.Intent; import android.os.Build; import android.service.quicksettings.TileService; Loading Loading @@ -46,6 +47,17 @@ public class MyTileServiceVideo extends TileService { Intent intent = new Intent(this, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.setAction(TILE_ID); startActivityAndCollapse(intent); // use this instead of startActivity() so that the notification panel doesn't remain pulled down // use startActivityAndCollapse() instead of startActivity() so that the notification panel doesn't remain pulled down if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE ) { // startActivityAndCollapse(Intent) throws UnsupportedOperationException on Android 14+ // FLAG_IMMUTABLE needed for PendingIntents on Android 12+ PendingIntent pending_intent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_IMMUTABLE); startActivityAndCollapse(pending_intent); } else { // still get warning for startActivityAndCollapse being deprecated, but startActivityAndCollapse(PendingIntent) requires Android 14+ // and only seems possible to disable the warning for the function, not this statement startActivityAndCollapse(intent); } } } Loading
app/src/main/java/net/sourceforge/opencamera/MyTileService.java +13 −1 Original line number Diff line number Diff line package net.sourceforge.opencamera; import android.app.PendingIntent; import android.content.Intent; import android.os.Build; import android.service.quicksettings.TileService; Loading Loading @@ -46,6 +47,17 @@ public class MyTileService extends TileService { Intent intent = new Intent(this, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.setAction(TILE_ID); startActivityAndCollapse(intent); // use this instead of startActivity() so that the notification panel doesn't remain pulled down // use startActivityAndCollapse() instead of startActivity() so that the notification panel doesn't remain pulled down if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE ) { // startActivityAndCollapse(Intent) throws UnsupportedOperationException on Android 14+ // FLAG_IMMUTABLE needed for PendingIntents on Android 12+ PendingIntent pending_intent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_IMMUTABLE); startActivityAndCollapse(pending_intent); } else { // still get warning for startActivityAndCollapse being deprecated, but startActivityAndCollapse(PendingIntent) requires Android 14+ // and only seems possible to disable the warning for the function, not this statement startActivityAndCollapse(intent); } } }
app/src/main/java/net/sourceforge/opencamera/MyTileServiceFrontCamera.java +13 −1 Original line number Diff line number Diff line package net.sourceforge.opencamera; import android.app.PendingIntent; import android.content.Intent; import android.os.Build; import android.service.quicksettings.TileService; Loading Loading @@ -46,6 +47,17 @@ public class MyTileServiceFrontCamera extends TileService { Intent intent = new Intent(this, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.setAction(TILE_ID); startActivityAndCollapse(intent); // use this instead of startActivity() so that the notification panel doesn't remain pulled down // use startActivityAndCollapse() instead of startActivity() so that the notification panel doesn't remain pulled down if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE ) { // startActivityAndCollapse(Intent) throws UnsupportedOperationException on Android 14+ // FLAG_IMMUTABLE needed for PendingIntents on Android 12+ PendingIntent pending_intent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_IMMUTABLE); startActivityAndCollapse(pending_intent); } else { // still get warning for startActivityAndCollapse being deprecated, but startActivityAndCollapse(PendingIntent) requires Android 14+ // and only seems possible to disable the warning for the function, not this statement startActivityAndCollapse(intent); } } }
app/src/main/java/net/sourceforge/opencamera/MyTileServiceVideo.java +13 −1 Original line number Diff line number Diff line package net.sourceforge.opencamera; import android.app.PendingIntent; import android.content.Intent; import android.os.Build; import android.service.quicksettings.TileService; Loading Loading @@ -46,6 +47,17 @@ public class MyTileServiceVideo extends TileService { Intent intent = new Intent(this, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.setAction(TILE_ID); startActivityAndCollapse(intent); // use this instead of startActivity() so that the notification panel doesn't remain pulled down // use startActivityAndCollapse() instead of startActivity() so that the notification panel doesn't remain pulled down if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE ) { // startActivityAndCollapse(Intent) throws UnsupportedOperationException on Android 14+ // FLAG_IMMUTABLE needed for PendingIntents on Android 12+ PendingIntent pending_intent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_IMMUTABLE); startActivityAndCollapse(pending_intent); } else { // still get warning for startActivityAndCollapse being deprecated, but startActivityAndCollapse(PendingIntent) requires Android 14+ // and only seems possible to disable the warning for the function, not this statement startActivityAndCollapse(intent); } } }