-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
268 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# プライバシーポリシー | ||
|
||
<!-- | ||
ChatGPT 3.5 より生成 | ||
--> | ||
|
||
このアプリは利用者の個人情報を一切収集いたしません。プライバシーとデータの保護に関して取り決めが不要です。 | ||
|
||
|
||
1. **データ収集の明示的な許可**: | ||
当アプリは位置情報、個人識別情報、またはその他の個人に関するデータを収集いたしません。したがって、データ収集に関する許可の求めもございません。 | ||
|
||
2. **外部サービスとの連携**: | ||
当アプリは外部サービスとの連携により、利用者データを取得することはありません。 | ||
|
||
3. **データの保存と保管**: | ||
当アプリは利用者データを保存または保管することはありません。データが一切サーバーに送信されないため、安全性が確保されています。 | ||
|
||
4. **セキュリティ**: | ||
利用者のプライバシーとセキュリティを重視し、当アプリは利用者データの収集や蓄積を行わないため、セキュリティ上の懸念は発生しません。 | ||
|
||
何かご不明点や質問がございましたら、[**Issues**](https://github.com/s1204IT/GalaxyCamSnd/issues)からお問い合わせください。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-ignorewarnings | ||
-keepattributes LineNumberTable,SourceFile | ||
-renamesourcefileattribute SourceFile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 3 additions & 5 deletions
8
app/src/main/java/me/s1204/galaxycamsnd/BootCompletedReceiver.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
package me.s1204.galaxycamsnd; | ||
|
||
import android.annotation.SuppressLint; | ||
import android.content.BroadcastReceiver; | ||
import android.content.Context; | ||
import android.content.Intent; | ||
import static android.provider.Settings.System.*; | ||
import android.provider.Settings; | ||
|
||
public class BootCompletedReceiver extends BroadcastReceiver { | ||
@SuppressLint("UnsafeProtectedBroadcastReceiver") | ||
public void onReceive(Context c, Intent i) { | ||
if (canWrite(c)) { | ||
putInt(c.getContentResolver(), "csc_pref_camera_forced_shuttersound_key", 0); | ||
if (Settings.System.canWrite(c)) { | ||
Settings.System.putInt(c.getContentResolver(), CameraActivity.shutter_sound_volume, 0); | ||
} | ||
} | ||
} |
27 changes: 22 additions & 5 deletions
27
app/src/main/java/me/s1204/galaxycamsnd/CameraActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
app/src/main/java/me/s1204/galaxycamsnd/DeviceAdminReceiver.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.