...
Advise for Implementation when using Android 3.0 and higher Versions
Note |
---|
Note: Starting from Android 3.0Since Android 3.0 network accesses are not allowed from the main thread anymore. Thus, the Spring.commit () method is achieved in a background thread. For this reason, please keep the initialization and usage of Spring lib in your main UI thread, Spring lib will not block your GUI display. Otherwise background thread conflicts might pop up. |
...
Please Note: If you are using ProGuard, our library could be compromised. Therefore it is necessary to add the following lines into the ProGuard configuration file:
# Keep spring files
-keep class de.spring.** { *; }
-keep class org.apache.** { *; }
# Keep spring files
-keep class de.spring.** { *; }
-keep class org.apache.** { *; }
...