-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recorder: Rework the settings dialog
Change-Id: I010f19aa25180804ac2b29bff9956564b185cc7f
- Loading branch information
1 parent
8eb0ae2
commit 829dca7
Showing
9 changed files
with
111 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
// | ||
// SPDX-FileCopyrightText: 2024 The LineageOS Project | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
|
||
// DO NOT EDIT THIS FILE MANUALLY | ||
|
||
android_library_import { | ||
name: "Recorder_com.google.android.material_material-nodeps", | ||
aars: ["com/google/android/material/material/1.9.0/material-1.9.0.aar"], | ||
sdk_version: "34", | ||
min_sdk_version: "14", | ||
apex_available: [ | ||
"//apex_available:platform", | ||
"//apex_available:anyapex", | ||
], | ||
static_libs: [ | ||
"androidx-constraintlayout_constraintlayout", | ||
"androidx.annotation_annotation", | ||
"androidx.annotation_annotation-experimental", | ||
"androidx.appcompat_appcompat", | ||
"androidx.cardview_cardview", | ||
"androidx.coordinatorlayout_coordinatorlayout", | ||
"androidx.core_core", | ||
"androidx.drawerlayout_drawerlayout", | ||
"androidx.dynamicanimation_dynamicanimation", | ||
"androidx.fragment_fragment", | ||
"androidx.lifecycle_lifecycle-runtime", | ||
"androidx.recyclerview_recyclerview", | ||
"androidx.transition_transition", | ||
"androidx.vectordrawable_vectordrawable", | ||
"androidx.viewpager2_viewpager2", | ||
"error_prone_annotations", | ||
], | ||
} | ||
|
||
android_library { | ||
name: "Recorder_com.google.android.material_material", | ||
sdk_version: "34", | ||
min_sdk_version: "14", | ||
apex_available: [ | ||
"//apex_available:platform", | ||
"//apex_available:anyapex", | ||
], | ||
manifest: "com/google/android/material/material/1.9.0/AndroidManifest.xml", | ||
static_libs: [ | ||
"Recorder_com.google.android.material_material-nodeps", | ||
"androidx-constraintlayout_constraintlayout", | ||
"androidx.annotation_annotation", | ||
"androidx.annotation_annotation-experimental", | ||
"androidx.appcompat_appcompat", | ||
"androidx.cardview_cardview", | ||
"androidx.coordinatorlayout_coordinatorlayout", | ||
"androidx.core_core", | ||
"androidx.drawerlayout_drawerlayout", | ||
"androidx.dynamicanimation_dynamicanimation", | ||
"androidx.fragment_fragment", | ||
"androidx.lifecycle_lifecycle-runtime", | ||
"androidx.recyclerview_recyclerview", | ||
"androidx.transition_transition", | ||
"androidx.vectordrawable_vectordrawable", | ||
"androidx.viewpager2_viewpager2", | ||
"error_prone_annotations", | ||
], | ||
java_version: "1.7", | ||
} |
26 changes: 26 additions & 0 deletions
26
app/libs/com/google/android/material/material/1.9.0/AndroidManifest.xml
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,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2015 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 | ||
http://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. | ||
--> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.google.android.material" > | ||
|
||
<uses-sdk | ||
android:minSdkVersion="14" | ||
android:targetSdkVersion="33" /> | ||
|
||
<application /> | ||
|
||
</manifest> |
3 changes: 3 additions & 0 deletions
3
app/libs/com/google/android/material/material/1.9.0/AndroidManifest.xml.license
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 @@ | ||
SPDX-FileCopyrightText: 2015-2024 The Android Open Source Project | ||
|
||
SPDX-License-Identifier: Apache-2.0 |
Binary file added
BIN
+2.1 MB
app/libs/com/google/android/material/material/1.9.0/material-1.9.0.aar
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
app/libs/com/google/android/material/material/1.9.0/material-1.9.0.aar.license
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 @@ | ||
SPDX-FileCopyrightText: 2015-2024 The Android Open Source Project | ||
|
||
SPDX-License-Identifier: Apache-2.0 |
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