Skip to content

Commit

Permalink
Merge pull request #1726 from nextcloud/mindSdkVersion24
Browse files Browse the repository at this point in the history
Set minSdkVersion to 24 + remove checks
  • Loading branch information
AndyScherzinger authored Apr 17, 2023
2 parents d404e3d + ec519d9 commit 9a716a1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {

defaultConfig {
applicationId "it.niedermann.owncloud.notes"
minSdkVersion 23
minSdkVersion 24
targetSdkVersion 33
versionCode 40010000
versionName "4.1.0 Alpha1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package it.niedermann.owncloud.notes.quicksettings;

import android.annotation.TargetApi;
import android.content.Intent;
import android.os.Build;
import android.service.quicksettings.Tile;
import android.service.quicksettings.TileService;

Expand All @@ -11,7 +9,6 @@
/**
* This {@link TileService} adds a quick settings tile that leads to the new note view.
*/
@TargetApi(Build.VERSION_CODES.N)
public class NewNoteTileService extends TileService {

@Override
Expand Down
2 changes: 1 addition & 1 deletion app/src/test/resources/robolectric.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sdk=23, 30
sdk=24, 30

0 comments on commit 9a716a1

Please sign in to comment.