This repository was archived by the owner on Feb 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/org/yggdrasil/app/crispa Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ dependencies {
9090 implementation ' com.vincentbrison.openlibraries.android:dualcache:3.1.1'
9191 implementation ' com.vincentbrison.openlibraries.android:dualcache-jsonserializer:3.1.1'
9292 implementation ' com.android.support:multidex:1.0.3'
93- implementation ' androidx.work:work-runtime:2.8.0-alpha02 '
93+ implementation ' androidx.work:work-runtime-ktx :2.7.1 '
9494
9595 testImplementation ' junit:junit:4.13.2'
9696 androidTestImplementation ' androidx.test:runner:1.4.0'
Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ class YggdrasilTunService : VpnService() {
283283 intent.putExtra(IS_VPN_SERVICE_STOPPED , isClosed);
284284 var stackBuilder = TaskStackBuilder .create(this )
285285 stackBuilder.addNextIntentWithParentStack(intent)
286- var pi = stackBuilder.getPendingIntent(0 , PendingIntent .FLAG_UPDATE_CURRENT )
286+ var pi = stackBuilder.getPendingIntent(0 , PendingIntent .FLAG_IMMUTABLE or PendingIntent . FLAG_UPDATE_CURRENT )
287287 val b = NotificationCompat .Builder (this , channelId)
288288 b.setOngoing(true )
289289 .setContentIntent(pi)
You can’t perform that action at this time.
0 commit comments