Skip to content

Commit

Permalink
Merge pull request #17 from respawn-app/1.4.1
Browse files Browse the repository at this point in the history
1.4.1
  • Loading branch information
Nek-12 authored May 30, 2024
2 parents 7336dfc + eb17f3d commit 81c84d1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/changelog_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"transformer" : {
"method" : "regexr",
"pattern" : "(\\w+(\\(.+\\))?: ?)?(.+)",
"target" : "$2"
"target" : "$3"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ jobs:
assign_author:
runs-on: macos-latest
steps:
- uses: samspills/assign-pr-to-author@v1.0.2
- uses: samspills/assign-pr-to-author@v1
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object Config {

const val majorRelease = 1
const val minorRelease = 4
const val patch = 0
const val patch = 1
const val postfix = ""
const val versionName = "$majorRelease.$minorRelease.$patch$postfix"

Expand Down Expand Up @@ -55,7 +55,7 @@ object Config {
val javaVersion = JavaVersion.VERSION_11
const val compileSdk = 34
const val targetSdk = compileSdk
const val minSdk = 24
const val minSdk = 21
const val appMinSdk = 26
const val publishingVariant = "release"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import android.os.Build.VERSION_CODES
import android.text.format.DateFormat
import android.view.autofill.AutofillManager
import androidx.annotation.ChecksSdkIntAtLeast
import androidx.annotation.RequiresApi
import androidx.core.app.TaskStackBuilder
import androidx.core.content.getSystemService
import androidx.core.net.toUri
Expand Down Expand Up @@ -82,6 +83,7 @@ public inline fun <R> withApiLevel(versionCode: Int, below: () -> R, since: () -
*
* [permission] parameter is defined in [android.Manifest.permission]
*/
@RequiresApi(VERSION_CODES.M)
public inline fun <T> Context.withPermission(
permission: String,
ifDenied: Context.(String) -> T,
Expand All @@ -96,6 +98,7 @@ public inline fun <T> Context.withPermission(
*
* [permission] parameter is defined in [android.Manifest.permission]
*/
@RequiresApi(VERSION_CODES.M)
public inline fun Context.withPermission(
permission: String,
ifGranted: Context.(String) -> Unit,
Expand Down

0 comments on commit 81c84d1

Please sign in to comment.