Skip to content

Commit

Permalink
Remove permissions for the latest witch hunt
Browse files Browse the repository at this point in the history
  • Loading branch information
AbandonedCart committed Jan 16, 2025
1 parent 25c8b7c commit 1233f94
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 11 deletions.
3 changes: 0 additions & 3 deletions .github/FUNDING.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
echo "GIT_HASH=${GIT_HASH}" >> $GITHUB_ENV
# Example use of `signedReleaseFile` output -- not needed
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: SamSprung-${{ env.GIT_HASH }}
path: ${{steps.sign_app.outputs.signedReleaseFile}}
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
compileSdk 34
minSdk 30
targetSdk 34
versionName "2.6.2"
versionName "2.6.4"
versionCode = versionName.replace(".","").toInteger()

vectorDrawables {
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SPECIAL_USE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.VIBRATE"/>
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

tasks.register('clean', Delete) {
delete rootProject.buildDir
delete getLayout().getBuildDirectory()
}

0 comments on commit 1233f94

Please sign in to comment.