0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 03:52:15 +02:00
Commit Graph

17736 Commits

Author SHA1 Message Date
lukstbit
7003e0b4d1 Configure dependencies resolution in settings.gradle.kts
Ideally we  would use
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) to enforce
 the repositories declared in settings.gradle.kts but it currently
conflicts with a local maven repository declared in
robolectricDownloader.gradle.

The repositories lambda wasn't deleted from the AnkiDroid module as
the build failed in relation to "com.android.tools:desugar_jdk_libs"(
most likely and issue with the dependency itself) with the error:

Could not resolve all dependencies for configuration ':AnkiDroid:coreLibraryDesugaring'.
The project declares repositories, effectively ignoring the repositories you have declared in the settings.
You can figure out how project repositories are declared by configuring your build to fail on project repositories.
See https://docs.gradle.org/8.1.1/userguide/declaring_repositories.html#sub:fail_build_on_project_repositories for details.
Could not find com.android.tools:desugar_jdk_libs:2.0.3.
Searched in the following locations:
  - file:/home/*/.m2/repository/com/android/tools/desugar_jdk_libs/2.0.3/desugar_jdk_libs-2.0.3.pom
    If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.
Required by:
    project :AnkiDroid
2023-08-31 20:52:04 -05:00
lukstbit
6b65c45386 Use plugins block to declare the plugins used
See https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block
The plugins that are to be used in different modules are added in the
top level build file with apply "false"(doesn't make sense to apply
them on the root project). Then the project modules, from the plugins
already available on the classpath, actually apply the ones they need.

Ktlint plugin was applied directly to all subprojects(initially it
was added through allprojects {} but it doesn't make sense to add it
to the root project as it doesn't contain source code, so
subprojects{} was used instead).

The amazonappstorepublisher plugin also required some custom
configuration as we need the latest versions which are not available
in mavenCentral() but can be fetched from jitpack.io.
2023-08-31 20:52:04 -05:00
lukstbit
529a19b4a0 Configure plugins resolution in settings.gradle
Change was done to improve plugin usage, see
https://docs.gradle.org/current/userguide/plugins.html#sec:plugin_management.

This PR also moves settings.gradle to kotlin dsl to use modern
practices in build configuration. See:
https://android-developers.googleblog.com/2023/04/kotlin-dsl-is-now-default-for-new-gradle-builds.html
2023-08-31 20:52:04 -05:00
Mike Hardy
91b7bf1d48
Dependency updates 20220831 (#14365)
* build(deps): bump kotlin_version from 1.9.0 to 1.9.10

Bumps `kotlin_version` from 1.9.0 to 1.9.10.

Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 1.9.0 to 1.9.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.10/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.0...v1.9.10)

Updates `org.jetbrains.kotlin:kotlin-stdlib` from 1.9.0 to 1.9.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.10/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.0...v1.9.10)

Updates `org.jetbrains.kotlin:kotlin-test` from 1.9.0 to 1.9.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.10/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.0...v1.9.10)

Updates `org.jetbrains.kotlin:kotlin-reflect` from 1.9.0 to 1.9.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.10/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.0...v1.9.10)

Updates `org.jetbrains.kotlin:kotlin-test-junit5` from 1.9.0 to 1.9.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.10/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.0...v1.9.10)

Updates `org.jetbrains.kotlin:kotlin-test-junit` from 1.9.0 to 1.9.10
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v1.9.10/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.0...v1.9.10)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin:kotlin-stdlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin:kotlin-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin:kotlin-reflect
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin:kotlin-test-junit5
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin:kotlin-test-junit
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump io.mockk:mockk from 1.13.5 to 1.13.7

Bumps [io.mockk:mockk](https://github.com/mockk/mockk) from 1.13.5 to 1.13.7.
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/1.13.5...1.13.7)

---
updated-dependencies:
- dependency-name: io.mockk:mockk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump com.github.ByteHamster:SearchPreference

Bumps com.github.ByteHamster:SearchPreference from v2.3.0 to 2.4.0.

---
updated-dependencies:
- dependency-name: com.github.ByteHamster:SearchPreference
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump org.mockito.kotlin:mockito-kotlin from 5.0.0 to 5.1.0

Bumps [org.mockito.kotlin:mockito-kotlin](https://github.com/mockito/mockito-kotlin) from 5.0.0 to 5.1.0.
- [Release notes](https://github.com/mockito/mockito-kotlin/releases)
- [Commits](https://github.com/mockito/mockito-kotlin/compare/5.0.0...5.1.0)

---
updated-dependencies:
- dependency-name: org.mockito.kotlin:mockito-kotlin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump lint_version from 31.1.0 to 31.1.1

Bumps `lint_version` from 31.1.0 to 31.1.1.

Updates `com.android.tools.lint:lint-api` from 31.1.0 to 31.1.1

Updates `com.android.tools.lint:lint` from 31.1.0 to 31.1.1

Updates `com.android.tools.lint:lint-tests` from 31.1.0 to 31.1.1

---
updated-dependencies:
- dependency-name: com.android.tools.lint:lint-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.android.tools.lint:lint
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.android.tools.lint:lint-tests
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update build.gradle

* build(deps): bump fragments_version from 1.6.0 to 1.6.1

Bumps `fragments_version` from 1.6.0 to 1.6.1.

Updates `androidx.fragment:fragment-ktx` from 1.6.0 to 1.6.1

Updates `androidx.fragment:fragment-testing-manifest` from 1.6.0 to 1.6.1

Updates `androidx.fragment:fragment-testing` from 1.6.0 to 1.6.1

---
updated-dependencies:
- dependency-name: androidx.fragment:fragment-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.fragment:fragment-testing-manifest
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.fragment:fragment-testing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump com.google.protobuf:protobuf-kotlin-lite

Bumps com.google.protobuf:protobuf-kotlin-lite from 3.24.1 to 3.24.2.

---
updated-dependencies:
- dependency-name: com.google.protobuf:protobuf-kotlin-lite
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump androidx.preference:preference-ktx from 1.2.0 to 1.2.1

Bumps androidx.preference:preference-ktx from 1.2.0 to 1.2.1.

---
updated-dependencies:
- dependency-name: androidx.preference:preference-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump org.jetbrains.kotlinx:kotlinx-serialization-json

Bumps [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) from 1.5.1 to 1.6.0.
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.5.1...v1.6.0)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump androidx.recyclerview:recyclerview from 1.3.0 to 1.3.1

Bumps androidx.recyclerview:recyclerview from 1.3.0 to 1.3.1.

---
updated-dependencies:
- dependency-name: androidx.recyclerview:recyclerview
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-31 12:30:20 -05:00
AnkiDroid Translations
4061327d47 Updated strings from Crowdin 2023-08-31 10:16:46 -05:00
Prince
5dfec7da4c Changed Material Dialog with Alert Dialog for CardBrowserMySearchesDialog.kt 2023-08-31 08:08:16 -03:00
Damien Elmes
7a65160e0e
Drop legacy schema, and update to 2.1.66 backend (#14171)
* Update target API to 23

* Update to 2.1.66, and switch to new schema by default

+ Temporarily disable unused resource warnings

* Drop legacy syncing code

* Drop legacy import/export code

* Drop legacy tag handling

* Drop legacy config handling

* Drop legacy database check

* Stub out unused v1 scheduler code

Can't be fully removed, as we still need to be able to open a v1 collection
so the user can upgrade.

moveVersions test has been removed, as backend code is used for moving
outside of unit tests.

* Drop legacy deck handling

* Drop legacy search code

* Drop legacy notetype code

This breaks the card template editor, so I've temporarily disabled it
in the GUI. Getting it working again will require switching to the new
template rendering code in the new backend.

Also breaks an "empty cards" action in CardContentProvider,
as I was not sure what it was trying to accomplish.

* Drop legacy media code

This removes oakkitten's custom media checking code, as keeping it
would require keeping a bunch of the duplicated Kotlin logic. His comment
about cancellation is incorrect: the call can be cancelled with backend.
setWantsAbort() on a background thread. And since the app enforces filenames
are normalized when they're added anyway, I don't think avoiding automatic
normalization is worth the duplicated code.

* Drop legacy Collection/DB code

* Drop most references to defaultLegacySchema

* Remove legacy schema tests from CI

CI won't work yet, because backend version needs updating

* Fix import CSV call

* Remove some unused symbols from anki module

* Drop majority of old stats code

* Remove unused symbols from libanki

* Remove some broken Android tests, and fix one

checkIfStudyOptionsIsDisplayedOnTablet() is also consistently failing,
but was doing so before I started on these changes.

* Move config methods into col.config

* Simplify config API

- Use kotlinx.serialization so that arbitrary typed objects can be
(de)serialized
- There is a single generic get(), that always returns an optional
value, which will be null if the key is missing, is null, or is not the
correct type. There will always be collections that have invalid data,
so the calling code always needs to be prepared to substitute a reasonable
default in such cases.
- Expose the typed getBool() method from the backend.

* Remove unused legacy importer

* Drop jackson

* Models -> Notetypes

* Remove some more unused symbols

* Remove generic type aliases

* Rename Model -> Notetype

I had to leave ModelTest.kt's filename alone, as changing it to Notetype.kt
reorders the unit tests, and causes about 4 tests to start flaking.

* Get card template editor preview working again

* Enable undo on edits; fix test hang

* Use backend for bulk suspend/undo

By default, undoableOp() notifies all screens listening for opExecuted,
so the refreshing happens automatically, and the manual refresh code
at the end of the old routine is no longer required. It is possible to
bypass this when you want to manually update the UI, but this is probably
not worth attempting until the card browser is either switched over to
a recycler view, or reimplemented as a web component.

The LongArrays have been switched to simple lists, as Google's protobuf
code expects Iterable<Long>

* Use backend for marking/undo, and change deck/undo

* Migrate reviewer actions/undo to backend

* Migrate remainder of undo code to backend, apart from v2 undo

Couple of notes:

- The legacy v2 undo no longer returns the undone card, and instead
rebuilds the queue. In some circumstances (eg a learning card has become
due), this can result in a different card being shown after undoing.
This is not ideal, but v2 does not have long to live at this point.
- The reset/reposition tests were reusing the old card cache values,
which have to be reloaded after an operation.
- A test in AbstractSched had to be moved to ReviewerTest so it can have
access to an activity.
- UndoTest has been removed, as it mainly focused on removed code.

* GetCard() -> getNextCardAndRedraw()

* render_output -> renderOutput()

* Drop AsyncTask

Probably the hardest part of AnkiDroid's code base to follow; very
glad to see the end of it.

Closes #7108

* Make note addition undoable

* Make bulk tag update undoable

* Remove remaining explicit transaction handling

The backend automatically wraps backend actions in a transaction,
and removing the explicit calls will allow us to drop the redundant
mutex that rsdroid acquires.

* Remove remaining unused classes/methods/properties

* Remove FunctionalInterfaces

* Switch to backend answer comparison

* Remove unused locking code + legacy storage code

* Switch ContentProviderTest to new schema, and fix bug

* Remove legacy Deck Options settings

* fix: remove minSdkVersion < 23 code

* Use short time in snackbars

People complained about snackbars interrupting their reviews before

* fix: don't duplicate undo label

It were showing a message like `Undo Undo Add Note`

* Remove "Advanced statistics"

* Remove legacy_schema local property

* Leave zip validation up to the backend

The backend takes care of validating the zip file and ensuring files aren't
written outside of the media folder.

I've expanded the mime match to include the zip mime, on the assumption
that's what the mime type is being changed to on some devices. If that
proves to be insufficient, a much simpler approach would be to look
for 50 4B 03 04 at the start of the file to determine if it's a zip file
or not.

This leaves only Mani's add-on code using commons-compression, so you
could potentially switch to a simpler tgz-specific library in the future
if that is easier.

* Disable two flaky tests

They started to flaky reliably after the legacy deck options test
was removed.

* Improve logging of HTTP requests

* Remove ModelBrowser

Replaced by ManageNotetypes

* Remove legacy CardInfo

replaced by com.ichi2.anki.pages.CardInfo

* Change comments at AdvancedSettingsFragment

* test: check if prefs analytics list don't have extra elements

* ContextCompat.getColor -> getColor

that compat method is for implementations in API < 23

* Remove more unused files

* refactor: move SECONDS_PER_DAY to a separate util file

in order to be able to remove Stats.kt later

* refactor: remove Stats and OverviewStatsBuilder

* Access sched.card directly in tests

The helper was adding a 500ms sleep on every fetch, which slowed the
scheduler tests down considerably.

* Make v3 scheduler the default; drop support for v2

The v3 scheduler was originally released in 2021, and we've been waiting
for a stable AnkiDroid release to support it before we could switch users
over to it. Now that 2.16 is out, we can finally push v3 out across the
ecosystem.

While we could theoretically make v3 the default without removing v2,
here are the reasons why I think we're better off switching to v3 only:

- AnkiWeb's review interface will likely switch over to v3-only in the
coming weeks, and AnkiMobile will likely drop v2 around the same time
2.17 comes out.
- v2 and v3 differ in a few ways that makes maintaining the two separate
paths more complicated: things like the different undo paths, counts not
including the current card, and the way the v3 scheduler supports custom
scheduler js. 2.17 is a chance to clean up a lot of old cruft in the
code base, and the old scheduling code is part of that.
- v2 and v3 are compatible with each other, and don't require a full sync
to change, so it doesn't break syncing with old clients (though depending
on settings, due counts may differ, which needs explanation)

I had to disable a couple of tests for this that we'll probably want
to restore in some form:

- corruptVersion16CollectionShowsDatabaseError() needs an update, and
it may be time to rip out the old CollectionHelper colIsOpen(), getColSafe()
and so on, migrating code that uses it over to withCol() instead. The
'collection inaccessible' dialog also needs a rethink - perhaps the various
exceptions could be handled in launchCatchingTask instead.
- testUndoResetsCardCountsToCorrectValue() is failing because initLayout()
creates a gesture listener, which fails with an error about the looper
not being initialized. I am not sure what's going on there - one option
would be to move the test to androidTest.

* Drop v2 sched file; rename files

* Drop AbstractSched and legacy undo code/queue code

* Migrate BaseSched into Scheduler

* More unused symbol removal

* Remove DeckTreeNode

* Remove unused processChildren()

* Remove shouldDisplayCounts(), as counts always available

* Remove manual hashCode()/compareTo() implementations

* Drop AbstractDeckTreeNode

* Turn DeckNode into a wrapper for DeckTreeNode

* Drop TreeNode and simplify filtering

* Remove `New card position` global preference

Overridden by per-deck configuration

Closes #12319

* fix: remove chess.css from card_template_html

* Store current queue state in reviewer

Prerequisite for solving #12620

Also dropped answerButtons(), as it's always 4

* Use local HTTP server for serving flashcard content

Prerequisite for solving #12620

* Implement support for custom JS scheduling

Enables FSRS and closes #12620

* Remove more unused code

* Remove separate Deck(Config)V16 objects and more unused code

* Move some NotetypeJson methods into its file

* Finish tidying Decks.kt

* Drop redundant col property on Collection

* Remove some usages of CollectionGetter

* Rename col->getColUnsafe to encourage migration

* Remove Reviewer.sched

* Handle deck tree not initialized in empty collection

* refactor: move syncStatus() to Collection

to avoid direct calls to the backend

* fix: do not show error when updating the menu if there is no internet

Reproduction steps:
1. have the collection synced
2. disable the device internet connection
3. Restart the app

* Remove unused resources and re-enable lint

* Restore sync cancel strings

* Defer loading webpage until server has initialized

* Ignore translations without a base entry

https://github.com/ankidroid/Anki-Android/pull/14171#issuecomment-1660286342

* Remove the SortOrder deprecation

* Remove the apparently-unused Backup.kt

* Remove last remaining use of Collection's context field

* Stop passing Context to backend

The library loading is now AnkiDroid's responsibility, so the backend
does not require access to an Android context.

Also remove the unused context field from Collection.

* Use backend for rendering next time labels

* Use backend for rendering finished message

The custom study & unbury descriptions are slightly different, but
should suffice until AnkiDroid can start using the Svelte finished
screen.

* Run SchedulerTest without Robolectric

Halves the run time. To do this, I implemented a new JvmTest class
and copied some of the helpers in RobolectricTest into it.

* Remove unused Kotlin implementation of template parsing

* Move Util code dealing with resources out of libanki

* Migrate remaining libanki tests to raw JVM

+ Remove some commented-out tests

Total savings are a drop from about 3m40s to 2m40s, with the scheduler
test class dropping its runtime by about half.

* Lazy-initialize col in tests

* Restore 'experimental' string

* Add comments to update-localizations.py

* Restore AcraAnalyticsInteraction.kt

---------

Co-authored-by: Brayan Oliveira <69634269+brayandso@users.noreply.github.com>
2023-08-31 05:44:03 +08:00
AnkiDroid Translations
4d39b5b9dd Updated strings from Crowdin 2023-08-31 05:41:45 +08:00
naong
f2e4d153f6
Add digital eraser support in the Whiteboard (#14315)
* Add digital eraser support in the Whiteboard.
* modified to make it easier to understand
* change priority for erase

---------

Co-authored-by: root <root@root.com>
2023-08-28 15:57:53 -05:00
Mike Hardy
e817d891c7 Bumped version to 2.17alpha1 2023-08-27 16:14:27 +00:00
Mike Hardy
3eab0fe6f6 release: set ourselves up for 2.17alpha releases 2023-08-27 10:29:11 -05:00
Mike Hardy
0175604399 release: bump version to 2.16.4 2023-08-27 10:20:21 -05:00
AnkiDroid Translations
84ff0fa6d7 Updated strings from Crowdin 2023-08-27 10:13:42 -05:00
David Allison
c779ef333e dev: add git commit hash to debug info
Output:
AnkiDroid Version = 2.16.3-debug (edf739d95bad7b370a6ed4398d46723f8219b3cd)

While I have a development build on my Android emulator, sometimes
I encounter a bug, this makes the build much more visible to help
with diagnostics
2023-08-27 09:07:12 -05:00
David Allison
31d9240455 tests: mark flaky test
Multiple failures on Windows

Issue 14308
2023-08-27 10:27:11 +03:00
David Allison
ad5b20b008 fix: 'rebuild' did not update the deck UI
Issue 14285
2023-08-27 07:50:23 +03:00
David Allison
62847597fe chore: [DeckPicker] logs
To help diagnose issue 14285 (Rebuild didn't update UI)
2023-08-27 07:50:23 +03:00
Vibhu Pandey
4e248f442d
Fix typo errors in card.js / add user spelling dictionary (#14305) 2023-08-26 10:33:13 -05:00
David Allison
09a5302a44 chore: exclude non-'values' translation files
Example: 'values-af'

* This removes them from the search/index
* This marks them in the IDE in a different color,
  making it less likely a new user will modify them
  * Files also now contain IDE errors

We go against JetBrains advice as we want these files in Gradle:

> Items you may want to exclude from sharing:
>
> .iml files and .idea/modules.xml file for the Gradle or Maven based
> projects since these files will be generated on import

https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems

Tested and languages are still switchable

I did test `Editor > File Types > Ignored files and folders`
This removes the files from the IDE completely
but I could not find a way to share this with other team members
2023-08-26 09:42:03 -05:00
Mike Hardy
d7082677bd
Dependency updates 20230826 (#14306)
* Bump kotlin_version from 1.8.22 to 1.9.0 (#14103)

* Bump kotlin_version from 1.8.22 to 1.9.0

Bumps `kotlin_version` from 1.8.22 to 1.9.0.

Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` from 1.8.22 to 1.9.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.8.22...v1.9.0)

Updates `org.jetbrains.kotlin:kotlin-stdlib` from 1.8.22 to 1.9.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.8.22...v1.9.0)

Updates `org.jetbrains.kotlin:kotlin-test` from 1.8.22 to 1.9.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.8.22...v1.9.0)

Updates `org.jetbrains.kotlin:kotlin-reflect` from 1.8.22 to 1.9.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.8.22...v1.9.0)

Updates `org.jetbrains.kotlin:kotlin-test-junit5` from 1.8.22 to 1.9.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.8.22...v1.9.0)

Updates `org.jetbrains.kotlin:kotlin-test-junit` from 1.8.22 to 1.9.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.8.22...v1.9.0)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin:kotlin-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlin:kotlin-stdlib
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlin:kotlin-test
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlin:kotlin-reflect
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlin:kotlin-test-junit5
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlin:kotlin-test-junit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Use proper imports to fix lint issues when using kotlin 1.9.0

The java.util.* import was removed/replaced by specific calls to avoid
defaulting some calls(like Arrays.forEach) to java methods which will
only be available from API 24 and above.

The org.junit.Assert.* generic imports were replaced with imports from
kotlin.test.* as lint suggested.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: lukstbit <52494258+lukstbit@users.noreply.github.com>

* Bump junit_version from 5.9.3 to 5.10.0

Bumps `junit_version` from 5.9.3 to 5.10.0.

Updates `org.junit.jupiter:junit-jupiter` from 5.9.3 to 5.10.0
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/compare/r5.9.3...r5.10.0)

Updates `org.junit.vintage:junit-vintage-engine` from 5.9.3 to 5.10.0
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/compare/r5.9.3...r5.10.0)

Updates `org.junit.jupiter:junit-jupiter-params` from 5.9.3 to 5.10.0
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/compare/r5.9.3...r5.10.0)

---
updated-dependencies:
- dependency-name: org.junit.jupiter:junit-jupiter
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.junit.vintage:junit-vintage-engine
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.junit.jupiter:junit-jupiter-params
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump org.jlleitschuh.gradle:ktlint-gradle from 11.4.2 to 11.5.1

Bumps org.jlleitschuh.gradle:ktlint-gradle from 11.4.2 to 11.5.1.

---
updated-dependencies:
- dependency-name: org.jlleitschuh.gradle:ktlint-gradle
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): bump com.google.protobuf:protobuf-kotlin

Bumps com.google.protobuf:protobuf-kotlin from 3.23.3 to 3.24.1.

---
updated-dependencies:
- dependency-name: com.google.protobuf:protobuf-kotlin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump org.jetbrains.kotlinx:kotlinx-coroutines-test from 1.7.2 to 1.7.3

Bumps [org.jetbrains.kotlinx:kotlinx-coroutines-test](https://github.com/Kotlin/kotlinx.coroutines) from 1.7.2 to 1.7.3.
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.7.2...1.7.3)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump lint_version from 31.0.2 to 31.1.0 (#14156)

* Bump lint_version from 31.0.2 to 31.1.0

Bumps `lint_version` from 31.0.2 to 31.1.0.

Updates `com.android.tools.lint:lint-api` from 31.0.2 to 31.1.0

Updates `com.android.tools.lint:lint` from 31.0.2 to 31.1.0

Updates `com.android.tools.lint:lint-tests` from 31.0.2 to 31.1.0

---
updated-dependencies:
- dependency-name: com.android.tools.lint:lint-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: com.android.tools.lint:lint
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: com.android.tools.lint:lint-tests
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix imports for TestFiles in lint modules

The class was migrated to kotlin and became an object.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: lukstbit <52494258+lukstbit@users.noreply.github.com>

* Update Gradle Wrapper from 8.1.1 to 8.3.

Signed-off-by: gradle-update-robot <gradle-update-robot@regolo.cc>

* build(deps): bump acra_version from 5.10.1 to 5.11.1

Bumps `acra_version` from 5.10.1 to 5.11.1.

Updates `ch.acra:acra-http` from 5.10.1 to 5.11.1
- [Release notes](https://github.com/ACRA/acra/releases)
- [Commits](https://github.com/ACRA/acra/compare/acra-5.10.1...acra-5.11.1)

Updates `ch.acra:acra-dialog` from 5.10.1 to 5.11.1
- [Release notes](https://github.com/ACRA/acra/releases)
- [Commits](https://github.com/ACRA/acra/compare/acra-5.10.1...acra-5.11.1)

Updates `ch.acra:acra-toast` from 5.10.1 to 5.11.1
- [Release notes](https://github.com/ACRA/acra/releases)
- [Commits](https://github.com/ACRA/acra/compare/acra-5.10.1...acra-5.11.1)

Updates `ch.acra:acra-limiter` from 5.10.1 to 5.11.1
- [Release notes](https://github.com/ACRA/acra/releases)
- [Commits](https://github.com/ACRA/acra/compare/acra-5.10.1...acra-5.11.1)

---
updated-dependencies:
- dependency-name: ch.acra:acra-http
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: ch.acra:acra-dialog
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: ch.acra:acra-toast
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: ch.acra:acra-limiter
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump com.github.AppIntro:AppIntro from 6.2.0 to 6.3.1

Bumps [com.github.AppIntro:AppIntro](https://github.com/AppIntro/AppIntro) from 6.2.0 to 6.3.1.
- [Release notes](https://github.com/AppIntro/AppIntro/releases)
- [Changelog](https://github.com/AppIntro/AppIntro/blob/main/CHANGELOG.md)
- [Commits](https://github.com/AppIntro/AppIntro/compare/6.2.0...6.3.1)

---
updated-dependencies:
- dependency-name: com.github.AppIntro:AppIntro
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: gradle-update-robot <gradle-update-robot@regolo.cc>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: lukstbit <52494258+lukstbit@users.noreply.github.com>
Co-authored-by: gradle-update-robot <gradle-update-robot@regolo.cc>
2023-08-26 09:35:13 -05:00
AnkiDroid Translations
a3923184af Updated strings from Crowdin 2023-08-25 11:56:37 -05:00
David Allison
7153998992 fix: 'playsound' should replay the sound
This was changed in 8781 to add 'pause' functionality
But, this was not the default, the default was 'replay'

So, revert a subset of this change + inline the function

Reopens 6774
Fixes 14221
2023-08-25 11:55:43 -05:00
lukstbit
9e7809ac02 Use a dedicated download path when downloading a shared deck
This commit declares a new "external-files-path" in the paths declared
for FileProvider and changes the code related to shared decks to
accomodate the new path.

The previous code constructed the FileProvider by using getExternalFilesDir()
but we didn't have a "external-files-path" correspondent in
filepaths.xml so I think it reverted/defaulted to:

<external-path path="." name="photos" />

which may result in a NotFoundException.

See documentation related to FileProvider file paths:
https://developer.android.com/reference/androidx/core/content/FileProvider
2023-08-25 10:13:00 -05:00
taulpi
a54c63dc30
#13283 Resolve @NeedsTest Issues for flagToDisplay in Reviewer.kt (#14291)
* refactor: separate logic from dependencies by extracting easy to test class FlagToDisplay
* test: cover FLAG_NONE case
* test: Resolve @NeedsTest("is hidden if flag is on app bar")
* test: Resolve @NeedsTest("is not hidden if flag is not on app bar")
* test: Resolve @NeedsTest("is not hidden if flag is on app bar and fullscreen is enabled")
* test: Remove redundant test, as already covered by other tests
* refactor: simplify now tested logic
* test: remove @RunWith to fix Roboelectric Exception
* refactor: add more meaning to field by renaming to actualFlag
* refactor: revert accidental auto formatting
* refactor: add own copyright

---------

Co-authored-by: Paul Tietz <pati@aprixon.de>
2023-08-25 09:33:34 -05:00
David Allison
7e28aa18a0 fix: on Android 13 don't request EXTERNAL_STORAGE
We requested: [`WRITE_EXTERNAL_STORAGE`, `READ_EXTERNAL_STORAGE`]
due to a bug in Android where `WRITE_EXTERNAL_STORAGE` could be
  granted without `READ_EXTERNAL_STORAGE`.

This meant that a user could not access the /AnkiDroid folder
(but it did work from the WebView). This blocked 'Check Media'
and 'Media Sync'.

Re-requesting `READ_EXTERNAL_STORAGE` fixed the permission issue.

Now that we are on `targetSdkVersion 33`, this bug can no longer be
reproduced on Android 13. [See discussion]

As Android 13 also replaces `READ_EXTERNAL_STORAGE` with:
[`READ_MEDIA_IMAGES`, `READ_MEDIA_VIDEO`, `READ_MEDIA_AUDIO`],
these permissions no longer relate, and it makes sense to stop
applying this workaround in case it's still relevant
(as the permissions no longer match the intent)

So: no longer check for these permissions on Android 13

Original bug: 10892

Fixes 14120
Discussion: 14259
2023-08-25 09:19:04 -05:00
Mike Hardy
58075e56b1 build: bump to API33 2023-08-25 09:19:04 -05:00
Mike Hardy
9a437326d0 build: use API32 for robolectric until upstream API33 issue resolved
See: https://github.com/robolectric/robolectric/issues/8215

Remove this file when resolved
2023-08-25 09:19:04 -05:00
David Allison
9f6b1a2e4f fix: restore scroll position after editing card
Previously the scroll position was not reset if the following was true:
`mSearchView == null || mSearchView!!.isIconified`

**Testing**
I was unable to easily test this via unit tests
I had exceeded my timebox, and would use Espresso to add a regression test here
if I had more time

Tested on Google Pixel 3a API 33 emulator

Fixes 14220
2023-08-25 08:39:59 -05:00
David Allison
9902146c6e chore: improve 'restore scroll' logs 2023-08-25 08:39:59 -05:00
David Allison
a92bc3c8c9 fix: requesting no permissions succeeds
Requesting no permissions returned an empty set of results

This was equivalent to an edge case: closing the permission dialog
also returned an empty set of results

So it was treated as a failure

To fix this: add a differentiating flag: `requestedPermissions`
2023-08-25 08:33:53 -05:00
David Allison
4f8f2012a9 refactor: remove unused code
`allGranted` was unused
2023-08-25 08:33:53 -05:00
AnkiDroid Translations
294af97c94 Updated strings from Crowdin 2023-08-25 13:07:10 +03:00
Robozinho
888cd843bb
remove scroll setting (#14284)
* remove scroll setting

* remove scroll setting value
2023-08-25 12:08:57 +03:00
AnkiDroid Translations
5331173bf6 Updated strings from Crowdin 2023-08-25 11:21:01 +03:00
Ashish Yadav
76157cf433
shortcut icons updated to be consistent with the UI (#14268)
* shortcut icons updated to be consistent with the UI

* shortcut icons updated to be consistent with the UI
2023-08-21 10:38:56 +03:00
lukstbit
254516fda6 Use FragmentLifecycleCallbacks to log fragments lifecycles 2023-08-19 11:05:39 -03:00
David Allison
8c2a66eca9 build: update targetSdkVersion to 32
Android 12L (API level 32) is a minor release that makes Android 12 even better on large screens.

There are no breaking changes. Since we have removed support for TVs, this is primarily relevant for
foldable phones and Chromebooks

Since Google has imposed a hard deadline in a couple of weeks, only tested on:
* Large Desktop API 32

Changes: https://developer.android.com/about/versions/12/12L/summary

Issue 14129
2023-08-18 15:05:57 -05:00
Brayan Oliveira
91c173c3f8 Remove DuplicateTextInPreferencesXml lint
Preferences layout previews work well now in Android Studio, so the dev can easily check their changes.

This way, the lint can be removed in order to increase performance
2023-08-18 20:56:30 +01:00
Mike Hardy
43094e4937 Bumped version to 2.16.3 2023-08-18 17:47:38 +00:00
Mike Hardy
e7195bb49b release: version bump for 2.16.3 release 2023-08-18 12:42:36 -05:00
Sanjaykumar Sargam
8c00aa836b Highlight Correct Deck in Tablet 2023-08-18 10:18:05 -05:00
Brayan Oliveira
cf5624de18 fix: remove camera permission
if only the image taken by the camera app is necessary, there is no need for the permission
2023-08-18 10:12:39 -05:00
Brayan Oliveira
46d08749a9 fix: crash at advanced settings
set the change listener only after the value is configured
2023-08-18 09:44:03 -05:00
David Allison
7aa21becff refactor: fix name: 'onKeyUp' -> 'Down'
In e439280bf3 we performed a rename, this was missed
2023-08-18 09:34:01 -05:00
David Allison
adfecae862 fix: 'double tap' when answering using keyboard
We moved to onKeyDown in e439280bf3
but the 'space' handling logic was in onKeyUp and therefore was still
executed

So move all handling to `onKeyDown`, as the processor handled the action,
super.onKeyDown would not be called

Fixes Issue 14214
2023-08-18 09:34:01 -05:00
David Allison
e1691e9f08 test: document 'keyboard double tap' issue
Documents the issue of a 'double tap' when the card is answered
via adding a failing test

Issue 14214
2023-08-18 09:34:01 -05:00
David Allison
9c3f1e3111 fix: unexpected reviewer highlights with keyboard
* The Reviewer window was fully highlighted if using the keyboard to
answer a card using 'space'

We use `android:colorControlHighlight` to remove this

Briefly tested and I saw no UI regressions, but this is high
risk for UI regressions

Also tested in dark mode

Fixes 14142
2023-08-18 09:31:05 -05:00
David Allison
3c7bfedd55 ci: 'Update Gradle Wrapper': manual execution
For testing, I wanted to trigger this action, and couldn't
2023-08-18 09:28:50 -05:00
David Allison
2a09b5e369 fix: use supported JDK with Update Gradle Wrapper
* e2bec74646 enforced JDK 17/18
* update-gradle-wrapper.yml wasn't updated to handle this
  * use JDK 17 (temurin)

Fixes 14232
2023-08-18 09:28:50 -05:00
David Allison
477597bfcd fix: 'Sync required' indicator doesn't go away
* Cased by bug in `removeBadge`

Fixes 14225
2023-08-18 09:26:16 -05:00