pwittchen / prefser

Wrapper for Android SharedPreferences with object serialization and RxJava Observables
Apache License 2.0
229 stars 26 forks source link

Make min sdk version required to 8 #10

Closed shivamsingh closed 9 years ago

pwittchen commented 9 years ago

I'll check if it's possible to set min sdk to 8 and eventually update it to make Prefser accessible on older devices. Nevertheless, min sdk = 15 is recommended for new apps and this library has even older version - min sdk = 11.

pwittchen commented 9 years ago

Changing min sdk version to 8 is not possible, because library uses apply() method from SharedPreferences for saving data, which is available from sdk 9. I'll change min sdk to 9 (Android 2.3). It's the lowest API, which Prefser can use.

pwittchen commented 9 years ago

Min sdk = 9 will be available in version 1.0.2 of the library.