From 040d6d5291fb605945d4eafca4ef4d0f491d25fd Mon Sep 17 00:00:00 2001 From: weichenc Date: Wed, 4 Dec 2024 13:10:56 +0800 Subject: [PATCH 1/2] add AOSP license --- .../app/build.gradle.kts | 16 ++++++++++++++++ .../app/src/main/AndroidManifest.xml | 16 ++++++++++++++++ .../recordingapionmobilesample/MainActivity.kt | 16 ++++++++++++++++ .../RecordingApiOnMobileApp.kt | 16 ++++++++++++++++ .../component/BucketRow.kt | 16 ++++++++++++++++ .../component/DataPointRow.kt | 16 ++++++++++++++++ .../component/DataSetRow.kt | 16 ++++++++++++++++ .../data/BucketData.kt | 16 ++++++++++++++++ .../data/DataPointData.kt | 16 ++++++++++++++++ .../data/DataSetData.kt | 16 ++++++++++++++++ .../helper/PermissionHelper.kt | 16 ++++++++++++++++ .../screen/home/HomeScreen.kt | 16 ++++++++++++++++ .../RecordingAPIonMobileScreen.kt | 16 ++++++++++++++++ .../RecordingAPIonMobileViewModel.kt | 16 ++++++++++++++++ .../recordingapionmobilesample/ui/theme/Color.kt | 16 ++++++++++++++++ .../recordingapionmobilesample/ui/theme/Theme.kt | 16 ++++++++++++++++ .../recordingapionmobilesample/ui/theme/Type.kt | 16 ++++++++++++++++ .../main/res/drawable/ic_launcher_background.xml | 16 ++++++++++++++++ .../main/res/drawable/ic_launcher_foreground.xml | 16 ++++++++++++++++ .../main/res/mipmap-anydpi-v26/ic_launcher.xml | 16 ++++++++++++++++ .../res/mipmap-anydpi-v26/ic_launcher_round.xml | 16 ++++++++++++++++ .../app/src/main/res/values/colors.xml | 16 ++++++++++++++++ .../main/res/values/ic_launcher_background.xml | 16 ++++++++++++++++ .../app/src/main/res/values/strings.xml | 16 ++++++++++++++++ .../app/src/main/res/values/themes.xml | 16 ++++++++++++++++ .../app/src/main/res/xml/backup_rules.xml | 16 ++++++++++++++++ .../src/main/res/xml/data_extraction_rules.xml | 16 ++++++++++++++++ .../RecordingApiOnMobileSample/build.gradle.kts | 16 ++++++++++++++++ .../RecordingApiOnMobileSample/gradle.properties | 16 ++++++++++++++++ .../gradle/libs.versions.toml | 2 +- .../gradle/wrapper/gradle-wrapper.properties | 16 ++++++++++++++++ .../RecordingApiOnMobileSample/gradlew | 2 +- .../settings.gradle.kts | 16 ++++++++++++++++ 33 files changed, 498 insertions(+), 2 deletions(-) diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/build.gradle.kts b/recording-api-on-mobile/RecordingApiOnMobileSample/app/build.gradle.kts index 0f0eb406..dbd8d490 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/build.gradle.kts +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/build.gradle.kts @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + plugins { alias(libs.plugins.android.application) alias(libs.plugins.kotlin.android) diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/AndroidManifest.xml b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/AndroidManifest.xml index 6caf3754..ede6a863 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/AndroidManifest.xml +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/AndroidManifest.xml @@ -1,4 +1,20 @@ + + diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/MainActivity.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/MainActivity.kt index 35eeb248..b81e544e 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/MainActivity.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/MainActivity.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample import android.os.Bundle diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/RecordingApiOnMobileApp.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/RecordingApiOnMobileApp.kt index abe3bd45..83213632 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/RecordingApiOnMobileApp.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/RecordingApiOnMobileApp.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample import androidx.compose.foundation.layout.Column diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/BucketRow.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/BucketRow.kt index d0334f0e..f36975d7 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/BucketRow.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/BucketRow.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.component import androidx.compose.foundation.layout.Arrangement diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/DataPointRow.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/DataPointRow.kt index bff6dd8c..be9e94cc 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/DataPointRow.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/DataPointRow.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.component import androidx.compose.foundation.layout.Arrangement diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/DataSetRow.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/DataSetRow.kt index 563cd9b4..3241421d 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/DataSetRow.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/component/DataSetRow.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.component import androidx.compose.foundation.layout.Arrangement diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/BucketData.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/BucketData.kt index 3ab9393d..7dea999f 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/BucketData.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/BucketData.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.data data class BucketData( diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/DataPointData.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/DataPointData.kt index 28f16f37..aad3c8ff 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/DataPointData.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/DataPointData.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.data class DataPointData ( diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/DataSetData.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/DataSetData.kt index e913e799..30e0feda 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/DataSetData.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/data/DataSetData.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.data class DataSetData( diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/helper/PermissionHelper.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/helper/PermissionHelper.kt index 20121ee1..93e4a10f 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/helper/PermissionHelper.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/helper/PermissionHelper.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.helper import android.content.Context diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/home/HomeScreen.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/home/HomeScreen.kt index 0eb94d93..9454605d 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/home/HomeScreen.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/home/HomeScreen.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.screen.home import androidx.compose.foundation.layout.Arrangement diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/recordingAPIonMobile/RecordingAPIonMobileScreen.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/recordingAPIonMobile/RecordingAPIonMobileScreen.kt index 464a6d19..6444f7f4 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/recordingAPIonMobile/RecordingAPIonMobileScreen.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/recordingAPIonMobile/RecordingAPIonMobileScreen.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.screen.recordingAPIonMobile import android.Manifest diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/recordingAPIonMobile/RecordingAPIonMobileViewModel.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/recordingAPIonMobile/RecordingAPIonMobileViewModel.kt index 4a1ccd1c..e1da795c 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/recordingAPIonMobile/RecordingAPIonMobileViewModel.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/screen/recordingAPIonMobile/RecordingAPIonMobileViewModel.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.screen.recordingAPIonMobile import android.Manifest diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Color.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Color.kt index c5853678..8674da48 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Color.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Color.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.ui.theme import androidx.compose.ui.graphics.Color diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Theme.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Theme.kt index 922bc730..9fd840b9 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Theme.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Theme.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.ui.theme import androidx.compose.foundation.isSystemInDarkTheme diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Type.kt b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Type.kt index fac5e8c8..bccb958c 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Type.kt +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/java/com/example/recordingapionmobilesample/ui/theme/Type.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2024 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.example.recordingapionmobilesample.ui.theme import androidx.compose.material3.Typography diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/drawable/ic_launcher_background.xml b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/drawable/ic_launcher_background.xml index 07d5da9c..3231da58 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/drawable/ic_launcher_background.xml +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/drawable/ic_launcher_background.xml @@ -1,4 +1,20 @@ + + + + + diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml index 036d09bc..8386a407 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -1,4 +1,20 @@ + + diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/colors.xml b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/colors.xml index f8c6127d..779459ad 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/colors.xml +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/colors.xml @@ -1,4 +1,20 @@ + + #FFBB86FC #FF6200EE diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/ic_launcher_background.xml b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/ic_launcher_background.xml index a04bca9a..7fc09f20 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/ic_launcher_background.xml +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/ic_launcher_background.xml @@ -1,4 +1,20 @@ + + #34A853 \ No newline at end of file diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/strings.xml b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/strings.xml index 17f6304c..6f60e43a 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/strings.xml +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/strings.xml @@ -1,3 +1,19 @@ + + Recording API on mobile Sample Recording API on mobile Sample diff --git a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/themes.xml b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/themes.xml index 81c8a5b6..ada30e0e 100644 --- a/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/themes.xml +++ b/recording-api-on-mobile/RecordingApiOnMobileSample/app/src/main/res/values/themes.xml @@ -1,4 +1,20 @@ + +