Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions app/build.gradle
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "com.github.droserasprout.lockscreencamera"
minSdk 30
targetSdk 34
versionCode 2
versionName "2.0.0"
versionCode 3
versionName "3.1.0"
}

signingConfigs {
Expand Down Expand Up @@ -59,4 +59,5 @@ dependencies {
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
implementation 'androidx.annotation:annotation:1.7.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.preference:preference:1.2.1'
}
Empty file modified app/proguard-rules.pro
100644 → 100755
Empty file.
Empty file modified app/release/output-metadata.json
100644 → 100755
Empty file.
28 changes: 23 additions & 5 deletions app/src/main/AndroidManifest.xml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,31 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<!-- Android 11+ で他アプリのパッケージ情報を取得するために必要 -->
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"
tools:ignore="QueryAllPackagesPermission" />

<application
android:allowBackup="true"
android:label="@string/app_name"
android:description="@string/xposed_description"
android:supportsRtl="true"
tools:ignore="AllowBackup,MissingApplicationIcon">
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:label="@string/app_name"
android:description="@string/xposed_description"
android:supportsRtl="true"
tools:ignore="AllowBackup">

<!-- 設定画面(LSPosed マネージャーから起動) -->
<activity
android:name=".SettingsActivity"
android:exported="true"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<!-- ロック画面写真ビューアー -->
<activity
android:name=".SecureViewerActivity"
android:exported="true"
Expand Down
Binary file added app/src/main/ic_launcher-playstore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
597 changes: 49 additions & 548 deletions app/src/main/java/com/github/droserasprout/lockscreencamera/LockscreenCamera.java
100644 → 100755

Large diffs are not rendered by default.

Loading
Loading