-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: alperozturk <[email protected]>
- Loading branch information
1 parent
02c0ff5
commit d7d6cd6
Showing
259 changed files
with
3,525 additions
and
1,529 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
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
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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Nextcloud - Android Client | ||
* | ||
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Tobias Kaminsky <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Andy Scherzinger <[email protected]> | ||
* SPDX-FileCopyrightText: 2022 Álvaro Brey Vilas <[email protected]> | ||
|
@@ -16,7 +16,7 @@ import org.gradle.internal.jvm.Jvm | |
buildscript { | ||
dependencies { | ||
classpath "com.android.tools.build:gradle:$androidPluginVersion" | ||
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.13' | ||
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.14' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.6" | ||
classpath "commons-httpclient:commons-httpclient:3.1@jar" // remove after entire switch to lib v2 | ||
|
@@ -28,14 +28,15 @@ buildscript { | |
} | ||
|
||
plugins { | ||
id "org.jetbrains.kotlin.plugin.compose" version "2.0.0" | ||
id "com.diffplug.spotless" version "6.20.0" | ||
id 'com.google.devtools.ksp' version '1.9.23-1.0.20' apply false | ||
id "org.jetbrains.kotlin.kapt" version "2.0.0" | ||
id 'com.google.devtools.ksp' version '2.0.0-1.0.21' apply false | ||
} | ||
|
||
apply plugin: 'com.android.application' | ||
|
||
apply plugin: 'kotlin-android' | ||
apply plugin: 'kotlin-kapt' | ||
apply plugin: 'kotlin-parcelize' | ||
apply plugin: 'checkstyle' | ||
apply plugin: 'pmd' | ||
|
@@ -262,10 +263,6 @@ android { | |
// Adds exported schema location as test app assets. | ||
androidTest.assets.srcDirs += files("$projectDir/schemas".toString()) | ||
} | ||
|
||
composeOptions { | ||
kotlinCompilerExtensionVersion = "1.5.12" | ||
} | ||
} | ||
|
||
dependencies { | ||
|
@@ -276,7 +273,7 @@ dependencies { | |
} | ||
|
||
// Jetpack Compose | ||
implementation(platform("androidx.compose:compose-bom:2024.04.01")) | ||
implementation(platform("androidx.compose:compose-bom:2024.05.00")) | ||
implementation("androidx.compose.ui:ui") | ||
implementation("androidx.compose.ui:ui-graphics") | ||
implementation("androidx.compose.material3:material3") | ||
|
@@ -292,19 +289,19 @@ dependencies { | |
implementation 'com.google.android.material:material:1.11.0' | ||
implementation 'com.jakewharton:disklrucache:2.0.2' | ||
implementation "androidx.appcompat:appcompat:$appCompatVersion" | ||
implementation 'androidx.webkit:webkit:1.10.0' | ||
implementation 'androidx.webkit:webkit:1.11.0' | ||
implementation 'androidx.cardview:cardview:1.0.0' | ||
implementation 'androidx.exifinterface:exifinterface:1.3.7' | ||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0" | ||
implementation "androidx.work:work-runtime:$workRuntime" | ||
implementation "androidx.work:work-runtime-ktx:$workRuntime" | ||
implementation "androidx.fragment:fragment-ktx:1.6.2" | ||
implementation "androidx.fragment:fragment-ktx:1.7.1" | ||
implementation 'com.github.albfernandez:juniversalchardet:2.0.3' // need this version for Android <7 | ||
compileOnly 'com.google.code.findbugs:annotations:3.0.1u2' | ||
implementation 'commons-io:commons-io:2.16.1' | ||
implementation 'org.greenrobot:eventbus:3.3.1' | ||
implementation 'com.googlecode.ez-vcard:ez-vcard:0.12.1' | ||
implementation 'org.lukhnos:nnio:0.3' | ||
implementation 'org.lukhnos:nnio:0.3.1' | ||
implementation 'org.bouncycastle:bcpkix-jdk18on:1.78.1' | ||
implementation 'com.google.code.gson:gson:2.10.1' | ||
implementation 'com.github.nextcloud-deps:sectioned-recyclerview:0.6.1' | ||
|
Binary file modified
BIN
-813 Bytes
(94%)
...y/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_noneSelected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.67 KB
(93%)
...gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion
2
app/src/androidTest/java/com/nextcloud/client/assistant/AssistantRepositoryTests.kt
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* Nextcloud - Android Client | ||
* | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH | ||
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only | ||
*/ | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/androidTest/java/com/nextcloud/extensions/BundleExtensionTests.kt
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* Nextcloud - Android Client | ||
* | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH | ||
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only | ||
*/ | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/androidTest/java/com/nextcloud/extensions/IntentExtensionTests.kt
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* Nextcloud - Android Client | ||
* | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH | ||
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only | ||
*/ | ||
|
2 changes: 1 addition & 1 deletion
2
app/src/androidTest/java/com/nextcloud/test/model/TestModels.kt
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* Nextcloud - Android Client | ||
* | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Alper Ozturk <[email protected]> | ||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH | ||
* SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only | ||
*/ | ||
|
Oops, something went wrong.