| | <?xml version="1.0" encoding="utf-8"?> |
---|
| | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
---|
| | xmlns:tools="http://schemas.android.com/tools" |
---|
| | package="com.example.cosmosclient"> |
---|
| | <!-- ここからバーコードリーダーのアクセス許可 --> |
---|
| | |
---|
| | <application |
---|
| | android:name=".app.Cosmos" |
---|
| | android:networkSecurityConfig="@xml/network_security_config" |
---|
| | android:allowBackup="true" |
---|
| | android:hardwareAccelerated="true" |
---|
| | android:icon="@mipmap/ic_launcher" |
---|
| | android:label="@string/app_name" |
---|
| | android:networkSecurityConfig="@xml/network_security_config" |
---|
| | android:roundIcon="@mipmap/ic_launcher_round" |
---|
| | android:supportsRtl="true" |
---|
| | android:theme="@style/AppTheme"> |
---|
| | <activity |
---|
| | android:name=".views.DisplayGroupIDActivity" |
---|
| | android:label="グループIDを表示する" /> |
---|
| | <activity android:name=".views.MemberListActivity"></activity> |
---|
| | |
---|
| | <activity |
---|
| | android:name=".views.MemberListActivity" |
---|
| | android:label="グループメンバー" /> |
---|
| | <activity |
---|
| | android:name=".views.CreateGroupActivity" |
---|
| | android:label="グループ作成" /> |
---|
| | <activity |
---|
| |
---|
| | android:name=".views.AddMemberActivity" |
---|
| | android:label="メンバー追加" /> |
---|
| | <activity |
---|
| | android:name=".views.GroupListActivity" |
---|
| | android:label="@string/title_activity_group_list" |
---|
| | android:label="グループ一覧" |
---|
| | android:theme="@style/AppTheme.NoActionBar"></activity> |
---|
| | <service |
---|
| | android:name=".services.CosomosBackgroundService" |
---|
| | android:exported="false"></service> |
---|
| | </application> |
---|
| | <uses-permission android:name="android.permission.INTERNET" /> |
---|
| | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
---|
| | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
---|
| | <uses-permission android:name="android.permission.CAMERA" /> |
---|
| | <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> |
---|
| | |
---|
| | <uses-permission android:name="android.permission.CAMERA" /> |
---|
| | |
---|
| | <uses-permission android:name="android.permission.INTERNET" /> |
---|
| | |
---|
| | </manifest> |
---|
| | |