Skip to content

Commit

Permalink
Merge pull request #450 from doubleangels/dev
Browse files Browse the repository at this point in the history
Improve error handling and translations
  • Loading branch information
doubleangels authored Feb 24, 2025
2 parents 18b0454 + 517c703 commit 1a0cd81
Show file tree
Hide file tree
Showing 49 changed files with 1,130 additions and 1,217 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "com.doubleangels.nextdnsmanagement"
minSdkVersion 32
targetSdk = 35
versionCode 257
versionName "5.5.8"
versionCode 258
versionName "5.5.9"
resourceConfigurations += ["en", "zh", "nl", "fi", "fr", "de", "in", "it", "ja", "pl", "pt", "es", "sv", "tr"]
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
import androidx.annotation.Nullable;

/**
* A basic Service class named "CustomFirebaseMessagingService."
* A basic Service class named "CustomFirebaseMessagingService."
*/
public class CustomFirebaseMessagingService extends Service {

/**
* Called each time the service is started with an Intent.
* Returning START_NOT_STICKY means the system will NOT recreate the service
* Returning START_NOT_STICKY means the system will NOT recreate the service
* if it is killed while there are no start commands pending.
*
* @param intent The Intent used to start the service.
Expand Down Expand Up @@ -50,4 +50,4 @@ public IBinder onBind(Intent intent) {
// For a bound service, you would return a binder interface here.
return null;
}
}
}
Loading

0 comments on commit 1a0cd81

Please sign in to comment.