yourealwaysbe / forkyz

Forkyz Crosswords
GNU General Public License v3.0
39 stars 5 forks source link

[Bug] minSDKVersion #11

Closed mooomooo closed 4 years ago

mooomooo commented 4 years ago

setAutoSizeTextTypeUniformWithConfiguration (in NotesActivity and PlayActivity) was only added in API 26, so you'd need to add guards around it to prevent errors when running this on lower APIs. Alternately, you'd need to adjust android:minSdkVersion accordingly in AndroidManifest.xml, which would prevent this app from even installing on anyone with a lower API.

See commits: 3ab5a51, 5723335

matthewhague commented 4 years ago

Thanks -- hopefully fixed it.