Skip to content

Commit

Permalink
Android API Level lowered down to 26 (#5)
Browse files Browse the repository at this point in the history
* lowered the minSDK down to 26

* Update develop.yml workflow to directly include APK

* Update README.md

Android API Level limitation heads-up removed from README file
  • Loading branch information
unalkalkan authored Apr 30, 2024
1 parent e03bf1a commit d4f961b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
- name: Upload APK Debug - ${{ env.repository_name }}
uses: actions/upload-artifact@v3
with:
name: ${{ env.repository_name }} - Debug
path: ${{ env.main_project_module }}/build/outputs/apk/debug/
name: ${{ env.repository_name }} - Debug.apk
path: ${{ env.main_project_module }}/build/outputs/apk/debug/app-debug.apk
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ To get started with AnkiDroid Companion, follow these steps:


## Limitations & Improvements

- **Android API Level**: Only Android 13 and 14 is supported at the moment. Since this was a weekend project for me (who had no prior knowledge about the Android Ecosystem), I didn't had the opportunity to test the app below these API Levels. If you like to try out the lower APIs and see if they work, give it a try!


- **Minimalistic Card Support**: Currently this app only supports simple cards with small texts that doesn't include any HTML. If your case involves complex scenarios, you can try to implement them or create an issue for someone with more time to pick up.

- **Skipping Cards**: Skipping cards was not something that came to my mind just until now, we need to came up with a way to do this since when a skip is needed its going to be a pain with the current setup.
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {

defaultConfig {
applicationId = "com.ankidroid.companion"
minSdk = 33
minSdk = 26
targetSdk = 34
versionCode = 1
versionName = "1.0"
Expand Down

0 comments on commit d4f961b

Please sign in to comment.