recreated todo list, lowered sdk level
This commit is contained in:
parent
35acd06d06
commit
9c960dd906
3 changed files with 25 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -8,4 +8,4 @@
|
||||||
.externalNativeBuild
|
.externalNativeBuild
|
||||||
.cxx
|
.cxx
|
||||||
local.properties
|
local.properties
|
||||||
TODO.md
|
|
||||||
|
|
23
TODO.md
Normal file
23
TODO.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# TODO
|
||||||
|
These are issues in Wiimmfi Watcher I am at least aware of. Please **DO NOT** submit a bug report on the Google Form or an issue here on GitHub if it is mentioned on this list, unless you found a way that the bug can crash the app.
|
||||||
|
|
||||||
|
## Completed For Next Release
|
||||||
|
* Lowered minimum SDK to 16 (Jelly Bean 4.1)
|
||||||
|
|
||||||
|
## Working On
|
||||||
|
* The last player in the list has the potential to hide behind the refresh button
|
||||||
|
|
||||||
|
## Aware Of
|
||||||
|
* Fix the repeating recent friend codes
|
||||||
|
* Recent friend codes do not scroll like they should
|
||||||
|
* Problem with ConstraintLayout probably, convert to a new Layout?
|
||||||
|
|
||||||
|
# Features I would like to add
|
||||||
|
* The watcher activity does not refresh automatically like the official website does
|
||||||
|
* Added a refresh button, but is there a better way with Jsoup? Like a new Thread?
|
||||||
|
* Create a better looking header for the watcher activity
|
||||||
|
* Add 'sections' I guess???
|
||||||
|
* Add the Mario Kart Wii font
|
||||||
|
* Add pictures for Nintendo and CTGP tracks
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ android {
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "me.brysonsteck.wiimmfiwatcher"
|
applicationId "me.brysonsteck.wiimmfiwatcher"
|
||||||
minSdkVersion 22
|
minSdkVersion 16
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode 1
|
versionCode 1
|
||||||
versionName "1.0"
|
versionName "1.0"
|
||||||
|
|
Reference in a new issue