Favor alternatives and similar packages
Based on the "Code Generation" category.
Alternatively, view Favor alternatives based on common mentions on social networks and blogs.
-
Keploy
Shadow Test generation for Developers. Generate tests and stubs for your application that actually work! -
Barber
DISCONTINUED. A custom view styling library for Android that generates the obtainStyledAttributes() and TypedArray boilerplate code for you. -
RoboCoP
Pure Java code generation tool for generating a fully functional ContentProvider for Android. -
1. AutoProxy
Annotation Processing Library. Generates proxy class on top of interface/abstract class, that allows to intercept calls. Also known as a design pattern: proxy, delegate, interceptor. -
Anakin
Codegeneration tool for isomorphic server and mobile Go apps with gRPC & Protobuf. Share code between your backend, Android & iOS app! :sun_with_face:
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Favor or a related project?
README
Favor
A easy way of using Android SharedPreferences.
How to use this library
- Using Gradle
compile 'com.cocosw:favor:0.2.0@aar'
- Using Maven
<dependency>
<groupId>com.cocosw</groupId>
<artifactId>favor</artifactId>
<version>0.2.0</version>
<type>apklib</type>
</dependency>
API
1 Define a interface.
@AllFavor
public interface Account {
@Default("No Name")
String getUserName();
String setPassword(String password);
}
2 The FavorAdapter class generates an implementation of the interface.
account = new FavorAdapter.Builder(getContext()).build().create(Account.class);
account.setPassword("Passw0rd");
String username = account.getUserName();
API Declaration
@AllFavor
@AllFavor
public interface Account {
@Default("No Name")
String getUserName();
String getPassword();
}
@Favor
@Favor("city")
@Default("Sydney")
String city();
equals
PreferenceManager.getDefaultSharedPreferences(context).getString("city","Sydney");
And you can simplify it, Favor will extract the key from the method name
@Favor
@Default("Sydney")
String city();
@Default
@Default("18")
int age();
@Default("true")
boolean alive();
@Commit
By default, Favor will call editor.apply() (>api9), but you can force it to use editor.commit() by @Commit
@Favor
@Commit
void setAddress(String address);
RxPreference
You are a RxJava fan, easy! (rx-preferences dependency is required)
@Favor
@Default("No Name")
Preference<String> name();
Advanced usage
Favor support put/get all primitive types, including int/long/float/String/bool, String set is also supported for API>=11. From 0.2.0, Favor (Experimentally) supports Serializable object saving/loading.
public class Image implements Serializable {
....
}
@Favor
Image image();
@Favor
void setImage(Image image);
There is one limitation that you can't set default value for Serializable preference item.
Proguard
# Favor
-dontwarn com.cocosw.favor.** { *; }
-keep class com.cocosw.favor.** { *; }
Contribute
- Feel free to send your pull request to me.
License
Copyright 2011, 2015 Kai Liao
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the Favor README section above
are relevant to that project's source code only.