Popularity
0.6
Stable
Activity
0.0
Stable
5
2
1

Programming language: Kotlin
License: Apache License 2.0

MukkiaSevaigal alternatives and similar packages

Based on the "Toast Widget" category.
Alternatively, view MukkiaSevaigal alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of MukkiaSevaigal or a related project?

Add another 'Toast Widget' Package

README

MukkiaSevaigal

Android Utility library for commonly used functions

Features:

You can easily:

  • Toast Messages
  • Log
  • Show SnackBar
  • Save to Preferences
  • Retrieve saved value from Preferences
  • and many more utility functions.

Requirements:

This library works form API-14

Getting Started :

To use this library simply import it by placing the following line under dependencies in your app module's build.gradle file

This library is hosted in jCenter

dependencies {
   implementation 'yogesh.firzen:MukkiyaSevaigal:3.0.3'
}

If any problem occured while importing please add this line to your app module's build.gradle file

   repositories {
      maven {url "https://dl.bintray.com/firzenyogesh/maven"}
   }

Usage:

  • For Toasts:
    • M.T(context,"Hello World");
  • For Logs:
    • M.L("TAG","Hello World!");
  • For SnackBar:
    • M.S(activityView,"Hello World");
  • To save a value in Preferences:
    • P.save(context,"key",value);
  • To retreive value from Preferences:
    • P.getInt(context,"key");
    • P.getString(context,"key");
    • P.getFloat(context,"key");
    • P.getBoolean(context,"key");
    • and more

Authors

License

Copyright 2016 Yogesh Sundaresan

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 MukkiaSevaigal README section above are relevant to that project's source code only.