diff --git a/app/app.iml b/app/app.iml index 3e58a99..8fb1837 100644 --- a/app/app.iml +++ b/app/app.iml @@ -120,20 +120,20 @@ - + - + diff --git a/app/build.gradle b/app/build.gradle index ebd1e75..981c934 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -41,7 +41,7 @@ android { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.appcompat:appcompat:1.0.2' - implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2' + implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3' implementation 'com.google.android.material:material:1.1.0-alpha02' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.vectordrawable:vectordrawable:1.0.1' @@ -56,5 +56,5 @@ dependencies { implementation 'com.bugsnag:bugsnag-android:4.9.3' testImplementation 'junit:junit:4.12' - androidTestImplementation 'androidx.test:runner:1.1.0' + androidTestImplementation 'androidx.test:runner:1.1.1' } diff --git a/app/src/main/java/fr/guillaumevillena/opendnsupdater/activity/ActivityEnableDisableVPNService.java b/app/src/main/java/fr/guillaumevillena/opendnsupdater/activity/ActivityEnableDisableVPNService.java index c67d01c..27637d8 100644 --- a/app/src/main/java/fr/guillaumevillena/opendnsupdater/activity/ActivityEnableDisableVPNService.java +++ b/app/src/main/java/fr/guillaumevillena/opendnsupdater/activity/ActivityEnableDisableVPNService.java @@ -22,11 +22,11 @@ protected void onCreate(Bundle savedInstanceState) { this.incoming = getIntent(); - String toto = this.incoming.getStringExtra(LAUNCH_ACTION); + String stringAction = this.incoming.getStringExtra(LAUNCH_ACTION); - Log.d(TAG, "onCreate: Receievd ! " + toto + " "); + Log.d(TAG, "onCreate: Receievd ! " + stringAction + " "); - if (toto == null) { + if (stringAction == null) { finish(); return; }