├── settings.gradle
├── app
├── src
│ ├── test
│ │ ├── resources
│ │ │ └── robolectric.properties
│ │ └── java
│ │ │ └── hu
│ │ │ └── muzso
│ │ │ └── fileslauncher
│ │ │ ├── FilesLauncherScreenTest.java
│ │ │ └── FilesLauncherSessionTest.java
│ └── main
│ │ ├── res
│ │ ├── xml
│ │ │ └── automotive_app_desc.xml
│ │ ├── values
│ │ │ └── strings.xml
│ │ └── drawable
│ │ │ └── ic_launcher.xml
│ │ ├── java
│ │ └── hu
│ │ │ └── muzso
│ │ │ └── fileslauncher
│ │ │ ├── ResultScreen.java
│ │ │ ├── FilesLauncherService.java
│ │ │ └── FilesLauncherScreen.java
│ │ └── AndroidManifest.xml
├── lint.xml
└── build.gradle
├── gradle.properties
├── .gitignore
├── CHANGELOG.md
├── README.md
└── LICENSE
/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name="fileslauncher"
2 | include ":app"
3 |
--------------------------------------------------------------------------------
/app/src/test/resources/robolectric.properties:
--------------------------------------------------------------------------------
1 | # robolectric properties
2 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/automotive_app_desc.xml:
--------------------------------------------------------------------------------
1 |
2 |
Demonstrating the usage of {@link TestCarContext} and validating that the returned 18 | * {@link androidx.car.app.model.Template} has the expected contents. 19 | */ 20 | @RunWith(RobolectricTestRunner.class) 21 | @DoNotInstrument 22 | public class FilesLauncherScreenTest { 23 | private final TestCarContext mTestCarContext = 24 | TestCarContext.createCarContext(ApplicationProvider.getApplicationContext()); 25 | 26 | @Test 27 | public void getTemplate_containsExpectedRow() { 28 | FilesLauncherScreen screen = new FilesLauncherScreen(mTestCarContext); 29 | MessageTemplate template = (MessageTemplate) screen.onGetTemplate(); 30 | 31 | String msg = template.getMessage().toString(); 32 | assertThat(msg).isEqualTo("This app can launch the \"Files\" builtin application."); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. 4 | 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6 | 7 | ## [1.0.2] - 2024-11-21 8 | 9 | ### Changed 10 | 11 | - The "Files" app in the Volvo EX30's 1.4.4 software update no longer has the com.android.documentsui.LauncherActivity activity exported, thus it cannot be launched by 3rd party apps. But the com.android.documentsui.files.FilesActivity activity still is (exported) and can be (launched by 3rd party apps) so I've added it to the list of activities to try, when the user presses the button. 12 | - Made a couple of Android Studio suggested adjustments (e.g. removed jcenter() from build.gradle, upgraded com.android.tools.build:gradle dep from 8.5.1 to 8.5.2). 13 | 14 | ## [1.0.1] - 2024-08-10 15 | 16 | ### Added 17 | 18 | - detailed error messages are displayed on a new screen (since toasts and notifications cannot contain longer texts) 19 | 20 | ### Changed 21 | 22 | - all kinds of unexpected exceptions are caught while calling Android APIs during the effort to launch the "Files" app 23 | - these error messages are displayed to the user 24 | 25 | ## [1.0.0] - 2024-08-01 26 | 27 | ### Added 28 | 29 | - Initial release (feature complete and mostly stable) 30 | 31 | [1.0.2]: https://github.com/muzso/fileslauncher/compare/1.0.1...1.0.2 32 | [1.0.1]: https://github.com/muzso/fileslauncher/compare/1.0.0...1.0.1 33 | [1.0.0]: https://github.com/muzso/fileslauncher/releases/tag/1.0.0 34 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | android { 4 | compileSdk 34 5 | 6 | defaultConfig { 7 | applicationId "hu.muzso.fileslauncher" 8 | minSdkVersion 29 9 | targetSdkVersion 34 10 | versionCode 3 11 | versionName "1.0.2" 12 | } 13 | 14 | buildTypes { 15 | release { 16 | // Enables code shrinking, obfuscation, and optimization for only 17 | // the project's release build type. 18 | minifyEnabled true 19 | 20 | // Enables resource shrinking, which is performed by the 21 | // Android Gradle plugin. 22 | shrinkResources true 23 | 24 | // Includes the default ProGuard rules files that are packaged with 25 | // the Android Gradle plugin. 26 | proguardFiles getDefaultProguardFile( 27 | "proguard-android-optimize.txt"), 28 | "proguard-rules.pro" 29 | signingConfig signingConfigs.debug 30 | } 31 | } 32 | 33 | compileOptions { 34 | targetCompatibility = JavaVersion.VERSION_1_8 35 | sourceCompatibility = JavaVersion.VERSION_1_8 36 | } 37 | namespace "hu.muzso.fileslauncher" 38 | } 39 | 40 | dependencies { 41 | implementation "androidx.car.app:app-automotive:1.4.0" 42 | implementation "androidx.car.app:app:1.4.0" 43 | testImplementation "com.google.truth:truth:1.4.4" 44 | testImplementation "androidx.car.app:app-testing:1.4.0" 45 | testImplementation "androidx.test:core:1.6.1" 46 | testImplementation "org.robolectric:robolectric:4.13" 47 | } 48 | -------------------------------------------------------------------------------- /app/src/main/java/hu/muzso/fileslauncher/FilesLauncherService.java: -------------------------------------------------------------------------------- 1 | package hu.muzso.fileslauncher; 2 | 3 | import android.content.Intent; 4 | import android.content.pm.ApplicationInfo; 5 | 6 | import androidx.annotation.NonNull; 7 | import androidx.annotation.Nullable; 8 | import androidx.car.app.CarAppService; 9 | import androidx.car.app.Screen; 10 | import androidx.car.app.Session; 11 | import androidx.car.app.SessionInfo; 12 | import androidx.car.app.validation.HostValidator; 13 | 14 | /** 15 | * Entry point for the Files Launcher app. 16 | * 17 | *
{@link CarAppService} is the main interface between the app and the car host. For more 18 | * details, see the Android for 19 | * Cars Library developer guide. 20 | */ 21 | public final class FilesLauncherService extends CarAppService { 22 | 23 | public FilesLauncherService() { 24 | // Exported services must have an empty public constructor. 25 | } 26 | 27 | @Override 28 | @NonNull 29 | public Session onCreateSession(@NonNull SessionInfo sessionInfo) { 30 | return new Session() { 31 | @Override 32 | @NonNull 33 | public Screen onCreateScreen(@Nullable Intent intent) { 34 | return new FilesLauncherScreen(getCarContext()); 35 | } 36 | }; 37 | } 38 | 39 | @NonNull 40 | @Override 41 | public HostValidator createHostValidator() { 42 | if ((getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0) { 43 | return HostValidator.ALLOW_ALL_HOSTS_VALIDATOR; 44 | } else { 45 | return new HostValidator.Builder(getApplicationContext()) 46 | .addAllowedHosts(androidx.car.app.R.array.hosts_allowlist_sample) 47 | .build(); 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # fileslauncher 2 | 3 | This is a minimalistic AAOS (Android Automotive OS) app to launch the builtin "Files" (com.android.documentsui or com.google.android.documentsui) application. 4 | It's based on the Hello World app in Google's [car-samples](https://github.com/android/car-samples/). 5 | 6 | Sometimes car manufacturers keep the builtin "Files" application on the head unit, but try to prevent user access by hiding it from the app list and prohibiting Google Assistant from launching it. The reason is that the "Files" app usually has the permission to initiate app installations from local APK files (i.e. sideloading) via the "Package installer" (com.google.android.packageinstaller) app. 7 | 8 | To work around this issue: 9 | 10 | - you can compile this app with your own `applicationId` (modify this property in `app/build.gradle`) 11 | - build an Android App Bundle, aka. AAB (must be signed) 12 | - create a new app in your Google Play Console 13 | - create a new release and upload the AAB 14 | - make it into an Internal Testing app 15 | - add your vehicle's Google account to the app's list of testers 16 | - install the app on the head unit (remotely) by logging into play.google.com with the vehicle's Google account and using the app's Internal Testing URL (you can do this on your desktop PC in a browser) 17 | 18 | Of course for all of this to work the head unit must have internet access: either with a built-in SIM/eSIM or via WiFi tethering. 19 | 20 | Note: the app tries to look for the "Files" application first with the "com.android.documentsui" package name (this is the package name used in [AOSP sources](https://android.googlesource.com/platform/packages/apps/DocumentsUI/+/refs/heads/android12L-platform-release/AndroidManifest.xml)) and if it is not found, it tries again with the "com.google.android.documentsui" package name (this is used in Android Studio's automotive emulator images). 21 | -------------------------------------------------------------------------------- /app/src/test/java/hu/muzso/fileslauncher/FilesLauncherSessionTest.java: -------------------------------------------------------------------------------- 1 | package hu.muzso.fileslauncher; 2 | 3 | import static com.google.common.truth.Truth.assertThat; 4 | 5 | import android.content.ComponentName; 6 | import android.content.Intent; 7 | 8 | import androidx.car.app.Screen; 9 | import androidx.car.app.Session; 10 | import androidx.car.app.SessionInfo; 11 | import androidx.car.app.testing.SessionController; 12 | import androidx.car.app.testing.TestCarContext; 13 | import androidx.car.app.testing.TestScreenManager; 14 | import androidx.lifecycle.Lifecycle; 15 | import androidx.test.core.app.ApplicationProvider; 16 | 17 | import org.junit.Test; 18 | import org.junit.runner.RunWith; 19 | import org.robolectric.Robolectric; 20 | import org.robolectric.RobolectricTestRunner; 21 | import org.robolectric.annotation.internal.DoNotInstrument; 22 | 23 | /** 24 | * A sample test on the session instance from {@link FilesLauncherService}. 25 | * 26 | *
Demonstrating the usage of {@link SessionController} and validating that the session is
27 | * pushing the expected screen when created.
28 | */
29 | @RunWith(RobolectricTestRunner.class)
30 | @DoNotInstrument
31 | public class FilesLauncherSessionTest {
32 | private final TestCarContext mTestCarContext =
33 | TestCarContext.createCarContext(ApplicationProvider.getApplicationContext());
34 |
35 | @Test
36 | public void onCreateScreen_returnsExpectedScreen() {
37 | FilesLauncherService service = Robolectric.setupService(FilesLauncherService.class);
38 | Session session = service.onCreateSession(SessionInfo.DEFAULT_SESSION_INFO);
39 | SessionController controller =
40 | new SessionController(session, mTestCarContext,
41 | new Intent().setComponent(
42 | new ComponentName(mTestCarContext, FilesLauncherService.class)));
43 | controller.moveToState(Lifecycle.State.CREATED);
44 |
45 | Screen screenCreated =
46 | mTestCarContext.getCarService(TestScreenManager.class).getScreensPushed().get(0);
47 | assertThat(screenCreated).isInstanceOf(FilesLauncherScreen.class);
48 | }
49 |
50 | }
51 |
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
See {@link FilesLauncherService} for the app's entry point to the car host.
21 | */
22 | public class FilesLauncherScreen extends Screen {
23 | private static final String TAG = "FilesLauncherScreen";
24 | private static final String[][] PACKAGES = new String[][] {
25 | new String[]{ "com.android.documentsui", "com.android.documentsui.files.FilesActivity" },
26 | new String[]{ "com.android.documentsui", "com.android.documentsui.LauncherActivity" },
27 | new String[]{ "com.google.android.documentsui", "com.android.documentsui.LauncherActivity" }
28 | };
29 |
30 | private final CarContext mCarContext;
31 |
32 | public FilesLauncherScreen(@NonNull CarContext carContext)
33 | {
34 | super(carContext);
35 | mCarContext = carContext;
36 | }
37 |
38 | private void onClickListener() {
39 | Log.i(TAG, "onClickListener is starting");
40 | PackageManager pm = mCarContext.getPackageManager();
41 | StringBuilder errorMsgBuilder = new StringBuilder(100);
42 | boolean success = false;
43 | if (pm != null) {
44 | for (int i = 0; i < PACKAGES.length; i++) {
45 | String packageName = PACKAGES[i][0];
46 | String activityClassName = PACKAGES[i][1];
47 | Log.i(TAG, "invoking getLaunchIntentForPackage() for \"" + packageName + "\" package");
48 | Intent intent = null;
49 | try {
50 | intent = pm.getLaunchIntentForPackage(packageName);
51 | if (intent == null) {
52 | Log.i(TAG, "invoking getLaunchIntentForPackage() for \"" + packageName + "\" package returned null");
53 | }
54 | } catch (Exception e) {
55 | errorMsgBuilder.append(mCarContext.getString(R.string.error_exception_for_package, i+1, packageName, "PackageManager.getLaunchIntentForPackage()", e.getMessage()));
56 | }
57 | if (intent != null) {
58 | try {
59 | ComponentName componentName = intent.getComponent();
60 | activityClassName = componentName.getClassName();
61 | } catch (Exception e) {
62 | errorMsgBuilder.append(mCarContext.getString(R.string.error_exception_get_activity_class, i+1, packageName, e.getMessage()));
63 | }
64 | } else {
65 | Log.i(TAG, "getLaunchIntentForPackage() did not return intent for \"" + packageName + "\" package, adding \"" + activityClassName + "\" activity");
66 | intent = new Intent();
67 | try {
68 | intent.setClassName(packageName, activityClassName);
69 | try {
70 | intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
71 | } catch (Exception e) {
72 | errorMsgBuilder.append(mCarContext.getString(R.string.error_exception_for_package_and_activity, i+1, packageName, activityClassName, "Intent.addFlags()", e.getMessage()));
73 | }
74 | } catch (Exception e) {
75 | errorMsgBuilder.append(mCarContext.getString(R.string.error_exception_for_package_and_activity, i+1, packageName, activityClassName, "Intent.setClassName()", e.getMessage()));
76 | }
77 | }
78 | Log.i(TAG, "before startActivity()");
79 | try {
80 | mCarContext.startActivity(intent);
81 | success = true;
82 | Log.i(TAG, "startActivity() was successful");
83 | break;
84 | } catch (ActivityNotFoundException e) {
85 | Log.i(TAG, "no activity was found for \"" + packageName + "\" package and \"" + activityClassName + "\" activity");
86 | } catch (Exception e) {
87 | errorMsgBuilder.append(mCarContext.getString(R.string.error_exception_for_package_and_activity, i+1, packageName, activityClassName, "CarContext.startActivity()", e.getMessage()));
88 | }
89 | Log.i(TAG, "after startActivity()");
90 | }
91 | if (!success) {
92 | errorMsgBuilder.append("\n");
93 | errorMsgBuilder.append(mCarContext.getString(R.string.error_failure_lead));
94 | for (int i = 0; i < PACKAGES.length; i++) {
95 | String[] packageSpec = PACKAGES[i];
96 | errorMsgBuilder.append("\n\n");
97 | errorMsgBuilder.append(mCarContext.getString(R.string.error_failure_package, i+1, packageSpec[0], packageSpec[1]));
98 | }
99 | }
100 | } else {
101 | errorMsgBuilder.append("\n");
102 | errorMsgBuilder.append(mCarContext.getString(R.string.error_package_manager));
103 | }
104 | if (errorMsgBuilder.length() > 0) {
105 | Log.e(TAG, "Error(s):" + errorMsgBuilder);
106 |
107 | StringBuilder finalMsg = new StringBuilder(errorMsgBuilder.length() + 100);
108 | if (success) {
109 | finalMsg.append(mCarContext.getString(R.string.success_with_error));
110 | } else {
111 | finalMsg.append(mCarContext.getString(R.string.failure_with_error));
112 | }
113 | finalMsg.append("\n");
114 | finalMsg.append(mCarContext.getString(R.string.issue_reporting_notice, mCarContext.getString(R.string.github_url), mCarContext.getString(R.string.reddit_url)));
115 | finalMsg.append("\n\n");
116 | finalMsg.append(errorMsgBuilder);
117 | getScreenManager().push(new ResultScreen(mCarContext, finalMsg.toString()));
118 | }
119 | Log.i(TAG, "onClickListener is finished");
120 | }
121 |
122 | @NonNull
123 | @Override
124 | public Template onGetTemplate() {
125 | Action action = new Action.Builder()
126 | .setTitle(mCarContext.getString(R.string.launcher_button_label))
127 | .setBackgroundColor(CarColor.BLUE)
128 | .setOnClickListener(() -> onClickListener())
129 | .build();
130 |
131 | return new MessageTemplate.Builder(mCarContext.getString(R.string.launcher_message))
132 | .addAction(action)
133 | .setHeaderAction(Action.APP_ICON)
134 | .build();
135 | }
136 | }
137 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | Copyright 2024 muzso
179 |
180 | Licensed under the Apache License, Version 2.0 (the "License");
181 | you may not use this file except in compliance with the License.
182 | You may obtain a copy of the License at
183 |
184 | http://www.apache.org/licenses/LICENSE-2.0
185 |
186 | Unless required by applicable law or agreed to in writing, software
187 | distributed under the License is distributed on an "AS IS" BASIS,
188 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189 | See the License for the specific language governing permissions and
190 | limitations under the License.
191 |
192 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |