Skip to content

crashfiredeep/lib-aeapps

 
 

Repository files navigation

libAeApps (Indian Plum)

Build Status Download Release GitHub commits Issues

This Android library project contains some reusable code that can be used across projects. Depending on the features you use, make sure to declare the permissions in your manifest.xml file. Whenever I come across any piece of code that seems reusable, it will be moved to this library project.

Library Name

The library name represents Artistik Expressionz since all my apps follow the package structure "com.ae.apps.[appname]". It is short and all my design works come under same name.

The library codenames are based on fruits, mostly berries. The latest release code name is Indian Plum.

Indian Plum: This flowering shrub or small tree is native to the Pacific Northwest, west of the Cascade Mountains. The reddish fruit are non-toxic and loved by birds.

Contents

The following components are available as part of this library as of now.

  • Activities
    • Base Activity for Donations (Google Play In-App Billing v3)
    • Base Activity for ToolbarActivity
    • Base Activity for Multiple Contact Picker
  • Fragments
    • Contact Picker
    • Permission Checker Base Fragment that checks for Runtime permissions
  • Database
    • DataBaseHelper
    • CopiedDataBaseHelper for using a database file from app's assets folder
  • Managers
    • Contact Manager for accessing Android's Contacts API
    • SMS Manager for accessing Android's SMS API
  • Utilities and Custom Components
    • SimpleGraphView draws a pie chart
    • RoundedImageView shows an image inside a Circle
    • Mock Contact Data
    • EmptyRecyclerView provides a way to specify an empty layout

Implementations

Presently the following android app projects make use of this library.

Changelog

To see the history of changes, see Changelog

Using the library

1. Use library from JCenter

repositories {
  maven { 
    url  "http://dl.bintray.com/midhunhk/android-libraries"     
  }    
}    
dependencies {  
  implementation 'com.ae.apps:android-libraries:3.0.2'
}

2. Use library from JitPack

Add below code to root gradle.build file

allprojects {  
  repositories {
    maven { url 'https://jitpack.io' }  
  }  
}

Add Dependency

dependencies {  
  implementation 'com.github.midhunhk:ae-apps-library:V3.0.2'  
}  

License

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.

About

A Library project for android applications

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%