| File | Date | Author | Commit |
|---|---|---|---|
| aappz | 2018-11-10 |
|
[0bac6a] Remove Unused Import on PrefZ |
| app | 2018-11-10 |
|
[6d48d2] Add PrefZ Test on Main Activity |
| docs | 2018-11-10 |
|
[05257c] Update index.md |
| gradle | 2018-11-04 |
|
[27f094] Add sample project |
| .gitignore | 2018-11-04 |
|
[27f094] Add sample project |
| LICENSE | 2018-11-04 |
|
[a2b50c] Initial commit |
| README.md | 2018-11-10 |
|
[ca484c] Update README.md |
| build.gradle | 2018-11-04 |
|
[27f094] Add sample project |
| gradle.properties | 2018-11-04 |
|
[27f094] Add sample project |
| gradlew | 2018-11-04 |
|
[27f094] Add sample project |
| gradlew.bat | 2018-11-04 |
|
[27f094] Add sample project |
| settings.gradle | 2018-11-04 |
|
[2ea6b7] Add aappz module |
AappZ library is an A-Z all in one library for android application.
AappZ library offers convenient tools for android application:
I suppose you already have jcenter() in your build.gradle. So, just add a dependency:
implementation 'io.github.fentonmartin:aappz:[$latest_version]'
If you use AppCompatActivity, just extend AappZ:
public class MainActivity extends AappZ {...}
And that's it, now you can call any function directly:
setToast("Hello world!");
If want to use FirebaseZ and GoogleAdsZ functions, just configure:
Firebase SDK: https://firebase.google.com/docs/android/setup
Don't forget permissions on AndroidManifest.xml:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
Copy FirebaseZ and GoogleAdsZ functions to your project:
- FirebaseZ
- GoogleAdsZ
If you only want to use basic functions without Google Service, just leave it. :)
ActionBarZ
DateZ
ExceptionZ
FirebaseZ
GoogleAdsZ
IntentZ
LogZ
PrefZ
TextZ
ToastZ
ViewZ
More information: AappZ's wiki
AappZ library by Fenton Martin is licensed under an Apache License 2.0.