Skip to content

Commit

Permalink
Merge pull request #106 from sduduzog/add-back-alarm-permission
Browse files Browse the repository at this point in the history
Add back alarm permission. Closes #101
  • Loading branch information
sduduzog authored Sep 17, 2020
2 parents 61460cf + 5f2c287 commit 74a4bda
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId = "com.sduduzog.slimlauncher"
minSdkVersion(21)
targetSdkVersion(30)
versionName = "2.4.16"
versionCode = 50
versionName = "2.4.17"
versionCode = 51
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables { useSupportLibrary = true }
signingConfigs {
Expand Down
6 changes: 4 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
xmlns:tools="http://schemas.android.com/tools"
package="com.sduduzog.slimlauncher">

<uses-permission android:name="com.android.alarm.permission.SET_ALARM" />

<application
android:name=".App"
android:allowBackup="false"
Expand All @@ -18,8 +20,8 @@
android:name=".MainActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity"
android:stateNotNeeded="true">
android:stateNotNeeded="true"
tools:ignore="LockedOrientationActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down

0 comments on commit 74a4bda

Please sign in to comment.