This repository has been archived by the owner on Feb 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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
9 changed files
with
589 additions
and
856 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
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/DchaServiceTester/issues)からお問い合わせください。 |
File renamed without changes.
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
20 changes: 20 additions & 0 deletions
20
app/src/main/java/me/s1204/benesse/dcha/test/RequestPermission.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package me.s1204.benesse.dcha.test; | ||
|
||
import android.app.Activity; | ||
import android.content.pm.PackageManager; | ||
import android.os.Build; | ||
import android.os.Bundle; | ||
|
||
public class RequestPermission extends Activity { | ||
public static final String ACCESS_SYSTEM = "jp.co.benesse.dcha.permission.ACCESS_SYSTEM"; | ||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { | ||
if (checkSelfPermission(ACCESS_SYSTEM) != PackageManager.PERMISSION_GRANTED) { | ||
requestPermissions(new String[]{ACCESS_SYSTEM}, 0); | ||
} | ||
} | ||
finish(); | ||
} | ||
} |
806 changes: 306 additions & 500 deletions
806
app/src/main/java/me/s1204/benesse/dcha/test/Tester.java
Large diffs are not rendered by default.
Oops, something went wrong.
572 changes: 222 additions & 350 deletions
572
app/src/main/java/me/s1204/benesse/dcha/test/UtilTester.java
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.