-
Notifications
You must be signed in to change notification settings - Fork 1
Increment1_1.0.0_3.31 #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,15 @@ | ||
| { | ||
| "project_info": { | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The entire file will be replaced via brander, so you can revert this change |
||
| "project_number": "", | ||
| "project_id": "" | ||
| "project_id": "", | ||
| "storage_bucket": "" | ||
| }, | ||
| "client": [ | ||
| { | ||
| "client_info": { | ||
| "mobilesdk_app_id": "", | ||
| "android_client_info": { | ||
| "package_name": "com.nextcloud.client" | ||
| "package_name": "com.ionos.hidrivenext" | ||
| } | ||
| }, | ||
| "oauth_client": [], | ||
|
|
@@ -18,18 +19,11 @@ | |
| } | ||
| ], | ||
| "services": { | ||
| "analytics_service": { | ||
| "status": 1 | ||
| }, | ||
| "appinvite_service": { | ||
| "status": 1, | ||
| "other_platform_oauth_client": [] | ||
| }, | ||
| "ads_service": { | ||
| "status": 1 | ||
| } | ||
| } | ||
| } | ||
| ], | ||
| "configuration_version": "1" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,10 +3,14 @@ | |
| * | ||
| * SPDX-FileCopyrightText: 2023 Álvaro Brey <[email protected]> | ||
| * SPDX-FileCopyrightText: 2023 Nextcloud GmbH | ||
| * SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only | ||
| * SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| * SPDX-License-Identifier: AGPL-3.0-or-later | ||
| */ | ||
| package com.nextcloud.client.di | ||
|
|
||
| import com.ionos.scanbot.availability.Availability | ||
| import com.ionos.scanbot.di.qualifiers.Scanbot | ||
| import com.ionos.scanbot.di.qualifiers.ScanbotLicense | ||
| import com.nextcloud.appscan.ScanPageContract | ||
| import com.nextcloud.client.documentscan.AppScanOptionalFeature | ||
| import dagger.Module | ||
|
|
@@ -17,9 +21,13 @@ import dagger.Reusable | |
| internal class VariantModule { | ||
| @Provides | ||
| @Reusable | ||
| fun scanOptionalFeature(): AppScanOptionalFeature { | ||
| fun scanOptionalFeature( | ||
| @Scanbot featureAvailability: Availability, | ||
| @ScanbotLicense licenseAvailability: Availability | ||
| ): AppScanOptionalFeature { | ||
| return object : AppScanOptionalFeature() { | ||
| override fun getScanContract() = ScanPageContract() | ||
| override val isAvailable: Boolean = featureAvailability.available() && licenseAvailability.available() | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| { | ||
| "project_info": { | ||
| "project_number": "", | ||
| "project_id": "", | ||
| "storage_bucket": "" | ||
| }, | ||
| "client": [ | ||
| { | ||
| "client_info": { | ||
| "mobilesdk_app_id": "", | ||
| "android_client_info": { | ||
| "package_name": "com.ionos.hidrivenext" | ||
| } | ||
| }, | ||
| "oauth_client": [], | ||
| "api_key": [ | ||
| { | ||
| "current_key": "" | ||
| } | ||
| ], | ||
| "services": { | ||
| "appinvite_service": { | ||
| "other_platform_oauth_client": [] | ||
| } | ||
| } | ||
| } | ||
| ], | ||
| "configuration_version": "1" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
|
|
||
| <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" | ||
| android:duration="2500" | ||
| android:interpolator="@android:anim/linear_interpolator" | ||
| android:propertyName="rotation" | ||
| android:repeatCount="-1" | ||
| android:valueFrom="0" | ||
| android:valueTo="720" | ||
| android:valueType="floatType" /> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <item android:color="@color/ionos_drawer_item_background_checked" android:state_checked="true"/> | ||
| <item android:color="@color/ionos_drawer_item_background" /> | ||
| </selector> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <item android:color="@color/ionos_drawer_item_background_checked" android:state_checked="true"/> | ||
| <item android:color="@color/ionos_drawer_item_background" /> | ||
| </selector> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
|
|
||
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <item android:state_pressed="true" android:color="@color/ionos_default_pressed_button_bg_color"/> | ||
| <item android:state_enabled="false" android:color="@color/ionos_default_disabled_button_bg_color"/> | ||
| <item android:color="@color/ionos_default_button_bg_color"/> | ||
| </selector> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
|
|
||
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <item android:state_pressed="true" android:color="@color/ionos_filled_button_pressed_text_color"/> | ||
| <item android:state_enabled="false" android:color="@color/ionos_filled_button_disabled_text_color"/> | ||
| <item android:color="@color/ionos_filled_button_default_text_color"/> | ||
| </selector> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
|
|
||
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <item android:state_pressed="true" android:color="@color/ionos_outlined_pressed_button_bg_color"/> | ||
| <item android:state_enabled="false" android:color="@color/ionos_outlined_disabled_button_bg_color"/> | ||
| <item android:color="@color/ionos_outlined_default_button_bg_color"/> | ||
| </selector> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
|
|
||
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <item android:state_pressed="true" android:color="@color/ionos_outlined_pressed_button_stroke_color"/> | ||
| <item android:state_enabled="false" android:color="@color/ionos_outlined_disabled_button_stroke_color"/> | ||
| <item android:color="@color/ionos_outlined_default_button_stroke_color"/> | ||
| </selector> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
|
|
||
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <item android:state_pressed="true" android:color="@color/ionos_outlined_button_pressed_text_color"/> | ||
| <item android:state_enabled="false" android:color="@color/ionos_outlined_button_disabled_text_color"/> | ||
| <item android:color="@color/ionos_outlined_button_default_text_color"/> | ||
| </selector> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
|
|
||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
|
|
||
| <selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| <item android:state_pressed="true" android:color="@color/ionos_text_button_pressed_text_color"/> | ||
| <item android:state_enabled="false" android:color="@color/ionos_text_button_disabled_text_color"/> | ||
| <item android:color="@color/ionos_text_button_default_text_color"/> | ||
| </selector> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| <!-- | ||
| ~ IONOS HiDrive Next - Android Client | ||
| ~ | ||
| ~ SPDX-FileCopyrightText: 2025 STRATO GmbH. | ||
| ~ SPDX-License-Identifier: GPL-2.0 | ||
| --> | ||
|
|
||
| <vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
| android:width="16dp" | ||
| android:height="16dp" | ||
| android:viewportWidth="16" | ||
| android:viewportHeight="16"> | ||
| <path | ||
| android:fillColor="#FFAA00" | ||
| android:pathData="M8.417,0.774L8.418,0.776L10.366,4.91L10.48,5.151L10.743,5.191L15.096,5.853C15.097,5.853 15.097,5.853 15.097,5.853C15.265,5.879 15.416,6.003 15.475,6.189C15.534,6.374 15.485,6.576 15.355,6.708L15.355,6.709L12.198,9.93L12.02,10.111L12.061,10.361L12.81,14.913C12.81,14.913 12.81,14.913 12.81,14.913C12.841,15.107 12.762,15.299 12.612,15.411C12.472,15.516 12.287,15.53 12.128,15.444C12.128,15.444 12.128,15.444 12.127,15.443L8.242,13.304L8.001,13.171L7.76,13.304L3.874,15.443C3.874,15.444 3.874,15.444 3.873,15.444C3.718,15.528 3.531,15.515 3.387,15.409C3.242,15.302 3.16,15.109 3.192,14.913C3.192,14.913 3.192,14.913 3.192,14.913L3.937,10.361L3.978,10.111L3.801,9.93L0.644,6.709L0.643,6.708C0.516,6.579 0.465,6.375 0.524,6.186C0.581,6.005 0.731,5.88 0.902,5.853C0.902,5.853 0.902,5.853 0.902,5.853L5.252,5.191L5.516,5.151L5.629,4.91L7.577,0.777C7.577,0.777 7.577,0.777 7.577,0.777C7.661,0.6 7.826,0.5 7.998,0.5C8.172,0.5 8.337,0.602 8.417,0.774Z" | ||
| android:strokeWidth="1" | ||
| android:strokeColor="#ffffff" /> | ||
| </vector> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be part of brander already